| /third_party/typescript/tests/baselines/reference/ |
| H A D | requireOfJsonFileInJsFile.symbols | 11 const json1 = require("./json.json"); // No error (bad)
12 >json1 : Symbol(json1, Decl(user.js, 4, 5))
16 json1.b; // No error (OK since that's the type annotation)
17 >json1.b : Symbol(b, Decl(user.js, 3, 12))
18 >json1 : Symbol(json1, Decl(user.js, 4, 5))
|
| H A D | requireOfJsonFileInJsFile.types | 14 const json1 = require("./json.json"); // No error (bad)
15 >json1 : { b: number; }
20 json1.b; // No error (OK since that's the type annotation)
21 >json1.b : number
22 >json1 : { b: number; }
|
| H A D | requireOfJsonFileInJsFile.errors.txt | 14 const json1 = require("./json.json"); // No error (bad)
18 json1.b; // No error (OK since that's the type annotation)
|
| /third_party/benchmark/tools/gbench/ |
| H A D | report.py | 131 def partition_benchmarks(json1, json2): 137 json1_unique_names = get_unique_benchmark_names(json1) 145 for x in json1['benchmarks']: 153 lhs = [x for x in json1['benchmarks'] if x['name'] == name and 244 json1, 249 runs specified as 'json1' and 'json2'. Output is another json containing 255 partitions = partition_benchmarks(json1, json2) 307 lhs_gmean = calculate_geomean(json1) 338 runs specified as 'json1' and 'json2'. 437 json1 [all...] |
| /foundation/arkui/ace_engine/test/unittest/core/pattern/model/ |
| H A D | model_test_ng.cpp | 399 auto json1 = JsonUtil::Create(true); in HWTEST_F() local 400 modelPattern->ToJsonValue(json1, filter1); in HWTEST_F() 401 ASSERT_NE(json1, nullptr); in HWTEST_F() 402 EXPECT_EQ(json1->GetString("renderWidth"), "1.000000"); in HWTEST_F() 403 EXPECT_EQ(json1->GetString("renderHeight"), "1.000000"); in HWTEST_F() 404 EXPECT_EQ(json1->GetString("shaderInputBuffer"), "1.000000 1.000000 1.000000 "); in HWTEST_F() 405 EXPECT_EQ(json1->GetString("shaderImageTexture"), "/data/local /data/local1 "); in HWTEST_F() 406 EXPECT_EQ(json1->GetString("modelType"), "ModelType.SURFACE"); in HWTEST_F() 407 EXPECT_EQ(json1->GetString("environment"), testPath); in HWTEST_F() 408 EXPECT_EQ(json1 in HWTEST_F() [all...] |
| /foundation/communication/dsoftbus/tests/core/authentication/unittest/ |
| H A D | auth_session_message_test.cpp | 419 JsonObj *json1 = JSON_CreateObject(); in HWTEST_F() local 420 EXPECT_TRUE(json1 != nullptr); in HWTEST_F() 422 EXPECT_TRUE(PackCommon(json1, &info, SOFTBUS_OLD_V2, false) == SOFTBUS_OK); in HWTEST_F() 423 EXPECT_TRUE(PackCommon(json1, &info, SOFTBUS_NEW_V1, false) == SOFTBUS_OK); in HWTEST_F() 424 JSON_Delete(json1); in HWTEST_F() 478 JsonObj *json1 = JSON_CreateObject(); in HWTEST_F() local 479 EXPECT_TRUE(json1 != nullptr); in HWTEST_F() 480 JSON_AddInt32ToObject(json1, BUS_MAX_VERSION, -1); in HWTEST_F() 481 JSON_AddInt32ToObject(json1, BUS_MIN_VERSION, -1); in HWTEST_F() 482 EXPECT_TRUE(CheckBusVersion(json1) in HWTEST_F() [all...] |
| /third_party/typescript/tests/cases/compiler/ |
| H A D | requireOfJsonFileInJsFile.ts | 18 const json1 = require("./json.json"); // No error (bad)
19 json1.b; // No error (OK since that's the type annotation)
|
| /foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/componentloader/src/ |
| H A D | component_loader_test.cpp | 869 cJSON *Json1 = cJSON_CreateObject(); in HWTEST_F() local 870 if (Json1 == nullptr) { in HWTEST_F() 873 cJSON_AddStringToObject(Json1, COMP_NAME.c_str(), "comp_name_test"); in HWTEST_F() 874 cJSON_AddStringToObject(Json1, COMP_TYPE.c_str(), "comp_type_test"); in HWTEST_F() 875 cJSON_AddStringToObject(Json1, COMP_HANDLER_LOC.c_str(), "comp_handler_loc_test"); in HWTEST_F() 876 cJSON_AddStringToObject(Json1, COMP_HANDLER_VERSION.c_str(), "1.0"); in HWTEST_F() 877 cJSON_AddNumberToObject(Json1, COMP_SOURCE_LOC.c_str(), 100); in HWTEST_F() 878 from_json(Json1, cfg); in HWTEST_F() 879 cJSON_Delete(Json1); in HWTEST_F()
|
| /foundation/communication/dsoftbus/tests/core/transmission/common/softbus_message_open_channel_test/ |
| H A D | softbus_message_open_channel_test.cpp | 352 cJSON *json1 = cJSON_Parse(mag); in HWTEST_F() local 354 ret = UnpackFirstData(appInfo, json1); in HWTEST_F() 361 cJSON_Delete(json1); in HWTEST_F()
|
| /test/xts/acts/communication/nfc_Controller/entry/src/ohosTest/js/test/ |
| H A D | MifareUltralightTag.test.js | 80 console.info("[NFC_test] mifareUltralight1 readMultiplePages1 data: " + data + "json1:" + JSON.stringify(data)); 139 console.info("[NFC_test] mifareUltralight3 writeSinglePages1 data: " + data + "json1:" + JSON.stringify(data));
|
| H A D | MifareClassicTag.test.js | 86 console.info("[NFC_test] MifareClassicTag1 authenticateSector1 data: " + data + "json1:" + JSON.stringify(data));
|
| /third_party/benchmark/tools/ |
| H A D | compare.py | 244 json1 = json1_orig = gbench.util.sort_benchmark_results(gbench.util.run_or_load_benchmark( 252 json1 = gbench.report.filter_benchmark( 258 json1, json2, args.utest)
|
| /foundation/resourceschedule/background_task_mgr/services/test/unittest/ |
| H A D | bgtask_misc_unit_test.cpp | 659 nlohmann::json json1; in HWTEST_F() local 660 EXPECT_EQ(DelayedSingleton<DataStorageHelper>::GetInstance()->ParseJsonValueFromFile(json1, ""), in HWTEST_F()
|
| /third_party/sqlite/src/ |
| H A D | sqlite3.c | [all...] |