Searched refs:paths (Results 1 - 25 of 411) sorted by relevance

1234567891011>>

/external/jsoncpp/test/
H A Dcleantests.py5 paths = [] variable
7 paths += glob.glob( 'data/' + pattern )
9 for path in paths:
/external/flatbuffers/
H A Dbiicode.conf2 [paths]
/external/tinyxml2/
H A Dbiicode.conf3 [paths]
/external/perf_data_converter/src/
H A Dperf_data_handler_test.cc17 const std::vector<string> paths = { local
24 for (const auto& path : paths) {
30 const std::vector<string> paths = { local
39 for (const auto& path : paths) {
45 const std::vector<string> paths = { local
48 for (const auto& path : paths) {
54 const std::vector<string> paths = { local
57 for (const auto& path : paths) {
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DTweenPaths.java3 import aurelienribon.tweenengine.paths.CatmullRom;
4 import aurelienribon.tweenengine.paths.Linear;
7 * Collection of built-in paths.
/external/autotest/client/common_lib/brillo/
H A Dhal_utils.py27 paths = []
29 paths.append('/system/lib64/hw')
31 paths.append('/system/lib/hw')
32 for path in paths:
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
H A Dgc.py87 A filter function that keeps the n largest paths.
89 def keep(paths):
91 for idx, path in enumerate(paths):
94 keepers = [paths[i] for _, i in heapq.nlargest(n, heap)]
111 def keep(paths):
112 """A filter function that keeps exactly one out of every n paths."""
115 for p in paths:
138 A filter function that keeps paths where export_version % n == 0.
140 def keep(paths):
142 for p in paths
[all...]
/external/tensorflow/tensorflow/contrib/session_bundle/
H A Dgc.py88 A filter function that keeps the n largest paths.
90 def keep(paths):
92 for idx, path in enumerate(paths):
95 keepers = [paths[i] for _, i in heapq.nlargest(n, heap)]
114 def keep(paths):
116 for p in paths:
141 A filter function that keeps paths where export_version % n == 0.
143 def keep(paths):
145 for p in paths:
162 A filter function that keeps the n largest paths
[all...]
H A Dgc_test.py35 paths = [gc.Path("/foo", 8), gc.Path("/foo", 9), gc.Path("/foo", 10)]
37 n = newest(paths)
41 paths = [gc.Path("/foo", 0), gc.Path("/foo", 3)]
43 n = newest(paths)
47 paths = [
52 self.assertEquals(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 6)])
54 self.assertEquals(mod(paths), [gc.Path("/foo", 6), gc.Path("/foo", 9)])
57 paths = [
64 one_of(paths), [
72 paths
[all...]
/external/tensorflow/tensorflow/python/estimator/
H A Dgc.py87 A filter function that keeps the n largest paths.
89 def keep(paths):
91 for idx, path in enumerate(paths):
94 keepers = [paths[i] for _, i in heapq.nlargest(n, heap)]
111 def keep(paths):
112 """A filter function that keeps exactly one out of every n paths."""
115 for p in paths:
138 A filter function that keeps paths where export_version % n == 0.
140 def keep(paths):
142 for p in paths
[all...]
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DPath.cpp46 SmallVector<StringRef, 40> paths; local
47 paths.push_back("");
48 paths.push_back(".");
49 paths.push_back("..");
50 paths.push_back("foo");
51 paths.push_back("/");
52 paths.push_back("/foo");
53 paths.push_back("foo/");
54 paths.push_back("/foo/");
55 paths
[all...]
/external/chromium-trace/catapult/devil/devil/android/
H A Dmd5sum.py19 def CalculateHostMd5Sums(paths):
20 """Calculates the MD5 sum value for all items in |paths|.
26 paths: A list of host paths to md5sum.
28 A dict mapping file paths to their respective md5sum checksums.
30 if isinstance(paths, basestring):
31 paths = [paths]
37 [md5sum_bin_host_path] + [os.path.realpath(p) for p in paths])
42 def CalculateDeviceMd5Sums(paths, devic
[all...]
/external/libmojo/third_party/catapult/devil/devil/android/
H A Dmd5sum.py19 def CalculateHostMd5Sums(paths):
20 """Calculates the MD5 sum value for all items in |paths|.
26 paths: A list of host paths to md5sum.
28 A dict mapping file paths to their respective md5sum checksums.
30 if isinstance(paths, basestring):
31 paths = [paths]
37 [md5sum_bin_host_path] + [os.path.realpath(p) for p in paths])
42 def CalculateDeviceMd5Sums(paths, devic
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Dfield_mask_utility.cc113 util::Status DecodeCompactFieldMaskPaths(StringPiece paths, argument
116 int length = paths.length();
131 if (paths[i] == '\\') {
135 if (paths[i] != '\"') {
139 if (i >= length - 1 || paths[i + 1] != ']') {
142 StrCat("Invalid FieldMask '", paths,
150 if (i < length - 1 && paths[i + 1] != '.' && paths[i + 1] != ',' &&
151 paths[i + 1] != ')' && paths[
[all...]
/external/perfetto/include/perfetto/traced/
H A Ddata_source_types.h39 std::set<std::string> paths)
40 : entry_type_(entry_type), paths_(std::move(paths)) {}
45 const std::set<std::string>& paths() const { return paths_; } function in class:perfetto::InodeMapValue
49 void SetPaths(std::set<std::string> paths) { paths_ = std::move(paths); } argument
53 return type() == rhs.type() && paths() == rhs.paths();
38 InodeMapValue(protos::pbzero::InodeFileMap_Entry_Type entry_type, std::set<std::string> paths) argument
/external/python/cpython2/Tools/scripts/
H A Dwin_add2path.py36 paths = [envpath]
39 paths.append(path)
41 envpath = os.pathsep.join(paths)
43 return paths, envpath
46 paths, envpath = modify()
47 if len(paths) > 1:
49 print '\n'.join(paths[1:])
/external/python/cpython3/Tools/scripts/
H A Dwin_add2path.py37 paths = [envpath]
40 paths.append(path)
42 envpath = os.pathsep.join(paths)
44 return paths, envpath
47 paths, envpath = modify()
48 if len(paths) > 1:
50 print('\n'.join(paths[1:]))
/external/selinux/python/sepolgen/src/sepolgen/
H A Ddefaults.py44 paths = self.config.get(pathset, None)
45 if paths is None:
47 paths = paths.split(":")
48 for p in paths:
51 return os.path.join(paths[0], testfilename)
/external/tensorflow/tensorflow/python/keras/_impl/keras/datasets/
H A Dfashion_mnist.py42 paths = []
44 paths.append(get_file(fname, origin=base + fname, cache_subdir=dirname))
46 with gzip.open(paths[0], 'rb') as lbpath:
49 with gzip.open(paths[1], 'rb') as imgpath:
53 with gzip.open(paths[2], 'rb') as lbpath:
56 with gzip.open(paths[3], 'rb') as imgpath:
/external/webrtc/webrtc/base/
H A Diosfilesystem.mm37 NSArray* paths = NSSearchPathForDirectoriesInDomains(
39 ASSERT([paths count] == 1);
40 return copyString([paths objectAtIndex:0]);
/external/skia/gm/
H A Dpathmaskcache.cpp72 SkTArray<SkPath> paths; variable
73 paths.push_back();
74 paths.back().moveTo(0.f, 0.f);
75 paths.back().lineTo(98.f, 100.f);
76 paths.back().lineTo(100.f, 100.f);
77 paths.back().conicTo(150.f, 50.f, 100.f, 0.f, 0.6f);
78 paths.back().conicTo(148.f, 50.f, 100.f, 100.f, 0.6f);
79 paths.back().conicTo(50.f, 30.f, 0.f, 100.f, 0.9f);
81 paths.push_back();
82 paths
[all...]
/external/skqp/gm/
H A Dpathmaskcache.cpp72 SkTArray<SkPath> paths; variable
73 paths.push_back();
74 paths.back().moveTo(0.f, 0.f);
75 paths.back().lineTo(98.f, 100.f);
76 paths.back().lineTo(100.f, 100.f);
77 paths.back().conicTo(150.f, 50.f, 100.f, 0.f, 0.6f);
78 paths.back().conicTo(148.f, 50.f, 100.f, 100.f, 0.6f);
79 paths.back().conicTo(50.f, 30.f, 0.f, 100.f, 0.9f);
81 paths.push_back();
82 paths
[all...]
/external/webrtc/talk/build/
H A Dmerge_ios_libs67 for library, paths in libs.items():
68 if len(paths) < len(archs):
69 orphaned_libs[library] = paths
71 valid_libs[library] = paths
72 for library, paths in orphaned_libs.items():
79 valid_libs[parent_library].extend(paths)
89 valid_paths.extend(paths)
107 for library, paths in valid_libs.items():
109 os.path.join(output_dir_path, library)] + paths
/external/perf_data_converter/src/quipper/
H A Dscoped_temp_path_test.cc18 // For testing the creation of multiple temp paths.
28 // Temporary paths use this prefix by default. Copied from scoped_temp_path.cc.
101 std::vector<string> paths(kNumMultiplePaths);
105 paths[i] = temp_files[i].path();
106 EXPECT_TRUE(PathExists(paths[i])) << paths[i];
110 EXPECT_FALSE(PathExists(paths[i])) << paths[i];
149 std::vector<string> paths(kNumMultiplePaths);
153 paths[
[all...]
/external/autotest/client/site_tests/security_StatefulPermissions/
H A Dsecurity_StatefulPermissions.py14 Report all unexpected writable paths in the /mnt/stateful_partition
94 """Returns a list of paths that are only present on test images
97 paths = []
100 paths.append("/unencrypted/preserve/log")
103 paths.append("/encrypted/var/cache/edb")
104 paths.append("/encrypted/var/lib/gentoo")
105 paths.append("/encrypted/var/log/portage")
108 paths.append("/dev_image")
109 paths.append("/var_overlay")
111 return paths
[all...]

Completed in 822 milliseconds

1234567891011>>