Lines Matching full:for
4 * distributed with this work for additional information
15 * KIND, either express or implied. See the License for the
35 * JSON protocol for Thrift.
45 * a. "NaN" for not-a-number values
46 * b. "Infinity" for positive infinity
47 * c. "-Infinity" for negative infinity
56 * NOTE: Base64 padding is optional for Thrift binary value encoding. So
62 * key-value pair. The key is a short string identifier for that type,
63 * followed by the value. The valid type identifiers are: "tf" for bool,
64 * "i8" for byte, "i16" for 16-bit integer, "i32" for 32-bit integer, "i64"
65 * for 64-bit integer, "dbl" for double-precision loating point, "str" for
66 * string (including binary), "rec" for struct ("records"), "map" for map,
67 * "lst" for list, "set" for set.
70 * element of the JSON array being the string identifier for the Thrift
75 * of the JSON array being the string identifiers for the Thrift key type
91 * work for me in C++, loses any precision, but I am leaving this as a future
92 * improvement. I may try to provide a C component for this, so that other
93 * languages could bind to the same underlying implementation for maximum
231 // Provide the default readBool() implementation for std::vector<bool>