Home | History | Annotate | Download | only in Support

Lines Matching defs:string

1 //===- FormatVariadic.h - Efficient type-safe string formatting --*- C++-*-===//
13 // a raw_ostream or converted to a std::string or llvm::SmallString.
15 // // Convert to std::string.
16 // std::string S = formatv("{0} {1}", 1234.412, "test").str();
38 #include <string>
120 std::string str() const {
121 std::string Result;
137 operator std::string() const { return str(); }
154 // \brief Format text given a format string and replacement parameters.
158 // Formats textual output. `Fmt` is a string consisting of one or more
164 // format ::= <any string not containing "{" or "}">
171 // layout - A string controlling how the field is laid out within the available
173 // format - A type-dependent string used to provide additional options to
201 // index multiple times in a given format string. This makes it possible to
207 // would yield the string "abba". This can be convenient when it is expensive
228 // ===Invalid Format String Handling===
230 // In the case of a format string which does not match the grammar described