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

  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/util/
json.h 25 // Parses a JSON dictionary of strings. Sample usage:
26 // scoped_ptr<Json> json(Json::Build());
28 // if (json->ParseObject("{'key1':'value1', 'key2':'value2'}") &&
29 // json->GetStringValueForKey("key1", &value)) {
32 class Json {
34 virtual ~Json();
36 // Returns a new instance of |Json| object.
37 static scoped_ptr<Json> Build()
    [all...]
json.cc 15 #include "json.h"
33 class Rapidjson : public Json {
39 virtual bool ParseObject(const std::string& json) {
41 document->Parse<rapidjson::kParseValidateEncodingFlag>(json.c_str());
67 scoped_ptr<Json>* value) const {
97 // JSON value.
105 Json::~Json() {}
108 scoped_ptr<Json> Json::Build()
    [all...]
  /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"
37 class Json::JsonImpl {
56 for (std::map<std::string, const Json*>::const_iterator
70 const Json* FindDictionary(const std::string& key) const {
71 std::map<std::string, const Json*>::const_iterator it =
78 void AddDictionary(const std::string& key, const Json* dictionary) {
101 // An owned JSON document. Can be NULL if the JSON document is not owned.
111 // A JSON document that is not owned. Cannot be NULL. Can point to document_.
114 // Owned JSON objects
    [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 "cpp/src/util/json.h"
8 #include "base/json/json_reader.h"
18 // A base class for Chrome Json objects. JSON gets parsed into a
19 // base::DictionaryValue and data is accessed via the Json interface.
20 class ChromeJson : public Json {
25 scoped_ptr<Json>* value) const OVERRIDE;
35 // A Json object that will parse a string and own the parsed data.
41 virtual bool ParseObject(const std::string& json) OVERRIDE {
44 // |json| is converted to a |c_str()| here because rapidjson and other part
    [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>
32 namespace Json {
185 addError( "A valid JSON document must be either an array or an object value.",
914 Json::Reader reader;
928 } // 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 288 milliseconds