HomeSort by relevance Sort by last modified time
    Searched refs:paths (Results 201 - 225 of 1714) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/sonivox/arm-wt-22k/host_src/
arm-wt-22k.mak 5 # Set the paths to the tools (CC, AR, LD, etc.)
  /external/testng/src/test/java/test/thread/
ParallelSuiteTest.java 44 int expectedSuiteCount, Boolean randomizeSuites, List<String> paths) {
48 tng.setTestSuites(paths);
  /external/toolchain-utils/automation/clients/report/dejagnu/
main.py 18 def ExpandGlobExprList(paths):
19 """Returns an iterator that goes over expanded glob paths."""
20 return chain.from_iterable(map(glob.glob, paths))
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
util.py 128 paths = string.split(pathname, '/')
129 while '.' in paths:
130 paths.remove('.')
131 if not paths:
133 # On Windows, if paths is ['C:','folder','subfolder'] then
134 # os.path.join(*paths) will return 'C:folder\subfolder' which
137 if (len(paths) > 0 and paths[0].endswith(':') and
139 paths[0] += '\\'
140 return os.path.join(*paths)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
util.py 128 paths = string.split(pathname, '/')
129 while '.' in paths:
130 paths.remove('.')
131 if not paths:
133 # On Windows, if paths is ['C:','folder','subfolder'] then
134 # os.path.join(*paths) will return 'C:folder\subfolder' which
137 if (len(paths) > 0 and paths[0].endswith(':') and
139 paths[0] += '\\'
140 return os.path.join(*paths)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 128 paths = string.split(pathname, '/')
129 while '.' in paths:
130 paths.remove('.')
131 if not paths:
133 # On Windows, if paths is ['C:','folder','subfolder'] then
134 # os.path.join(*paths) will return 'C:folder\subfolder' which
137 if (len(paths) > 0 and paths[0].endswith(':') and
139 paths[0] += '\\'
140 return os.path.join(*paths)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 128 paths = string.split(pathname, '/')
129 while '.' in paths:
130 paths.remove('.')
131 if not paths:
133 # On Windows, if paths is ['C:','folder','subfolder'] then
134 # os.path.join(*paths) will return 'C:folder\subfolder' which
137 if (len(paths) > 0 and paths[0].endswith(':') and
139 paths[0] += '\\'
140 return os.path.join(*paths)
    [all...]
  /test/framework/harnesses/host_controller/build/
build_provider_test.py 64 def _CreateZip(self, name, *paths):
69 *paths: strings, the file paths to create in the zip file.
77 for path in paths:
  /external/python/cpython3/Lib/distutils/
_msvccompiler.py 108 def _find_exe(exe, paths=None):
112 MSVC program search paths from the registry; next, the directories
117 if not paths:
118 paths = os.getenv('path').split(os.pathsep)
119 for p in paths:
203 paths = self._paths.split(os.pathsep)
204 self.cc = _find_exe("cl.exe", paths)
205 self.linker = _find_exe("link.exe", paths)
206 self.lib = _find_exe("lib.exe", paths)
207 self.rc = _find_exe("rc.exe", paths) # resource compile
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DexManagerTests.java 578 List<String> paths = new ArrayList<>(); local
579 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary1.dex");
580 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary2.dex");
581 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary3.dex");
582 return paths;
586 List<String> paths = new ArrayList<>(); local
587 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary4.dex");
588 paths.add(mPackageInfo.applicationInfo.dataDir + "/secondary5.dex");
589 return paths;
593 List<String> paths = new ArrayList<>() local
600 List<String> paths = new ArrayList<>(); local
    [all...]
  /system/vold/
Ext4Crypt.cpp 148 const std::vector<std::string>& paths,
150 if (paths.empty()) {
156 if (paths[0] < candidate) {
167 const std::vector<std::string>& paths) {
168 for (auto const other_path: paths) {
186 auto const paths = get_ce_key_paths(directory_path); local
187 for (auto const ce_key_path: paths) {
191 fixate_user_ce_key(directory_path, ce_key_path, paths);
242 auto const paths = get_ce_key_paths(directory_path); local
244 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false
568 auto const paths = get_ce_key_paths(directory_path); local
580 auto const paths = get_ce_key_paths(directory_path); local
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
FieldMask.cs 33 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.FieldMask), global::Google.Protobuf.WellKnownTypes.FieldMask.Parser, new[]{ "Paths" }, null, null, null)
41 /// `FieldMask` represents a set of symbolic field paths, for example:
43 /// paths: "f.a"
44 /// paths: "f.b.d"
135 /// In JSON, a field mask is encoded as a single string where paths are
153 /// paths: "user.display_name"
154 /// paths: "photo"
178 /// paths: "name"
184 /// paths: "sub_message"
188 /// paths
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
tempnam.c 33 #include <paths.h>
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 37 #include <paths.h>
  /bionic/linker/
linker_utils.cpp 193 std::vector<std::string>* paths) {
195 *paths = android::base::Split(path, delimiters);
199 void resolve_paths(std::vector<std::string>& paths,
202 for (const auto& path : paths) {
203 // skip empty paths
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
tempnam.c 52 #include <paths.h>
  /external/autotest/server/cros/
debugd_dev_tools.py 275 def _save_files(self, paths):
284 @param paths: List of string paths to save.
286 for path in paths:
293 def _restore_files(self, paths):
304 @param paths: List of string paths to restore.
306 for path in paths:
415 PATHS = ('/etc/init/openssh-server.conf',
430 for path in self.PATHS
    [all...]
  /external/libdrm/freedreno/kgsl/
kgsl_pipe.c 215 static const char *paths[] = { local
226 fd = open(paths[id], O_RDWR);
229 paths[id], fd, strerror(errno));
264 INFO_MSG(" Device: %s", paths[id]);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
WindowsFakeFileSystemTest.groovy 183 * Return the specified paths concatenated with the system-dependent separator in between
188 private String path(String[] paths) {
189 return paths.join(SEP)
  /external/protobuf/src/google/protobuf/
field_mask.pb.h 100 // repeated string paths = 1;
104 const ::std::string& paths(int index) const;
113 const ::google::protobuf::RepeatedPtrField< ::std::string>& paths() const;
138 // repeated string paths = 1;
145 inline const ::std::string& FieldMask::paths(int index) const { function in class:google::protobuf::FieldMask
146 // @@protoc_insertion_point(field_get:google.protobuf.FieldMask.paths)
150 // @@protoc_insertion_point(field_mutable:google.protobuf.FieldMask.paths)
154 // @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
159 // @@protoc_insertion_point(field_set_char:google.protobuf.FieldMask.paths)
164 // @@protoc_insertion_point(field_set_pointer:google.protobuf.FieldMask.paths)
183 FieldMask::paths() const { function in class:google::protobuf::FieldMask
    [all...]
  /external/strace/tests/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /external/strace/tests-m32/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /external/strace/tests-mx32/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
CatmullRom.java 1 package aurelienribon.tweenengine.paths;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
gshadow.h 26 #include <paths.h>

Completed in 2423 milliseconds

1 2 3 4 5 6 7 891011>>