reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/VFABIDemangling.cpp
  363     if (!MangledName.consume_back(")"))
lib/Passes/PassBuilder.cpp
 1386   if (!Name.consume_front("repeat<") || !Name.consume_back(">"))
 1395   if (!Name.consume_front("devirt<") || !Name.consume_back(">"))
 1441   if (!Params.consume_front("<") || !Params.consume_back(">")) {
lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
 1178   if (Identifier.consume_back("@plt")) {
 1233   if (Identifier.consume_back("@plt"))
tools/clang/lib/Driver/ToolChains/Gnu.cpp
 2468             ConfLine.consume_back("\"");
tools/clang/lib/Frontend/CompilerInvocation.cpp
 1957     bool Preprocessed = XValue.consume_back("-cpp-output");
 1958     bool ModuleMap = XValue.consume_back("-module-map");
 1960         !Preprocessed && !ModuleMap && XValue.consume_back("-header");
tools/clang/lib/Lex/HeaderSearch.cpp
  224   if (!Module && SearchName.consume_back("_Private"))
  226   if (!Module && SearchName.consume_back("Private"))
tools/clang/lib/Sema/SemaCodeComplete.cpp
 8704             NativeRelDir.empty() && !Filename.consume_back(".framework"))
tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
  260   Name.consume_back(".exe");
tools/clang/tools/extra/clang-tidy/modernize/UseUncaughtExceptionsCheck.cpp
   82     Text.consume_back("()");
tools/clang/tools/extra/clangd/CodeComplete.cpp
 1721   while (Rest.consume_back("::") && !Rest.endswith(":")) // reject ::::
tools/clang/tools/extra/clangd/Diagnostics.cpp
  427           if (Rest.consume_back("]") && Rest.consume_back(Diag.Name) &&
  427           if (Rest.consume_back("]") && Rest.consume_back(Diag.Name) &&
  428               Rest.consume_back(" ["))
tools/clang/tools/extra/clangd/FindSymbols.cpp
  101     ScopeRef.consume_back("::");
tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  137   AttrName.consume_back("__");
tools/gold/gold-plugin.cpp
  686   if (Path.consume_back(OldSuffix))
tools/lld/COFF/InputFiles.cpp
  957   if (path.consume_back(suffix))
tools/lld/ELF/InputFiles.cpp
 1562   if (path.consume_back(suffix))
tools/lld/ELF/ScriptParser.cpp
  413   if (s.consume_back("-freebsd"))
tools/lldb/source/Host/linux/Host.cpp
  182   PathRef.consume_back(" (deleted)");
tools/lldb/source/Interpreter/OptionValueDictionary.cpp
  241   if (!key.consume_back(quote_char) || key.empty()) {
tools/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
   43     posix_dir.consume_back("/experimental");
   50     posix_dir.consume_back("/bits");
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
 1378     version_part.consume_back(".sdk");
tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  384   if (!lhs.consume_back(":"))
tools/lldb/source/Utility/RegisterValue.cpp
  303   vector_str.consume_back("}");
tools/llvm-objcopy/CopyConfig.cpp
  242   bool IsFreeBSD = TargetName.consume_back("-freebsd");
tools/llvm-rc/ResourceFileWriter.cpp
  106   bool StripSuccess = Str.consume_front("\"") && Str.consume_back("\"");
unittests/ADT/StringRefTest.cpp
  402   EXPECT_TRUE(Str.consume_back(""));
  404   EXPECT_TRUE(Str.consume_back("lo"));
  406   EXPECT_FALSE(Str.consume_back("helhel"));
  408   EXPECT_FALSE(Str.consume_back("hle"));
  410   EXPECT_TRUE(Str.consume_back("hel"));
  412   EXPECT_FALSE(Str.consume_back("h"));
  413   EXPECT_TRUE(Str.consume_back(""));