HomeSort by relevance Sort by last modified time
    Searched defs:Json (Results 1 - 21 of 21) sorted by null

  /external/jsoncpp/include/json/
forwards.h 13 namespace Json {
41 } // namespace Json
features.h 13 namespace Json {
24 * - Root object can be any JSON value
29 /** \brief A configuration that is strictly compatible with the JSON specification.
47 } // namespace Json
config.h 9 /// If defined, indicates that json library is embedded in CppTL library.
12 /// If defined, indicates that json may leverage CppTL library
17 /// If defined, indicates that Json specific container should be used
56 // If JSON_NO_INT64 is defined, then Json only support C++ "int" type for integer
75 namespace Json {
95 } // end namespace Json
writer.h 15 namespace Json {
29 /** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format without formatting (not human friendly).
31 * The JSON document is written in a single line. It is not intended for 'human' consumption,
53 /** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a human friendly way.
78 /** \brief Serialize a Value in <a HREF="http://www.json.org">JSON</a> format.
80 * \return String containing the JSON document that represents the root value.
108 /** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a human friendly way
    [all...]
reader.h 17 namespace Json {
19 /** \brief Unserialize a <a HREF="http://www.json.org">JSON</a> document into a Value.
38 /** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a> document.
52 /** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a> document.
69 /// \see Json::operator>>(std::istream&, Json::Value&).
187 Always keep comments from the input JSON
    [all...]
value.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
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
json.h 27 // Parses a JSON dictionary of strings. Sample usage:
28 // Json json;
29 // if (json.ParseObject("{'key1':'value1', 'key2':'value2'}") &&
30 // json.HasStringKey("key1")) {
31 // Process(json.GetStringValueForKey("key1"));
33 class Json {
35 Json();
36 ~Json();
38 // Parses the |json| string and returns true if |json| is valid and it is a
    [all...]
json.cc 15 #include "json.h"
35 class Json::JsonImpl {
37 explicit JsonImpl(const std::string& json)
42 document_->Parse<kParseValidateEncodingFlag>(json.c_str());
47 for (std::vector<const Json*>::const_iterator it = dictionaries_.begin();
55 const std::vector<const Json*>& GetSubDictionaries() {
60 dictionaries_.push_back(new Json(new JsonImpl(&member->value)));
91 // An owned JSON document. Can be NULL if the JSON document is not owned.
94 // A JSON document that is not owned. Cannot be NULL. Can point to document_
    [all...]
  /external/jsoncpp/src/lib_json/
json_tool.h 15 namespace Json {
91 } // namespace Json {
json_batchallocator.h 14 namespace Json {
123 } // namespace Json
json_writer.cpp 7 # include <json/writer.h>
21 namespace Json {
159 // Even though \/ is considered a legal escape in JSON, a bare
835 Json::StyledStreamWriter writer;
841 } // namespace Json
json_reader.cpp 7 # include <json/assertions.h>
8 # include <json/reader.h>
9 # include <json/value.h>
22 namespace Json {
175 addError( "A valid JSON document must be either an array or an object value.",
904 Json::Reader reader;
918 } // namespace Json
json_value.cpp 7 # include <json/assertions.h>
8 # include <json/value.h>
9 # include <json/writer.h>
27 namespace Json {
56 static inline double integerToDouble( Json::UInt64 value )
110 } // namespace Json
129 namespace Json {
644 // attempt to take address of bit-field structure member `Json::Value::type_'
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/
json.cc 5 #include "third_party/libaddressinput/src/cpp/src/util/json.h"
11 #include "base/json/json_reader.h"
22 // Returns |json| parsed into a JSON dictionary. Sets |parser_error| to true if
24 ::scoped_ptr<const base::DictionaryValue> Parse(const std::string& json,
29 // |json| is converted to a |c_str()| here because rapidjson and other parts
31 ::scoped_ptr<const base::Value> parsed(base::JSONReader::Read(json.c_str()));
44 // Implementation of JSON parser for libaddressinput using JSON parser in
46 class Json::JsonImpl
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 7 # include <json/assertions.h>
8 # include <json/reader.h>
9 # include <json/value.h>
24 namespace Json {
177 addError( "A valid JSON document must be either an array or an object value.",
906 Json::Reader reader;
920 } // namespace Json
json_value.cpp 7 # include <json/assertions.h>
8 # include <json/value.h>
9 # include <json/writer.h>
27 namespace Json {
66 static inline double integerToDouble( Json::UInt64 value )
120 } // namespace Json
139 namespace Json {
654 // attempt to take address of bit-field structure member `Json::Value::type_'
    [all...]
  /external/jsoncpp/chromium-overrides/src/lib_json/
json_value.cpp 7 # include <json/assertions.h>
8 # include <json/value.h>
9 # include <json/writer.h>
27 namespace Json {
60 static inline double integerToDouble( Json::UInt64 value )
114 } // namespace Json
133 namespace Json {
648 // attempt to take address of bit-field structure member `Json::Value::type_'
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 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
    [all...]
  /external/jsoncpp/chromium-overrides/include/json/
value.h 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
    [all...]
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 676 milliseconds