Home
last modified time | relevance | path

Searched refs:JSON (Results 1 – 25 of 297) sorted by relevance

12345678910>>...12

/external/protobuf/src/google/protobuf/
Dwrappers.proto51 // The JSON representation for `DoubleValue` is JSON number.
59 // The JSON representation for `FloatValue` is JSON number.
67 // The JSON representation for `Int64Value` is JSON string.
75 // The JSON representation for `UInt64Value` is JSON string.
83 // The JSON representation for `Int32Value` is JSON number.
91 // The JSON representation for `UInt32Value` is JSON number.
99 // The JSON representation for `BoolValue` is JSON `true` and `false`.
107 // The JSON representation for `StringValue` is JSON string.
115 // The JSON representation for `BytesValue` is JSON string.
Dstruct.proto51 // The JSON representation for `Struct` is JSON object.
62 // The JSON representation for `Value` is JSON value.
84 // The JSON representation for `NullValue` is JSON `null`.
92 // The JSON representation for `ListValue` is JSON array.
/external/golang-protobuf/ptypes/wrappers/
Dwrappers.proto50 // The JSON representation for `DoubleValue` is JSON number.
58 // The JSON representation for `FloatValue` is JSON number.
66 // The JSON representation for `Int64Value` is JSON string.
74 // The JSON representation for `UInt64Value` is JSON string.
82 // The JSON representation for `Int32Value` is JSON number.
90 // The JSON representation for `UInt32Value` is JSON number.
98 // The JSON representation for `BoolValue` is JSON `true` and `false`.
106 // The JSON representation for `StringValue` is JSON string.
114 // The JSON representation for `BytesValue` is JSON string.
/external/python/cpython3/Doc/library/
Djson.rst1 :mod:`json` --- JSON encoder and decoder
5 :synopsis: Encode and decode the JSON format.
14 `JSON (JavaScript Object Notation) <http://json.org>`_, specified by
58 Decoding JSON::
70 Specializing JSON object decoding::
118 JSON is a subset of `YAML <http://yaml.org/>`_ 1.2. The JSON produced by
132 Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting
154 ``inf``, ``-inf``) in strict compliance of the JSON specification.
158 If *indent* is a non-negative integer or string, then JSON array elements and
170 ``(',', ': ')`` otherwise. To get the most compact JSON representation,
[all …]
/external/python/cpython2/Doc/library/
Djson.rst1 :mod:`json` --- JSON encoder and decoder
5 :synopsis: Encode and decode the JSON format.
10 `JSON (JavaScript Object Notation) <http://json.org>`_, specified by
55 Decoding JSON::
67 Specializing JSON object decoding::
115 JSON is a subset of `YAML <http://yaml.org/>`_ 1.2. The JSON produced by
129 Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting
153 ``inf``, ``-inf``) in strict compliance of the JSON specification.
157 If *indent* is a non-negative integer, then JSON array elements and object
169 tuple. By default, ``(', ', ': ')`` are used. To get the most compact JSON
[all …]
/external/jsmn/
DREADME.md6 jsmn (pronounced like 'jasmine') is a minimalistic JSON parser in C. It can be
9 You can find more information about JSON format at [json.org][1]
19 Most JSON parsers offer you a bunch of functions to load JSON data, parse it
21 every JSON packet or allocating temporary objects to store parsed JSON fields
24 JSON format itself is extremely simple, so why should we complicate it?
48 The rudimentary jsmn object is a **token**. Let's consider a JSON string:
58 In jsmn, tokens do not hold any data, but point to token boundaries in JSON
62 Every jsmn token has a type, which indicates the type of corresponding JSON
76 This approach provides enough information for parsing any JSON data and makes
108 **Note:** Unlike JSON data types, primitive tokens are not divided into
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Other/
Dstatistic.ll1 …RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json 2>&1 | FileCheck %s --check-prefix=JSON
2 …null -instsimplify -stats -stats-json -info-output-file %t && FileCheck %s < %t --check-prefix=JSON
3 …ll -instsimplify -stats -stats-json -time-passes 2>&1 | FileCheck %s --check-prefixes=JSON,JSONTIME
4 …s -stats-json -time-passes -info-output-file %t && FileCheck %s < %t --check-prefixes=JSON,JSONTIME
9 ; JSON: {
10 ; JSON-DAG: "instsimplify.NumSimplified": 1
14 ; JSON: }
/external/llvm/test/Other/
Dstatistic.ll1 …RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json 2>&1 | FileCheck %s --check-prefix=JSON
2 …null -instsimplify -stats -stats-json -info-output-file %t && FileCheck %s < %t --check-prefix=JSON
7 ; JSON: {
8 ; JSON: "instsimplify.NumSimplified": 1
9 ; JSON: }
/external/flatbuffers/samples/
Dsample_text.lobster18 // Example how to interop with JSON.
20 // Test loading some JSON, converting it to a binary FlatBuffer and back again.
22 // First read the schema and JSON data.
27 // Parse JSON to binary:
35 // Convert binary back to JSON:
39 // The generated JSON should be exactly equal to the original!
/external/flatbuffers/docs/source/
DBenchmarks.md6 overhead), Rapid JSON (one of the fastest C++ JSON parsers around),
16 intended), and also with JSON as the wire format with the optional JSON
17 parser (which, using a schema, parses JSON into a binary buffer that can
24 … | FlatBuffers (binary) | Protocol Buffers LITE | Rapid JSON | FlatBuffers (JSON) …
47 - YAML: a superset of JSON and otherwise very similar. Used by e.g. Unity.
/external/golang-protobuf/ptypes/struct/
Dstruct.proto51 // The JSON representation for `Struct` is JSON object.
62 // The JSON representation for `Value` is JSON value.
84 // The JSON representation for `NullValue` is JSON `null`.
92 // The JSON representation for `ListValue` is JSON array.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DecodeJSONExample.pbtxt6 Each string is a JSON object serialized according to the JSON
17 summary: "Convert JSON-encoded Example records to binary protocol buffer strings."
20 the [standard JSON
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_offload.py136 def tool(name, args, flags, JSON=True, ns="", fail=True, include_stderr=False): argument
138 if JSON:
151 if JSON and len(stdout.strip()) != 0:
161 def bpftool(args, JSON=True, ns="", fail=True, include_stderr=False): argument
162 return tool("bpftool", args, {"json":"-p"}, JSON=JSON, ns=ns,
166 _, progs = bpftool("prog show", JSON=True, ns=ns, fail=True)
178 _, maps = bpftool("map show", JSON=True, ns=ns, fail=True)
220 def ip(args, force=False, JSON=True, ns="", fail=True, include_stderr=False): argument
223 return tool("ip", args, {"json":"-j"}, JSON=JSON, ns=ns,
226 def tc(args, JSON=True, ns="", fail=True, include_stderr=False): argument
[all …]
/external/jsoncpp/doc/
Djsoncpp.dox5 <a HREF="http://www.json.org/">JSON (JavaScript Object Notation)</a>
10 Here is an example of JSON data:
31 - read and write JSON document
33 - rewrite JSON document preserving original comments
35 Notes: Comments used to be supported in JSON but where removed for
75 // Make a new JSON document for the configuration. Preserve original comments.
78 // You can also use streams. This will put the contents of any JSON
101 - <a HREF="http://www.json.org/">JSON</a> Specification and alternate language implementations.
/external/cn-cbor/cmake/
DCoverallsGenerateGcov.cmake31 # It then parses the .gcov files to convert them into the Coveralls JSON format:
251 message("\nGenerate JSON for files:")
351 # Translate the hitcount into valid JSON values.
373 # Advanced way of removing the trailing comma in the JSON array.
377 # Append the trailing ] to complete the JSON array.
380 # Generate the final JSON for this file.
381 message("Generate JSON for file: ${GCOV_SRC_REL_PATH}...")
388 # as well, and generate JSON for those as well with 0% coverage.
407 # Remove trailing comma, and complete JSON array with ]
411 # Generate the final JSON for this file.
[all …]
/external/autotest/client/site_tests/power_LoadTest/extension/
Dtest.js50 console.log(JSON.stringify(page_timestamps_recorder));
106 console.log(JSON.stringify(page_timestamps));
165 console.log(JSON.stringify(page_timestamps_recorder));
216 console.log(JSON.stringify(page_timestamps_recorder));
224 console.log(JSON.stringify("page_timestamps:"));
225 console.log(JSON.stringify(page_timestamps));
275 post.push(key + "=" + JSON.stringify(item));
/external/jsoncpp/
DREADME.md4 [JSON][json-org] is a lightweight data-interchange format. It can represent
10 JsonCpp is a C++ library that allows manipulating JSON values, including
45 Note that Python is also required to run the JSON reader/writer tests. If
181 * a `TESTNAME.json` file, that contains the input document in JSON format.
187 * each line represents a JSON element of the element tree represented by the
205 * `test_complex_01.json`: input JSON document.
206 * `test_complex_01.expected`: flattened JSON element tree used to check if
208 * `test_complex_01.actual`: flattened JSON element tree produced by `jsontest`
210 * `test_complex_01.rewrite`: JSON document written by `jsontest` using the
213 * `test_complex_01.actual-rewrite`: flattened JSON element tree produced by
/external/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
DJSON.td1 // RUN: llvm-tblgen -dump-json %s | %python %S/JSON-check.py %s
39 // A variable not filled in at all has its value set to JSON
44 // Test initializers that map to primitive JSON types
49 // Integer literals should be emitted in the JSON at full 64-bit
50 // precision, for the benefit of JSON readers that preserve that
76 // Test initializers that map to JSON objects containing a 'kind'
121 // in the JSON output looking for the one that has the test integer
/external/deqp-deps/SPIRV-Headers/
DREADME.md8 * JSON files describing the grammar for the SPIR-V core instruction set
11 * A tool to build the headers from the JSON grammar.
30 - reserve specific tokens in the JSON grammar
64 ## Generating the headers from the JSON grammar
66 This will generally be done by Khronos, for a change to the JSON grammar.
74 header-generator binary to generate the headers from the JSON grammar.
87 single `unified1` view. The JSON grammar has a "version" field saying
/external/swiftshader/third_party/SPIRV-Headers/
DREADME.md8 * JSON files describing the grammar for the SPIR-V core instruction set
11 * A tool to build the headers from the JSON grammar.
30 - reserve specific tokens in the JSON grammar
64 ## Generating the headers from the JSON grammar
66 This will generally be done by Khronos, for a change to the JSON grammar.
74 header-generator binary to generate the headers from the JSON grammar.
87 single `unified1` view. The JSON grammar has a "version" field saying
/external/shaderc/spirv-headers/
DREADME.md8 * JSON files describing the grammar for the SPIR-V core instruction set
11 * A tool to build the headers from the JSON grammar.
30 - reserve specific tokens in the JSON grammar
64 ## Generating the headers from the JSON grammar
66 This will generally be done by Khronos, for a change to the JSON grammar.
74 header-generator binary to generate the headers from the JSON grammar.
87 single `unified1` view. The JSON grammar has a "version" field saying
/external/libchrome/mojo/public/mojom/base/
Dvalues.mojom7 // Value represents a value that can be serialized to/from JSON.
9 // One notable caveat is that Value supports arbitrary binary data, which JSON
20 // Binary blob with arbitrary bytes. Not supported for JSON.
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DRTCICECandidate+JSON.m11 #import "RTCICECandidate+JSON.h"
21 @implementation RTCICECandidate (JSON) category
44 RTCLogError(@"Error serializing JSON: %@", error);
/external/mesa3d/src/gallium/tools/trace/
DREADME.txt19 You can dump a JSON file describing the static state at any given draw call
33 You can compare two JSON files by doing
38 and bad trace, dump respective state in JSON, and then compare the states to
/external/python/cpython3/Lib/test/test_json/
Dtest_pass2.py5 JSON = r''' variable
12 res = self.loads(JSON)

12345678910>>...12