Home | History | Annotate | Download | only in json

Lines Matching defs:Json

10 # include "json/forwards.h"
24 /** \brief JSON (JavaScript Object Notation).
26 namespace Json {
63 * Json::Value aValue( StaticString("some text") );
64 * Json::Value object;
91 /** \brief Represents a <a HREF="http://www.json.org">JSON</a> value.
129 typedef Json::UInt UInt;
130 typedef Json::Int Int;
132 typedef Json::UInt64 UInt64;
133 typedef Json::Int64 Int64;
135 typedef Json::LargestInt LargestInt;
136 typedef Json::LargestUInt LargestUInt;
137 typedef Json::ArrayIndex ArrayIndex;
140 /// Minimum signed integer value that can be stored in a Json::Value.
142 /// Maximum signed integer value that can be stored in a Json::Value.
144 /// Maximum unsigned integer value that can be stored in a Json::Value.
147 /// Minimum signed int value that can be stored in a Json::Value.
149 /// Maximum signed int value that can be stored in a Json::Value.
151 /// Maximum unsigned int value that can be stored in a Json::Value.
155 /// Minimum signed 64 bits int value that can be stored in a Json::Value.
157 /// Maximum signed 64 bits int value that can be stored in a Json::Value.
159 /// Maximum unsigned 64 bits int value that can be stored in a Json::Value.
211 Json::Value null_value; // null
212 Json::Value arr_value(Json::arrayValue); // []
213 Json::Value obj_value(Json::objectValue); // {}
233 * Json::Value aValue( StaticString("some text") );
366 * Json::Value object;
1106 } // namespace Json