Searched defs:Twine (Results 1 - 4 of 4) sorted by path

/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
258 /*implicit*/ Twine() : LHSKind(EmptyKind), RHSKind(EmptyKind) { function in class:llvm::Twine
267 /*implicit*/ Twine(const char *Str) function in class:llvm::Twine
279 /*implicit*/ Twine(const std::string &Str) function in class:llvm::Twine
286 /*implicit*/ Twine(const StringRef &Str) function in class:llvm::Twine
293 explicit Twine(char Val) function in class:llvm::Twine
299 explicit Twine(signed char Val) function in class:llvm::Twine
305 explicit Twine(unsigned char Val) function in class:llvm::Twine
311 explicit Twine(unsigned Val) function in class:llvm::Twine
317 explicit Twine(int Val) function in class:llvm::Twine
323 explicit Twine(const unsigned long &Val) function in class:llvm::Twine
329 explicit Twine(const long &Val) function in class:llvm::Twine
335 explicit Twine(const unsigned long long &Val) function in class:llvm::Twine
341 explicit Twine(const long long &Val) function in class:llvm::Twine
352 /*implicit*/ Twine(const char *_LHS, const StringRef &_RHS) function in class:llvm::Twine
360 /*implicit*/ Twine(const StringRef &_LHS, const char *_RHS) function in class:llvm::Twine
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp232 operator Twine() { return Out.str(); }
968 Vals.push_back(createHint(Context, Twine(Prefix(), "width").str(), Width));
969 Vals.push_back(createHint(Context, Twine(Prefix(), "unroll").str(), 1));
1311 Twine("unrolled with interleaving factor " +
1312 Twine(UF) +
1328 Twine("vectorized loop (vectorization factor: ") + Twine(VF.Width) +
1329 ", unrolling interleave factor: " + Twine(UF) + ")");
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp148 static void error(Twine Message, Twine Path = Twine()) { argument
153 static bool error(std::error_code EC, Twine Path = Twine()) { argument

Completed in 412 milliseconds