/external/cronet/stable/build/3pp_common/ |
D | scripthash.py | 29 all_paths = _find_deps() + (extra_paths or []) 30 all_paths = [os.path.relpath(p, _SRC_ROOT) for p in all_paths] 31 all_paths.sort() 33 for path in all_paths: 36 logging.info('Script hash from: \n%s\n', '\n'.join(all_paths))
|
D | common.py | 103 all_paths = pathlib.Path(path).glob('**/*') 104 return [str(f) for f in all_paths if f.is_file()]
|
/external/cronet/tot/build/3pp_common/ |
D | scripthash.py | 29 all_paths = _find_deps() + (extra_paths or []) 30 all_paths = [os.path.relpath(p, _SRC_ROOT) for p in all_paths] 31 all_paths.sort() 33 for path in all_paths: 36 logging.info('Script hash from: \n%s\n', '\n'.join(all_paths))
|
D | common.py | 103 all_paths = pathlib.Path(path).glob('**/*') 104 return [str(f) for f in all_paths if f.is_file()]
|
/external/angle/build/3pp_common/ |
D | scripthash.py | 29 all_paths = _find_deps() + (extra_paths or []) 30 all_paths = [os.path.relpath(p, _SRC_ROOT) for p in all_paths] 31 all_paths.sort() 33 for path in all_paths: 36 logging.info('Script hash from: \n%s\n', '\n'.join(all_paths))
|
D | common.py | 103 all_paths = pathlib.Path(path).glob('**/*') 104 return [str(f) for f in all_paths if f.is_file()]
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | webview_app.py | 77 all_paths = device.GetApplicationPaths(package_name) 78 system_paths = _FilterPaths(all_paths, True) 79 non_system_paths = _FilterPaths(all_paths, False) 131 all_paths = device.GetApplicationPaths(package_name) 132 user_paths = _FilterPaths(all_paths, False)
|
/external/libbrillo/brillo/dbus/ |
D | exported_object_manager_test.cc | 158 dbus::MessageReader all_paths(nullptr); in TEST_F() local 159 ASSERT_TRUE(reader.PopArray(&all_paths)); in TEST_F() 172 dbus::MessageReader all_paths(nullptr); in TEST_F() local 176 ASSERT_TRUE(reader.PopArray(&all_paths)); in TEST_F() 177 ASSERT_TRUE(all_paths.PopDictEntry(&each_path)); in TEST_F() 188 EXPECT_FALSE(all_paths.HasMoreData()); in TEST_F()
|
/external/tensorflow/tensorflow/core/profiler/convert/ |
D | op_profile_builder.cc | 269 std::vector<Node*> all_paths = {root_}; in AddOp() local 273 all_paths.push_back(leaf); in AddOp() 278 all_paths.push_back(program->node); in AddOp() 282 all_paths.push_back(category->node); in AddOp() 288 all_paths.push_back(deduplicated_node); in AddOp() 292 all_paths.push_back(leaf); in AddOp() 295 for (auto* node : all_paths) { in AddOp()
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | source_in_build.py | 57 paths = source_filter.filter(ctx.all_paths) 104 paths = source_filter.filter(ctx.all_paths) 151 paths = source_filter.filter(ctx.all_paths) 195 paths = source_filter.filter(ctx.all_paths)
|
D | presubmit.py | 329 all_paths: Sequence[Path], 340 self._all_paths = tuple(all_paths) 500 all_paths=self._all_paths, 719 all_paths=all_files,
|
/external/tensorflow/tensorflow/core/graph/ |
D | collective_order.cc | 76 absl::flat_hash_map<Node*, absl::flat_hash_set<Node*>> all_paths; in CreateControlDependencies() local 106 auto& src_paths = all_paths[src_node]; in CreateControlDependencies() 108 for (Node* downstream_node : all_paths[dst_node]) { in CreateControlDependencies() 129 auto& n1_paths = all_paths[n1]; in CreateControlDependencies()
|
/external/tensorflow/tensorflow/python/ops/structured/ |
D | structured_array_ops.py | 523 all_paths = {()} 527 all_paths = all_paths.union([(k,) + p for p in _get_all_paths(v)]) 529 all_paths.add((k,)) 530 return all_paths
|
/external/cronet/tot/third_party/boringssl/src/include/openssl/pki/ |
D | verify.h | 59 bool all_paths); 146 bool all_paths);
|
/external/boringssl/src/include/openssl/pki/ |
D | verify.h | 59 bool all_paths); 146 bool all_paths);
|
/external/cronet/stable/third_party/boringssl/src/include/openssl/pki/ |
D | verify.h | 59 bool all_paths); 146 bool all_paths);
|
/external/mesa3d/ |
D | .gitlab-ci.yml | 214 changes: &all_paths
|
/external/cronet/stable/third_party/boringssl/src/pki/ |
D | verify.cc | 186 CertificateVerifyStatus *out_status, bool all_paths) { in CertificateVerifyInternal() argument 301 path_builder.SetExploreAllPaths(all_paths); in CertificateVerifyInternal() 314 if (!all_paths) { in CertificateVerifyInternal()
|
/external/cronet/tot/third_party/boringssl/src/pki/ |
D | verify.cc | 186 CertificateVerifyStatus *out_status, bool all_paths) { in CertificateVerifyInternal() argument 301 path_builder.SetExploreAllPaths(all_paths); in CertificateVerifyInternal() 314 if (!all_paths) { in CertificateVerifyInternal()
|
/external/bazelbuild-rules_python/examples/bzlmod/ |
D | test.py | 53 all_paths = ",\n ".join(sys.path)
|
/external/tensorflow/tensorflow/python/checkpoint/ |
D | checkpoint_management.py | 662 all_paths = recovered_state.all_model_checkpoint_paths 665 all_timestamps = [self._last_preserved_timestamp] * len(all_paths) 667 for filename, timestamp in zip(all_paths, all_timestamps):
|
/external/tensorflow/ |
D | configure.py | 167 all_paths = set(python_paths + library_paths) 169 all_paths = sorted(all_paths) 172 for path in all_paths:
|
/external/pytorch/test/package/ |
D | test_digraph.py | 117 result = g.all_paths("1", "3")
|
/external/pytorch/torch/package/ |
D | _digraph.py | 119 def all_paths(self, src: str, dst: str): member in DiGraph
|
/external/tensorflow/third_party/py/ |
D | python_configure.bzl | 110 "all_paths = set(python_paths + library_paths)", 112 "for path in all_paths:",
|