Home
last modified time | relevance | path

Searched full:json (Results 1 – 25 of 15960) sorted by relevance

12345678910>>...639

/external/kotlinx.serialization/formats/json-tests/jvmTest/resources/spec_cases/
Dlisting.txt1 //n_array_a_invalid_utf8.json
2 //n_array_invalid_utf8.json
3 //n_array_just_minus.json
4 //n_array_star_inside.json
5 //n_incomplete_false.json
6 //n_incomplete_null.json
7 //n_incomplete_true.json
8 //n_object_bad_value.json
9 //n_object_key_with_single_quotes.json
10 //n_object_non_string_key.json
[all …]
/external/sdv/vsomeip/
D.gitignore9 /test/application_tests/application_test.json
10 /test/application_tests/application_test_daemon.json
11 /test/application_tests/application_test_no_dispatch_threads.json
12 /test/application_tests/application_test_no_dispatch_threads_daemon.json
13 /test/big_payload_tests/big_payload_test_tcp_client.json
14 /test/big_payload_tests/big_payload_test_tcp_service.json
15 /test/big_payload_tests/big_payload_test_tcp_client_random.json
16 /test/big_payload_tests/big_payload_test_tcp_service_random.json
17 /test/big_payload_tests/big_payload_test_tcp_client_limited_general.json
18 /test/big_payload_tests/big_payload_test_tcp_service_limited_general.json
[all …]
/external/rust/crates/h2/src/hpack/test/
Dfixture.rs177 (story_00, "haskell-http2-linear-huffman/story_00.json");
178 (story_01, "haskell-http2-linear-huffman/story_01.json");
179 (story_02, "haskell-http2-linear-huffman/story_02.json");
180 (story_03, "haskell-http2-linear-huffman/story_03.json");
181 (story_04, "haskell-http2-linear-huffman/story_04.json");
182 (story_05, "haskell-http2-linear-huffman/story_05.json");
183 (story_06, "haskell-http2-linear-huffman/story_06.json");
184 (story_07, "haskell-http2-linear-huffman/story_07.json");
185 (story_08, "haskell-http2-linear-huffman/story_08.json");
186 (story_09, "haskell-http2-linear-huffman/story_09.json");
[all …]
/external/angle/src/libANGLE/capture/
Dserialize.cpp111 GroupScope(JsonSerializer *json, const std::string &name) : mJson(json) in GroupScope() argument
116 GroupScope(JsonSerializer *json, const std::string &name, int index) : mJson(json) in GroupScope() argument
124 GroupScope(JsonSerializer *json, int index) : GroupScope(json, "", index) {} in GroupScope() argument
132 void SerializeColorF(JsonSerializer *json, const ColorF &color) in SerializeColorF() argument
134 json->addScalar("red", color.red); in SerializeColorF()
135 json->addScalar("green", color.green); in SerializeColorF()
136 json->addScalar("blue", color.blue); in SerializeColorF()
137 json->addScalar("alpha", color.alpha); in SerializeColorF()
140 void SerializeColorFWithGroup(JsonSerializer *json, const char *groupName, const ColorF &color) in SerializeColorFWithGroup() argument
142 GroupScope group(json, groupName); in SerializeColorFWithGroup()
[all …]
/external/rust/crates/grpcio-sys/grpc/spm-core-include/grpc/support/
Djson.h35 // A JSON value, which can be any one of null, boolean, number, string,
37 class Json {
39 // The JSON type.
50 using Object = std::map<std::string, Json>;
51 using Array = std::vector<Json>;
54 static Json FromBool(bool b) { in FromBool()
55 Json json; in FromBool() local
56 json.value_ = b; in FromBool()
57 return json; in FromBool()
61 static Json FromNumber(const std::string& str) { in FromNumber()
[all …]
/external/rust/crates/grpcio-sys/grpc/include/grpc/support/
Djson.h35 // A JSON value, which can be any one of null, boolean, number, string,
37 class Json {
39 // The JSON type.
50 using Object = std::map<std::string, Json>;
51 using Array = std::vector<Json>;
54 static Json FromBool(bool b) { in FromBool()
55 Json json; in FromBool() local
56 json.value_ = b; in FromBool()
57 return json; in FromBool()
61 static Json FromNumber(const std::string& str) { in FromNumber()
[all …]
/external/grpc-grpc/include/grpc/support/
Djson.h35 // A JSON value, which can be any one of null, boolean, number, string,
37 class Json {
39 // The JSON type.
50 using Object = std::map<std::string, Json>;
51 using Array = std::vector<Json>;
54 static Json FromBool(bool b) { in FromBool()
55 Json json; in FromBool() local
56 json.value_ = b; in FromBool()
57 return json; in FromBool()
61 static Json FromNumber(const std::string& str) { in FromNumber()
[all …]
/external/tink/cc/testvectors/
DBUILD.bazel15 outs = ["aes_cmac_test.json"],
23 outs = ["aes_gcm_test.json"],
31 outs = ["aes_gcm_siv_test.json"],
39 outs = ["aes_eax_test.json"],
48 "aead_aes_siv_cmac_test.json",
49 "aes_siv_cmac_test.json",
59 "chacha20_poly1305_test.json",
60 "xchacha20_poly1305_test.json",
70 "hmac_sha1_test.json",
71 "hmac_sha224_test.json",
[all …]
/external/kotlinx.serialization/formats/json/api/
Dkotlinx-serialization-json.api1 public final class kotlinx/serialization/json/ClassDiscriminatorMode : java/lang/Enum {
2 public static final field ALL_JSON_OBJECTS Lkotlinx/serialization/json/ClassDiscriminatorMode;
3 public static final field NONE Lkotlinx/serialization/json/ClassDiscriminatorMode;
4 public static final field POLYMORPHIC Lkotlinx/serialization/json/ClassDiscriminatorMode;
6 public static fun valueOf (Ljava/lang/String;)Lkotlinx/serialization/json/ClassDiscriminatorMode;
7 public static fun values ()[Lkotlinx/serialization/json/ClassDiscriminatorMode;
10 public final class kotlinx/serialization/json/DecodeSequenceMode : java/lang/Enum {
11 public static final field ARRAY_WRAPPED Lkotlinx/serialization/json/DecodeSequenceMode;
12 public static final field AUTO_DETECT Lkotlinx/serialization/json/DecodeSequenceMode;
13 public static final field WHITESPACE_SEPARATED Lkotlinx/serialization/json/DecodeSequenceMode;
[all …]
/external/grpc-grpc/test/core/json/
Djson_test.cc17 #include "src/core/lib/json/json.h"
34 #include "src/core/lib/json/json_reader.h"
35 #include "src/core/lib/json/json_writer.h"
40 void ValidateValue(const Json& actual, const Json& expected);
42 void ValidateObject(const Json::Object& actual, const Json::Object& expected) { in ValidateObject()
52 void ValidateArray(const Json::Array& actual, const Json::Array& expected) { in ValidateArray()
59 void ValidateValue(const Json& actual, const Json& expected) { in ValidateValue()
62 case Json::Type::kNull: in ValidateValue()
64 case Json::Type::kBoolean: in ValidateValue()
67 case Json::Type::kString: in ValidateValue()
[all …]
/external/skia/resources/
DBUILD.bazel305 "skottie/skottie-3d-2planes.json",
306 "skottie/skottie-3d-3planes.json",
307 "skottie/skottie-3d-parenting-camera.json",
308 "skottie/skottie-3d-parenting-nocamera.json",
309 "skottie/skottie-3d-rotation-order.json",
310 "skottie/skottie-auto-orient.json",
311 "skottie/skottie-auto-orient-2.json",
312 "skottie/skottie-bezier-extranormal.json",
313 "skottie/skottie-blackandwhite-effect.json",
314 "skottie/skottie-blendmode-hardmix.json",
[all …]
/external/python/cpython2/Lib/json/tests/
Dtest_fail.py1 from json.tests import PyTest, CTest
5 # http://json.org/JSON_checker/test/fail1.json
6 '"A JSON payload should be an object or array, not a string."',
7 # http://json.org/JSON_checker/test/fail2.json
9 # http://json.org/JSON_checker/test/fail3.json
11 # http://json.org/JSON_checker/test/fail4.json
13 # http://json.org/JSON_checker/test/fail5.json
15 # http://json.org/JSON_checker/test/fail6.json
17 # http://json.org/JSON_checker/test/fail7.json
19 # http://json.org/JSON_checker/test/fail8.json
[all …]
/external/jsoncpp/src/test_lib_json/
Dmain.cpp22 #include <json/config.h>
23 #include <json/json.h>
30 using CharReaderPtr = std::unique_ptr<Json::CharReader>;
34 #define kint32max Json::Value::maxInt
35 #define kint32min Json::Value::minInt
36 #define kuint32max Json::Value::maxUInt
37 #define kint64max Json::Value::maxInt64
38 #define kint64min Json::Value::minInt64
39 #define kuint64max Json::Value::maxUInt64
48 // Json Library test cases
[all …]
/external/skia/infra/bots/recipes/sync_and_compile.expected/
DBuild-Debian10-Clang-arm-Release-NoPatch.json7 "--json-file",
8 "/path/to/tmp/json",
12 "json",
19 "@@@STEP_LOG_LINE@json.output@{@@@",
20 "@@@STEP_LOG_LINE@json.output@ \"log\": [@@@",
21 "@@@STEP_LOG_LINE@json.output@ {@@@",
22 "@@@STEP_LOG_LINE@json.output@ \"author\": {@@@",
23 …"@@@STEP_LOG_LINE@json.output@ \"email\": \"fake_6e0e0a9f6cbf09078aa4730d1a0dc0aa722ddc11@f…
24 …"@@@STEP_LOG_LINE@json.output@ \"name\": \"fake_6e0e0a9f6cbf09078aa4730d1a0dc0aa722ddc11\",…
25 "@@@STEP_LOG_LINE@json.output@ \"time\": \"Mon Jan 01 00:00:00 2015\"@@@",
[all …]
/external/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/
Dlottie_web_perf_trybot.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
42 "[START_DIR]/lottie-samples/lottie1.json",
44 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
59 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
60 "/path/to/tmp/json",
67 "name": "parse lottie1.json trace",
[all …]
Dskottie_wasm_perf_trybot.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
44 "[START_DIR]/lottie-samples/lottie1.json",
46 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
61 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
62 "/path/to/tmp/json",
69 "name": "parse lottie1.json trace",
[all …]
Dlottie_web_canvas_perf_trybot.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
42 "[START_DIR]/lottie-samples/lottie1.json",
44 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
59 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
60 "/path/to/tmp/json",
67 "name": "parse lottie1.json trace",
[all …]
Dlottie_web_perf.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
42 "[START_DIR]/lottie-samples/lottie1.json",
44 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
59 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
60 "/path/to/tmp/json",
67 "name": "parse lottie1.json trace",
[all …]
Dskottie_wasm_perf_gpu.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
45 "[START_DIR]/lottie-samples/lottie1.json",
47 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
62 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
63 "/path/to/tmp/json",
70 "name": "parse lottie1.json trace",
[all …]
Dlottie_web_canvas_perf.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
42 "[START_DIR]/lottie-samples/lottie1.json",
44 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
59 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
60 "/path/to/tmp/json",
67 "name": "parse lottie1.json trace",
[all …]
Dskottie_wasm_perf.json7 "--json-output",
8 "/path/to/tmp/json",
16 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie1.json@@@",
17 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie2.json@@@",
18 "@@@STEP_LOG_LINE@listdir@[START_DIR]/lottie-samples/lottie3.json@@@",
44 "[START_DIR]/lottie-samples/lottie1.json",
46 "[CLEANUP]/g3_try_tmp_1/lottie1.json"
61 "[CLEANUP]/g3_try_tmp_1/lottie1.json",
62 "/path/to/tmp/json",
69 "name": "parse lottie1.json trace",
[all …]
/external/skia/bench/
DDecodeBench.cpp106 "skottie/skottie-text-scale-to-fit-minmax.json"));
108 "skottie/skottie-sphere-effect.json"));
110 "skottie/skottie_sample_multiframe.json"));
112 DEF_BENCH(return new SkottieDecodeBench("skottie_phonehub_connecting.json", // 216x216
113 "skottie/skottie-phonehub-connecting.json"));
114 DEF_BENCH(return new SkottieDecodeBench("skottie_phonehub_generic_error.json", // 216x217
115 "skottie/skottie-phonehub-generic-error.json"));
116 DEF_BENCH(return new SkottieDecodeBench("skottie_phonehub_onboard.json", // 217x217
117 "skottie/skottie-phonehub-onboard.json"));
120 DEF_BENCH(return new SkottieDecodeBench("skottie_phonehub_svgo_connecting.json",
[all …]
/external/kotlinx.serialization/docs/
Djson.md3 # JSON features
6 …pter, we'll walk through features of [JSON](https://www.json.org/json-en.html) serialization avail…
12 * [Json configuration](#json-configuration)
16 * [Alternative Json names](#alternative-json-names)
26 * [Json elements](#json-elements)
27 * [Parsing to Json element](#parsing-to-json-element)
28 * [Types of Json elements](#types-of-json-elements)
29 * [Json element builders](#json-element-builders)
30 * [Decoding Json elements](#decoding-json-elements)
31 * [Encoding literal Json content (experimental)](#encoding-literal-json-content-experimental)
[all …]
/external/cronet/third_party/boringssl/src/util/convert_wycheproof/
Dconvert_wycheproof.go20 "encoding/json"
29 Algorithm string `json:"algorithm"`
30 GeneratorVersion string `json:"generatorVersion"`
31 NumberOfTests int `json:"numberOfTests"`
32 Notes map[string]string `json:"notes"`
33 Header []string `json:"header"`
34 // encoding/json does not support collecting unused keys, so we leave
36 TestGroups []map[string]any `json:"testGroups"`
130 if err := json.Unmarshal(jsonData, &w); err != nil {
148 // JWK is a JSON object.
[all …]
/external/boringssl/src/util/convert_wycheproof/
Dconvert_wycheproof.go20 "encoding/json"
29 Algorithm string `json:"algorithm"`
30 GeneratorVersion string `json:"generatorVersion"`
31 NumberOfTests int `json:"numberOfTests"`
32 Notes map[string]string `json:"notes"`
33 Header []string `json:"header"`
34 // encoding/json does not support collecting unused keys, so we leave
36 TestGroups []map[string]any `json:"testGroups"`
130 if err := json.Unmarshal(jsonData, &w); err != nil {
148 // JWK is a JSON object.
[all …]

12345678910>>...639