| /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/ |
| Error.h | 22 void PrintNote(const Twine &Msg); 23 void PrintNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg); 25 LLVM_ATTRIBUTE_NORETURN void PrintFatalNote(const Twine &Msg); 27 const Twine &Msg); 29 const Twine &Msg); 31 const Twine &Msg); 33 void PrintWarning(const Twine &Msg); 34 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg); 35 void PrintWarning(const char *Loc, const Twine &Msg); 37 void PrintError(const Twine &Msg) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Twine.cpp | 1 //===-- Twine.cpp - Fast Temporary String Concatenation -------------------===// 9 #include "llvm/ADT/Twine.h" 17 std::string Twine::str() const { 32 void Twine::toVector(SmallVectorImpl<char> &Out) const { 37 StringRef Twine::toNullTerminatedStringRef(SmallVectorImpl<char> &Out) const { 57 void Twine::printOneChild(raw_ostream &OS, Child Ptr, 60 case Twine::NullKind: break; 61 case Twine::EmptyKind: break; 62 case Twine::TwineKind: 63 Ptr.twine->print(OS) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| MacroBuilder.h | 18 #include "llvm/ADT/Twine.h" 29 void defineMacro(const Twine &Name, const Twine &Value = "1") { 35 void undefineMacro(const Twine &Name) { 40 void append(const Twine &Str) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Linker/ |
| LinkDiagnosticInfo.h | 16 const Twine &Msg; 19 LinkDiagnosticInfo(DiagnosticSeverity Severity, const Twine &Msg);
|
| /src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| PassPlugin.cpp | 21 return make_error<StringError>(Twine("Could not load library '") + 32 return make_error<StringError>(Twine("Plugin entry point not found in '") + 40 Twine("Wrong API version on plugin '") + Filename + "'. Got version " + 41 Twine(P.Info.APIVersion) + ", supported version is " + 42 Twine(LLVM_PLUGIN_API_VERSION) + ".", 46 return make_error<StringError>(Twine("Empty entry callback in plugin '") +
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| Twine.h | 1 //===- Twine.h - Fast Temporary String Concatenation ------------*- C++ -*-===// 24 /// Twine - A lightweight data structure for efficiently representing the 27 /// A Twine is a kind of rope, it represents a concatenated string using a 29 /// Twine can be efficiently rendered into a buffer when its result is used, 31 /// results -- particularly in cases when the Twine result is never 36 /// A Twine is not intended for use directly and should not be stored, its 48 /// Given the nature of a Twine, it is not possible for the Twine's 50 /// represented inside the returned value. For this reason a Twine object 52 /// concatenation. We also have nullary Twine objects, which are effectivel 138 const Twine *twine; member in union:llvm::Twine::Child [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| Error.cpp | 14 #include "llvm/ADT/Twine.h" 28 const Twine &Msg) { 45 void PrintNote(const Twine &Msg) { 49 void PrintNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg) { 55 void PrintFatalNote(const Twine &Msg) { 62 void PrintFatalNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg) { 71 void PrintFatalNote(const Record *Rec, const Twine &Msg) { 80 void PrintFatalNote(const RecordVal *RecVal, const Twine &Msg) { 89 void PrintWarning(const Twine &Msg) { WithColor::warning() << Msg << "\n"; } 91 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| GlobalAlias.h | 23 class Twine; 32 const Twine &Name, Constant *Aliasee, Module *Parent); 41 LinkageTypes Linkage, const Twine &Name, 46 LinkageTypes Linkage, const Twine &Name, 51 LinkageTypes Linkage, const Twine &Name, 55 static GlobalAlias *create(LinkageTypes Linkage, const Twine &Name, 59 static GlobalAlias *create(const Twine &Name, GlobalValue *Aliasee);
|
| GlobalIFunc.h | 26 class Twine; 37 const Twine &Name, Constant *Resolver, Module *Parent); 46 LinkageTypes Linkage, const Twine &Name,
|
| Mangler.h | 24 class Twine; 43 static void getNameWithPrefix(raw_ostream &OS, const Twine &GVName, 46 const Twine &GVName, const DataLayout &DL);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| ByteStreamer.h | 32 virtual void emitInt8(uint8_t Byte, const Twine &Comment = "") = 0; 33 virtual void emitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0; 34 virtual void emitULEB128(uint64_t DWord, const Twine &Comment = "", 44 void emitInt8(uint8_t Byte, const Twine &Comment) override { 48 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { 52 void emitULEB128(uint64_t DWord, const Twine &Comment, 64 void emitInt8(uint8_t Byte, const Twine &Comment) override { 67 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { 70 void emitULEB128(uint64_t DWord, const Twine &Comment, 91 void emitInt8(uint8_t Byte, const Twine &Comment) override [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
| llvm-dwarfdump.h | 14 #include "llvm/ADT/Twine.h" 35 const Twine &Filename); 38 const Twine &Filename, raw_ostream &OS); 40 const Twine &Filename, raw_ostream &OS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCMachineFunctionInfo.cpp | 10 #include "llvm/ADT/Twine.h" 28 return MF.getContext().getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 29 Twine(MF.getFunctionNumber()) + 35 return MF.getContext().getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 37 Twine(MF.getFunctionNumber())); 42 return MF.getContext().getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 44 Twine(MF.getFunctionNumber())); 49 return MF.getContext().getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) + 51 Twine(MF.getFunctionNumber()));
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| LinkUtils.h | 14 #include "llvm/ADT/Twine.h" 92 inline void warn(Twine Warning, Twine Context = {}) { 95 WithColor::note() << Twine("while processing ") + Context + "\n"; 98 inline bool error(Twine Error, Twine Context = {}) { 101 WithColor::note() << Twine("while processing ") + Context + "\n";
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| Mips.cpp | 126 Builder.defineMacro("__mips_hard_float", Twine(1)); 129 Builder.defineMacro("__mips_soft_float", Twine(1)); 134 Builder.defineMacro("__mips_single_float", Twine(1)); 138 Builder.defineMacro("__mips_fpr", Twine(0)); 141 Builder.defineMacro("__mips_fpr", Twine(32)); 144 Builder.defineMacro("__mips_fpr", Twine(64)); 149 Builder.defineMacro("_MIPS_FPSET", Twine(32)); 151 Builder.defineMacro("_MIPS_FPSET", Twine(16)); 154 Builder.defineMacro("__mips16", Twine(1)); 157 Builder.defineMacro("__mips_micromips", Twine(1)) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Path.h | 18 #include "llvm/ADT/Twine.h" 148 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension, 187 void append(SmallVectorImpl<char> &path, const Twine &a, 188 const Twine &b = "", 189 const Twine &c = "", 190 const Twine &d = ""); 192 void append(SmallVectorImpl<char> &path, Style style, const Twine &a, 193 const Twine &b = "", const Twine &c = "", const Twine &d = "") [all...] |
| MemoryBuffer.h | 19 #include "llvm/ADT/Twine.h" 87 getFile(const Twine &Filename, bool IsText = false, 94 getFileAsStream(const Twine &Filename); 100 getOpenFileSlice(sys::fs::file_t FD, const Twine &Filename, uint64_t MapSize, 110 getOpenFile(sys::fs::file_t FD, const Twine &Filename, uint64_t FileSize, 125 getMemBufferCopy(StringRef InputData, const Twine &BufferName = ""); 133 getFileOrSTDIN(const Twine &Filename, bool IsText = false, 138 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset, 184 getFile(const Twine &Filename, bool IsVolatile = false); 188 getFileSlice(const Twine &Filename, uint64_t MapSize, uint64_t Offset [all...] |
| FileSystem.h | 31 #include "llvm/ADT/Twine.h" 284 void make_absolute(const Twine ¤t_directory, SmallVectorImpl<char> &path); 305 std::error_code create_directories(const Twine &path, 315 std::error_code create_directory(const Twine &path, bool IgnoreExisting = true, 329 std::error_code create_link(const Twine &to, const Twine &from); 337 std::error_code create_hard_link(const Twine &to, const Twine &from); 346 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output, 353 void expand_tilde(const Twine &path, SmallVectorImpl<char> &output) [all...] |
| FileCollector.h | 21 class Twine; 28 void addFile(const Twine &file); 29 void addDirectory(const Twine &Dir); 41 addDirectoryImpl(const llvm::Twine &Dir, 128 addDirectoryImpl(const llvm::Twine &Dir,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/ |
| MCAsmParserExtension.h | 20 class Twine; 70 bool Warning(SMLoc L, const Twine &Msg) { 74 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) { 78 void Note(SMLoc L, const Twine &Msg) { 82 bool TokError(const Twine &Msg) { 89 const Twine &Msg = "unexpected token") { 104 bool check(bool P, const Twine &Msg) { 108 bool check(bool P, SMLoc Loc, const Twine &Msg) { 112 bool addErrorSuffix(const Twine &Suffix) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| CodeViewRecordIO.h | 36 virtual void AddComment(const Twine &T) = 0; 37 virtual void AddRawComment(const Twine &T) = 0; 67 Error mapInteger(TypeIndex &TypeInd, const Twine &Comment = ""); 100 template <typename T> Error mapInteger(T &Value, const Twine &Comment = "") { 114 template <typename T> Error mapEnum(T &Value, const Twine &Comment = "") { 133 Error mapEncodedInteger(int64_t &Value, const Twine &Comment = ""); 134 Error mapEncodedInteger(uint64_t &Value, const Twine &Comment = ""); 135 Error mapEncodedInteger(APSInt &Value, const Twine &Comment = ""); 136 Error mapStringZ(StringRef &Value, const Twine &Comment = ""); 137 Error mapGuid(GUID &Guid, const Twine &Comment = "") [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| MachOUniversal.cpp | 26 malformedError(Twine Msg) { 163 Twine(Magic == MachO::FAT_MAGIC ? "" : "_64") + 173 Twine(A.getCPUType()) + ") cpusubtype (" + 174 Twine(A.getCPUSubType() & ~MachO::CPU_SUBTYPE_MASK) + 180 Err = malformedError("align (2^" + Twine(A.getAlign()) + 181 ") too large for cputype (" + Twine(A.getCPUType()) + 183 Twine(A.getCPUSubType() & ~MachO::CPU_SUBTYPE_MASK) + 184 ") (maximum 2^" + Twine(MaxSectionAlignment) + ")"); 188 Err = malformedError("offset: " + Twine(A.getOffset()) + 189 " for cputype (" + Twine(A.getCPUType()) + ") cpusubtype (" [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| Error.h | 12 #include "llvm/ADT/Twine.h" 22 Failure(const Twine &S) : StringError(S, inconvertibleErrorCode()) {} 29 ClusteringError(const Twine &S) : Msg(S.str()) {} 44 SnippetCrash(const Twine &S) : Msg(S.str()) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| MCAsmParser.cpp | 11 #include "llvm/ADT/Twine.h" 54 bool MCAsmParser::parseEOL(const Twine &Msg) { 61 bool MCAsmParser::parseToken(AsmToken::TokenKind T, const Twine &Msg) { 70 bool MCAsmParser::parseIntToken(int64_t &V, const Twine &Msg) { 85 bool MCAsmParser::check(bool P, const Twine &Msg) { 89 bool MCAsmParser::check(bool P, SMLoc Loc, const Twine &Msg) { 95 bool MCAsmParser::TokError(const Twine &Msg, SMRange Range) { 99 bool MCAsmParser::Error(SMLoc L, const Twine &Msg, SMRange Range) { 115 bool MCAsmParser::addErrorSuffix(const Twine &Suffix) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyLowerGlobalDtors.cpp | 154 (Priority != UINT16_MAX ? (Twine(".") + Twine(Priority)) 155 : Twine()) + 156 (AtThisPriority.size() > 1 ? Twine("$") + Twine(ThisId) 157 : Twine()) + 158 (!Associated->isNullValue() ? (Twine(".") + Associated->getName()) 159 : Twine()), 172 (Priority != UINT16_MAX ? (Twine(".") + Twine(Priority) [all...] |