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>
129 std::string str() const {
130 std::string Result;
146 operator std::string() const { return str(); }
171 // \brief Format text given a format string and replacement parameters.
175 // Formats textual output. `Fmt` is a string consisting of one or more
181 // format ::= <any string not containing "{" or "}">
188 // layout - A string controlling how the field is laid out within the available
190 // format - A type-dependent string used to provide additional options to
218 // index multiple times in a given format string. This makes it possible to
224 // would yield the string "abba". This can be convenient when it is expensive
245 // ===Invalid Format String Handling===
247 // In the case of a format string which does not match the grammar described