Home
last modified time | relevance | path

Searched refs:json_file_path (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/external/cronet/base/json/
H A Djson_file_value_serializer.cc21 const base::FilePath& json_file_path) in JSONFileValueSerializer() argument
22 : json_file_path_(json_file_path) { in JSONFileValueSerializer()
51 const base::FilePath& json_file_path, in JSONFileValueDeserializer() argument
53 : json_file_path_(json_file_path), options_(options) {} in JSONFileValueDeserializer()
H A Djson_file_value_serializer.h25 explicit JSONFileValueSerializer(const base::FilePath& json_file_path);
59 const base::FilePath& json_file_path,
/aosp_15_r20/external/libchrome/base/json/
H A Djson_file_value_serializer.cc20 const base::FilePath& json_file_path) in JSONFileValueSerializer() argument
21 : json_file_path_(json_file_path) { in JSONFileValueSerializer()
55 const base::FilePath& json_file_path, in JSONFileValueDeserializer() argument
57 : json_file_path_(json_file_path), options_(options), last_read_size_(0U) {} in JSONFileValueDeserializer()
H A Djson_file_value_serializer.h22 explicit JSONFileValueSerializer(const base::FilePath& json_file_path);
52 explicit JSONFileValueDeserializer(const base::FilePath& json_file_path,
/aosp_15_r20/external/cronet/base/test/
H A Dvalues_test_util.cc280 Value::Dict ParseJsonDictFromFile(const FilePath& json_file_path) { in ParseJsonDictFromFile() argument
282 if (!ReadFileToString(json_file_path, &json)) { in ParseJsonDictFromFile()
284 << json_file_path; in ParseJsonDictFromFile()
290 expected<void, WriteJsonError> WriteJsonFile(const FilePath& json_file_path, in WriteJsonFile() argument
296 if (!WriteFile(json_file_path, json)) { in WriteJsonFile()
H A Dvalues_test_util.h114 Value::Dict ParseJsonDictFromFile(const FilePath& json_file_path);
128 expected<void, WriteJsonError> WriteJsonFile(const FilePath& json_file_path,
/aosp_15_r20/external/icu/tools/
H A Dicuutil.py122 json_file_path = os.path.join(icu_build_dir, "icu4c_data_filters.json")
123 print("json path: %s" % json_file_path)
124 writeFileContent(json_file_path, data_filters_json)
125 cmd.append('ICU_DATA_FILTER_FILE=%s' % json_file_path)
/aosp_15_r20/external/grpc-grpc/test/core/security/
H A Dfetch_oauth2.cc39 static grpc_call_credentials* create_sts_creds(const char* json_file_path) { in create_sts_creds() argument
41 if (strlen(json_file_path) == 0) { in create_sts_creds()
49 grpc_core::testing::GetFileContents(json_file_path); in create_sts_creds()
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/json/
Djson_file_value_serializer.h25 explicit JSONFileValueSerializer(const base::FilePath& json_file_path);
55 explicit JSONFileValueDeserializer(const base::FilePath& json_file_path,
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/2/external/libchrome/base/json/
Djson_file_value_serializer.h25 explicit JSONFileValueSerializer(const base::FilePath& json_file_path);
55 explicit JSONFileValueDeserializer(const base::FilePath& json_file_path,
/aosp_15_r20/tools/asuite/atest/
H A Datest_utils_unittest.py669 json_file_path = Path(unittest_constants.TEST_DATA_DIR).joinpath(
672 self.assertEqual({}, atest_utils.load_json_safely(json_file_path))
676 json_file_path = Path(unittest_constants.TEST_DATA_DIR).joinpath(
679 content = atest_utils.load_json_safely(json_file_path)
689 json_file_path = Path(unittest_constants.TEST_DATA_DIR).joinpath(
692 self.assertEqual({}, atest_utils.load_json_safely(json_file_path))
H A Dmodule_info_unittest.py105 self.json_file_path = Path(PRODUCT_OUT_DIR).joinpath(uc.JSON_FILE)
/aosp_15_r20/packages/services/Car/tools/telemetry/lua-interpreter/
Dapp.py60 json_file_path = os.path.join(file_path, file_name + '.json')
61 json_file = open(json_file_path)
/aosp_15_r20/external/pigweed/pw_build/py/pw_build/
H A Dpython_package.py303 json_file_path = Path(json_file.strip()).resolve()
304 with json_file_path.open() as json_fp:
H A Dpython_runner.py190 def _load_virtualenv_config(json_file_path: Path) -> tuple[str, str]:
191 with json_file_path.open() as json_fp:
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/
Dbokeh_figure.py356 json_file_path = output_file_path.replace(
358 figure._save_figure_json(json_file_path)
/aosp_15_r20/external/pytorch/benchmarks/dynamo/microbenchmarks/
H A Doperator_inp_utils.py240 def __init__(self, json_file_path): argument
243 with open(json_file_path) as f:
/aosp_15_r20/external/pytorch/test/profiler/
H A Dtest_profiler.py2131 json_file_path = os.path.join(
2190 with open(json_file_path, "w") as f:
2193 assert os.path.exists(json_file_path)
2194 with open(json_file_path) as f: