Searched defs:Twine (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dconstructor-convert.cpp4 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 DTwine.h1 //===-- Twine.h - Fast Temporary String Concatenation -----------*- C++ -*-===//
25 /// Twine - A lightweight data structure for efficiently representing the
28 /// A Twine is a kind of rope, it represents a concatenated string using a
30 /// Twine can be efficiently rendered into a buffer when its result is used,
32 /// results -- particularly in cases when the Twine result is never
37 /// A Twine is not intended for use directly and should not be stored, its
49 /// Given the nature of a Twine, it is not possible for the Twine's
51 /// represented inside the returned value. For this reason a Twine object
53 /// concatenation. We also have nullary Twine object
81 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, function in class:llvm::Twine
254 /*implicit*/ Twine() : LHSKind(EmptyKind), RHSKind(EmptyKind) { function in class:llvm::Twine
263 /*implicit*/ Twine(const char *Str) function in class:llvm::Twine
275 /*implicit*/ Twine(const std::string &Str) function in class:llvm::Twine
282 /*implicit*/ Twine(const StringRef &Str) function in class:llvm::Twine
289 explicit Twine(char Val) function in class:llvm::Twine
295 explicit Twine(signed char Val) function in class:llvm::Twine
301 explicit Twine(unsigned char Val) function in class:llvm::Twine
307 explicit Twine(unsigned Val) function in class:llvm::Twine
313 explicit Twine(int Val) function in class:llvm::Twine
319 explicit Twine(const unsigned long &Val) function in class:llvm::Twine
325 explicit Twine(const long &Val) function in class:llvm::Twine
331 explicit Twine(const unsigned long long &Val) function in class:llvm::Twine
337 explicit Twine(const long long &Val) function in class:llvm::Twine
348 /*implicit*/ Twine(const char *_LHS, const StringRef &_RHS) function in class:llvm::Twine
356 /*implicit*/ Twine(const StringRef &_LHS, const char *_RHS) function in class:llvm::Twine
[all...]
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp130 static void error(Twine message, Twine path = Twine()) { argument
134 static bool error(error_code ec, Twine path = Twine()) { argument

Completed in 139 milliseconds