Home
last modified time | relevance | path

Searched refs:root_path (Results 1 – 25 of 127) sorted by relevance

123456

/external/flatbuffers/scripts/
Dcheck_generate_code.py27 root_path = script_path.parent.absolute() variable
29 result = subprocess.run(["git", "diff", "--quiet", "--ignore-cr-at-eol"], cwd=root_path)
40 subprocess.run(["git", "diff", "--binary", "--exit-code"], cwd=root_path)
47 subprocess.run(gen_cmd, cwd=root_path)
49 result = subprocess.run(["git", "diff", "--quiet", "--ignore-cr-at-eol"], cwd=root_path)
60 subprocess.run(["git", "diff", "--binary", "--exit-code"], cwd=root_path)
Dutil.py43 root_path = script_path.parent.absolute() variable
44 tests_path = Path(root_path, "tests")
55 if root_path in flatc_exe.parents:
56 flatc_exe = flatc_exe.relative_to(root_path)
57 flatc_path = Path(root_path, flatc_exe)
Dcheck-grpc-generated-code.py27 root_path = script_path.parent.absolute() variable
32 result = subprocess.run(["git", "diff", "--quiet", "--ignore-cr-at-eol"], cwd=root_path)
44 subprocess.run(["git", "diff", "--binary", "--exit-code"], cwd=root_path)
/external/cronet/tot/base/files/
Dfile_enumerator_win.cc22 const FilePath& root_path, in BuildSearchFilter() argument
28 return root_path.Append(pattern); in BuildSearchFilter()
30 return root_path.Append(FILE_PATH_LITERAL("*")); in BuildSearchFilter()
66 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
69 : FileEnumerator(root_path, in FileEnumerator()
75 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
79 : FileEnumerator(root_path, in FileEnumerator()
85 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
90 : FileEnumerator(root_path, in FileEnumerator()
97 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
[all …]
Dfile_enumerator_posix.cc99 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
102 : FileEnumerator(root_path, in FileEnumerator()
108 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
112 : FileEnumerator(root_path, in FileEnumerator()
118 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
123 : FileEnumerator(root_path, in FileEnumerator()
130 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
137 root_path_(root_path), in FileEnumerator()
148 if (root_path.IsContentUri()) { in FileEnumerator()
152 internal::ContentUriGetFileInfo(root_path, &root_info); in FileEnumerator()
[all …]
/external/cronet/stable/base/files/
Dfile_enumerator_win.cc22 const FilePath& root_path, in BuildSearchFilter() argument
28 return root_path.Append(pattern); in BuildSearchFilter()
30 return root_path.Append(FILE_PATH_LITERAL("*")); in BuildSearchFilter()
66 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
69 : FileEnumerator(root_path, in FileEnumerator()
75 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
79 : FileEnumerator(root_path, in FileEnumerator()
85 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
90 : FileEnumerator(root_path, in FileEnumerator()
97 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
[all …]
Dfile_enumerator_posix.cc99 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
102 : FileEnumerator(root_path, in FileEnumerator()
108 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
112 : FileEnumerator(root_path, in FileEnumerator()
118 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
123 : FileEnumerator(root_path, in FileEnumerator()
130 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
137 root_path_(root_path), in FileEnumerator()
148 if (root_path.IsContentUri()) { in FileEnumerator()
152 internal::ContentUriGetFileInfo(root_path, &root_info); in FileEnumerator()
[all …]
Dfile_enumerator.h181 FileEnumerator(const FilePath& root_path, bool recursive, int file_type);
182 FileEnumerator(const FilePath& root_path,
186 FileEnumerator(const FilePath& root_path,
191 FileEnumerator(const FilePath& root_path,
/external/libchrome/base/files/
Dfile_enumerator_posix.cc59 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
62 : FileEnumerator(root_path, in FileEnumerator()
68 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
72 : FileEnumerator(root_path, in FileEnumerator()
78 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
84 root_path_(root_path), in FileEnumerator()
92 pending_paths_.push(root_path); in FileEnumerator()
Dfile_enumerator.h115 FileEnumerator(const FilePath& root_path,
118 FileEnumerator(const FilePath& root_path,
122 FileEnumerator(const FilePath& root_path,
/external/flatbuffers/tests/annotated_binary/
Dgenerate_annotations.py26 root_path = script_path.parent.parent.absolute() variable
35 if root_path in flatc_exe.parents:
36 flatc_exe = flatc_exe.relative_to(root_path)
37 flatc_path = Path(root_path, flatc_exe)
/external/icu/icu4c/source/test/depstest/
Ddepstest.py57 def _ReadObjFile(root_path, library_name, obj_name): argument
66 path = os.path.join(root_path, library_name, obj_name)
99 def _ReadLibrary(root_path, library_name): argument
100 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
102 _ReadObjFile(root_path, library_name, os.path.basename(path))
192 def Process(root_path): argument
208 _ReadLibrary(root_path, library_name)
/external/cronet/stable/third_party/icu/source/test/depstest/
Ddepstest.py57 def _ReadObjFile(root_path, library_name, obj_name): argument
66 path = os.path.join(root_path, library_name, obj_name)
99 def _ReadLibrary(root_path, library_name): argument
100 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
102 _ReadObjFile(root_path, library_name, os.path.basename(path))
175 def Process(root_path): argument
191 _ReadLibrary(root_path, library_name)
/external/cronet/tot/third_party/icu/source/test/depstest/
Ddepstest.py57 def _ReadObjFile(root_path, library_name, obj_name): argument
66 path = os.path.join(root_path, library_name, obj_name)
99 def _ReadLibrary(root_path, library_name): argument
100 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
102 _ReadObjFile(root_path, library_name, os.path.basename(path))
175 def Process(root_path): argument
191 _ReadLibrary(root_path, library_name)
/external/flatbuffers/tests/flatc/
Dflatc_test.py32 root_path = script_path.parent.parent.absolute() variable
43 if root_path in flatc_exe.parents:
44 flatc_exe = flatc_exe.relative_to(root_path)
45 flatc_path = Path(root_path, flatc_exe)
55 return Path(root_path).joinpath("reflection", "reflection.fbs")
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/abseil-cpp/
Dpreprocessed_builds.yaml.gen.py85 def collect_bazel_rules(root_path): argument
88 for cur, _, _ in os.walk(root_path):
135 def collect_cmake_rules(root_path): argument
138 for cur, _, _ in os.walk(root_path):
176 def generate_builds(root_path): argument
180 collect_bazel_rules(root_path)))
183 collect_cmake_rules(root_path)))
/external/grpc-grpc/src/abseil-cpp/
Dpreprocessed_builds.yaml.gen.py92 def collect_bazel_rules(root_path): argument
95 for cur, _, _ in os.walk(root_path):
144 def collect_cmake_rules(root_path): argument
147 for cur, _, _ in os.walk(root_path):
187 def generate_builds(root_path): argument
192 collect_bazel_rules(root_path),
198 collect_cmake_rules(root_path),
/external/flatbuffers/tests/ts/
DTypeScriptTest.py28 root_path = tests_path.parent.parent.absolute() variable
37 if root_path in flatc_exe.parents:
38 flatc_exe = flatc_exe.relative_to(root_path)
39 flatc_path = Path(root_path, flatc_exe)
/external/pytorch/benchmarks/dynamo/ci_expected_accuracy/
Dupdate_expected.py123 def write_filtered_csvs(root_path, dataframes): argument
125 out_fn = os.path.join(root_path, f"{suite}_{phase}.csv")
174 root_path = "benchmarks/dynamo/ci_expected_accuracy/" variable
175 assert os.path.exists(root_path), f"cd <pytorch root> and ensure {root_path} exists"
180 write_filtered_csvs(root_path, dataframes)
/external/selinux/policycoreutils/sestatus/
Dsestatus.c185 char *context, *root_path; in main() local
262 root_path = strdup(root_dir); in main()
263 if (!root_path) { in main()
268 root_path[strlen(root_path) - 1] = '\0'; in main()
269 printf("%s\n", root_path); in main()
270 free(root_path); in main()
/external/pigweed/pw_build/py/
Dzip_test.py50 root_path = pathlib.Path(parent_path / dir_name)
51 os.mkdir(root_path)
57 if not (root_path / directory).is_dir():
58 os.mkdir(root_path / directory)
61 touch(root_path, filename)
62 return root_path
/external/google-breakpad/src/tools/windows/dump_syms/
Ddump_syms_unittest.cc207 std::wstring root_path = testdata_dir + L"\\" + root_name; in TEST_P() local
209 std::wstring sym_path = root_path + L".sym"; in TEST_P()
213 std::wstring pdb_path = root_path + L".pdb"; in TEST_P()
227 std::wstring root_path = testdata_dir + L"\\" + root_name; in TEST_P() local
229 std::wstring sym_path = root_path + L".sym"; in TEST_P()
233 std::wstring dll_path = root_path + L".dll"; in TEST_P()
/external/cronet/tot/net/base/
Ddirectory_lister_unittest.cc167 const base::FilePath& root_path() const { return temp_root_dir_.GetPath(); } in root_path() function in net::DirectoryListerTest
192 DirectoryLister lister(root_path(), &delegate); in TEST_F()
202 DirectoryLister lister(root_path(), DirectoryLister::NO_SORT_RECURSIVE, in TEST_F()
232 auto lister = std::make_unique<DirectoryLister>(root_path(), &delegate); in TEST_F()
243 DirectoryLister lister(root_path(), &delegate); in TEST_F()
253 DirectoryLister lister(root_path(), &delegate); in TEST_F()
/external/cronet/stable/net/base/
Ddirectory_lister_unittest.cc167 const base::FilePath& root_path() const { return temp_root_dir_.GetPath(); } in root_path() function in net::DirectoryListerTest
192 DirectoryLister lister(root_path(), &delegate); in TEST_F()
202 DirectoryLister lister(root_path(), DirectoryLister::NO_SORT_RECURSIVE, in TEST_F()
232 auto lister = std::make_unique<DirectoryLister>(root_path(), &delegate); in TEST_F()
243 DirectoryLister lister(root_path(), &delegate); in TEST_F()
253 DirectoryLister lister(root_path(), &delegate); in TEST_F()
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/
Dpath.decompose.pass.cpp69 std::string root_path; member
128 ASSERT_EQ(p.root_path(), TC.root_path); in decompPathTest()
129 ASSERT_NEQ(p.has_root_path(), TC.root_path.empty()); in decompPathTest()

123456