Searched defs:Twine (Results 1 - 4 of 4) sorted by relevance
/external/clang/test/CodeGenCXX/ |
H A D | constructor-convert.cpp | 4 class Twine { class 6 Twine(const char *Str) { } function in class:Twine 9 static void error(const Twine &Message) {}
|
/external/llvm/include/llvm/ADT/ |
H A D | Twine.h | 1 //===-- Twine.h - Fast Temporary String Concatenation -----------*- C++ -*-===// 23 /// Twine - A lightweight data structure for efficiently representing the 26 /// A Twine is a kind of rope, it represents a concatenated string using a 28 /// Twine can be efficiently rendered into a buffer when its result is used, 30 /// results -- particularly in cases when the Twine result is never 35 /// A Twine is not intended for use directly and should not be stored, its 47 /// Given the nature of a Twine, it is not possible for the Twine's 49 /// represented inside the returned value. For this reason a Twine object 51 /// concatenation. We also have nullary Twine object 79 class Twine { class in namespace:llvm 165 explicit Twine(NodeKind Kind) function in class:llvm::Twine 171 explicit Twine(const Twine &LHS, const Twine &RHS) function in class:llvm::Twine 179 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) function in class:llvm::Twine 257 /*implicit*/ Twine() : LHSKind(EmptyKind), RHSKind(EmptyKind) { function in class:llvm::Twine 268 /*implicit*/ Twine(const char *Str) function in class:llvm::Twine 280 /*implicit*/ Twine(const std::string &Str) function in class:llvm::Twine 287 /*implicit*/ Twine(const StringRef &Str) function in class:llvm::Twine 294 /*implicit*/ Twine(const SmallVectorImpl<char> &Str) function in class:llvm::Twine 301 explicit Twine(char Val) function in class:llvm::Twine 307 explicit Twine(signed char Val) function in class:llvm::Twine 313 explicit Twine(unsigned char Val) function in class:llvm::Twine 319 explicit Twine(unsigned Val) function in class:llvm::Twine 325 explicit Twine(int Val) function in class:llvm::Twine 331 explicit Twine(const unsigned long &Val) function in class:llvm::Twine 337 explicit Twine(const long &Val) function in class:llvm::Twine 343 explicit Twine(const unsigned long long &Val) function in class:llvm::Twine 349 explicit Twine(const long long &Val) function in class:llvm::Twine 360 /*implicit*/ Twine(const char *LHS, const StringRef &RHS) function in class:llvm::Twine 368 /*implicit*/ Twine(const StringRef &LHS, const char *RHS) function in class:llvm::Twine [all...] |
/external/llvm/include/llvm/Analysis/ |
H A D | LoopAccessAnalysis.h | 45 LoopAccessReport(const Twine &Message, const Instruction *I) 61 operator Twine() { return Message; }
|
/external/llvm/tools/llvm-nm/ |
H A D | llvm-nm.cpp | 170 static void error(Twine Message, Twine Path = Twine()) { argument 175 static bool error(std::error_code EC, Twine Path = Twine()) { argument
|
Completed in 2829 milliseconds