|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/ADT/Twine.h 425 Twine concat(const Twine &Suffix) const;
References
include/llvm/ADT/Twine.h 518 return LHS.concat(RHS);
lib/CodeGen/AsmPrinter/WinException.cpp 785 .concat(Twine(I))
786 .concat("$")
787 .concat(FuncLinkageName));
lib/MC/WinCOFFObjectWriter.cpp 454 Twine('/').concat(Twine(StringTableEntry)).toVector(Buffer);
tools/clang/lib/CodeGen/CGBuiltin.cpp 1440 .concat(FD->getType().getAsString())
1441 .concat(llvm::Twine(' '))
1442 .concat(FD->getNameAsString())
1443 .concat(" : ")
1469 Format.concat(llvm::Twine('\n')).str());
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp 2715 CGM.Int8PtrPtrTy, Twine(CGM.getMangledName(VD)).concat(Suffix));
2994 getOrCreateInternalVariable(VarLVType, Twine(Name).concat(Suffix));
3002 CGM.VoidPtrPtrTy, Twine(Name).concat(Suffix).concat(CacheSuffix))};
3002 CGM.VoidPtrPtrTy, Twine(Name).concat(Suffix).concat(CacheSuffix))};
4040 Twine(EntryName).concat(Name), llvm::GlobalValue::WeakAnyLinkage);
tools/clang/tools/extra/clang-tidy/readability/IsolateDeclarationCheck.cpp 239 .concat(Snippets[0].endswith(" ") ? "" : " ")
240 .concat(Snippets[I].ltrim())
241 .concat(";")
tools/llvm-exegesis/lib/BenchmarkRunner.cpp 56 Twine("invalid perf event '").concat(CounterName).concat("'"));
56 Twine("invalid perf event '").concat(CounterName).concat("'"));
tools/llvm-exegesis/lib/SnippetFile.cpp 157 .concat(Twine(Streamer.numInvalidComments()))
158 .concat(" invalid LLVM-EXEGESIS comments"));
tools/llvm-exegesis/llvm-exegesis.cpp 201 report_fatal_error(Twine("unknown opcode ").concat(OpcodeName));
265 Twine(State.getInstrInfo().getName(Opcode)).concat(": "));
tools/polly/lib/Analysis/ScopDetectionDiagnostic.cpp 93 return LHS.concat(Buf).str();
unittests/ADT/TwineTest.cpp 59 repr(Twine("hi").concat(Twine::createNull())));
61 repr(Twine::createNull().concat(Twine("hi"))));
65 repr(Twine("hi").concat(Twine())));
67 repr(Twine().concat(Twine("hi"))));
69 repr(Twine().concat(Twine(SmallString<5>("hi")))));
71 repr(Twine(formatv("howdy")).concat(Twine())));
73 repr(Twine().concat(Twine(formatv("howdy")))));
75 repr(Twine(SmallString<7>("hey")).concat(Twine("there"))));
79 repr(Twine("a").concat(Twine("b"))));
83 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))));
83 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))));
85 repr(Twine("a").concat(Twine("b").concat(Twine("c")))));
85 repr(Twine("a").concat(Twine("b").concat(Twine("c")))));
87 repr(Twine("a").concat(Twine(SmallString<3>("b")).concat(Twine("c")))));
87 repr(Twine("a").concat(Twine(SmallString<3>("b")).concat(Twine("c")))));
utils/TableGen/SubtargetEmitter.cpp 1118 .concat(Twine(PRVec.size()))
1119 .concat(" vs ")
1120 .concat(Twine(Cycles.size())));