/external/webrtc/webrtc/build/ |
merge_libs.py | 49 sys.stderr.write('Usage: ' + argv[0] + ' <search_path> <output_lib>\n') 52 search_path = os.path.normpath(argv[1]) 55 if not os.path.exists(search_path): 56 sys.stderr.write('search_path does not exist: %s\n' % search_path) 76 cmd = ' '.join(['find', search_path, '-name "' + pattern + '"' + 81 cmd = ' '.join([cmd + output_lib] + FindFiles(search_path, pattern))
|
/external/python/cpython2/Lib/distutils/ |
spawn.py | 18 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 26 If 'search_path' is true (the default), the system's executable 38 _spawn_posix(cmd, search_path, dry_run=dry_run) 40 _spawn_nt(cmd, search_path, dry_run=dry_run) 42 _spawn_os2(cmd, search_path, dry_run=dry_run) 63 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 66 if search_path: 87 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): 89 if search_path: 116 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 25 If 'search_path' is true (the default), the system's executable 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 62 if search_path: 79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): 81 if search_path: 104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 25 If 'search_path' is true (the default), the system's executable 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 62 if search_path: 79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): 81 if search_path: 104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 25 If 'search_path' is true (the default), the system's executable 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 62 if search_path: 79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): 81 if search_path: 104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 25 If 'search_path' is true (the default), the system's executable 34 _spawn_posix(cmd, search_path, dry_run=dry_run) 36 _spawn_nt(cmd, search_path, dry_run=dry_run) 38 _spawn_os2(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 62 if search_path: 79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): 81 if search_path: 104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0) [all...] |
/prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/ |
file_finder.h | 28 // search_path() in turn. The first hit is returned, or an empty string if 33 // If a search_path() element is non-empty and not ending in a slash, then a 35 // empty string in search_path() means that the filename is tried as-is. 49 std::vector<std::string>& search_path() { return search_path_; } function in class:shaderc_util::FileFinder
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
spawn.py | 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
25 If 'search_path' is true (the default), the system's executable
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
62 if search_path:
79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0):
81 if search_path:
100 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0): [all...] |
/external/python/cpython3/Lib/distutils/ |
spawn.py | 16 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 24 If 'search_path' is true (the default), the system's executable 36 _spawn_posix(cmd, search_path, dry_run=dry_run) 38 _spawn_nt(cmd, search_path, dry_run=dry_run) 59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0): 62 if search_path: 88 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0): 93 exec_fn = search_path and os.execvp or os.execv 114 exec_fn = search_path and os.execvpe or os.execve
|
/external/v8/tools/clang/translation_unit/ |
TranslationUnitGenerator.cpp | 62 llvm::StringRef search_path, 68 string DoubleSlashSystemHeaders(const string& search_path, 145 llvm::StringRef search_path, 153 source_manager_->getFileManager().getDirectory(search_path); 178 } else if (!search_path.empty()) { 180 DoubleSlashSystemHeaders(search_path.str(), relative_path.str()); 188 const string& search_path, 191 // include statement is defined. Therefore if search_path is a system header 194 system_header_prefixes_.find(search_path) != 197 return search_path + (is_system_header ? "//" : "/") + relative_path [all...] |
/external/libxkbcommon/xkbcommon/test/ |
x11comp.c | 45 char *search_path, *search_path_arg, *xkb_path; local 111 search_path = test_get_path(""); 112 assert(search_path); 113 ret = asprintf(&search_path_arg, "-I%s", search_path); 119 free(search_path);
|
/bionic/tests/ |
dlext_private.h | 80 * the search_path is ld_library_path:default_library_path. Note that the 81 * permitted_when_isolated_path path is not part of the search_path and 85 * and search_path, and it is not part of the public namespace dlopen will fail.
|
/build/soong/python/scripts/ |
stub_template_host.txt | 17 search_path = os.getenv('PATH', os.defpath).split(os.pathsep) 18 for directory in search_path:
|
/hardware/nxp/secure_element/libese-spi/p73/utils/ |
ese_config.cpp | 34 const vector<string> search_path = {"/odm/etc/", "/vendor/etc/", "/etc/"}; local 37 for (string path : search_path) {
|
/system/nfc/src/adaptation/ |
nfc_config.cc | 32 const vector<string> search_path = {"/odm/etc/", "/vendor/etc/", local 36 for (string path : search_path) {
|
/external/dtc/ |
srcpos.c | 28 struct search_path { struct 29 struct search_path *next; /* next node in list, NULL for end */ 34 static struct search_path *search_path_head, **search_path_tail; 101 struct search_path *node; 185 struct search_path *node;
|
/system/core/libnativeloader/include/nativeloader/ |
dlext_namespaces.h | 80 * the search_path is ld_library_path:default_library_path. Note that the 81 * permitted_when_isolated_path path is not part of the search_path and 85 * and search_path, and it is not part of the public namespace dlopen will fail.
|
/external/clang/tools/scan-build-py/libear/ |
ear.c | 116 static int call_execvP(const char *file, const char *search_path, 193 int execvP(const char *file, const char *search_path, char *const argv[]) { 195 return call_execvP(file, search_path, argv); 333 static int call_execvP(const char *file, const char *search_path, 342 int const result = (*fp)(file, search_path, argv);
|
/hardware/intel/common/libva/va/ |
va.c | 201 char *search_path = NULL; local 207 search_path = getenv("LIBVA_DRIVERS_PATH"); 208 if (!search_path) 209 search_path = VA_DRIVERS_PATH; 211 search_path = strdup((const char *)search_path); 212 driver_dir = strtok_r(search_path, ":", &saveptr); 221 free(search_path); 359 free(search_path); [all...] |
/toolchain/binutils/binutils-2.27/gold/ |
gold.cc | 173 Dirsearch& search_path, 242 &search_path, 0, mapfile, &*p, NULL, 262 layout, &search_path, mapfile, 277 &search_path, mapfile, this_blocker, 320 Dirsearch* search_path, 371 return new Read_symbols(input_objects, symtab, layout, search_path, 401 search_path, 0, mapfile, input_argument, 412 return new Read_symbols(input_objects, symtab, layout, search_path, 0, 425 return new Add_symbols(input_objects, symtab, layout, search_path, 0,
|
main.cc | 243 Dirsearch search_path; local 244 search_path.initialize(&workqueue, &command_line.options().library_path()); 247 queue_initial_tasks(command_line.options(), search_path,
|
/external/protobuf/src/google/protobuf/compiler/ |
subprocess.cc | 123 if (CreateProcessA((search_mode == SEARCH_PATH) ? NULL : program.c_str(), 124 (search_mode == SEARCH_PATH) ? name_copy : NULL, 319 case SEARCH_PATH:
|
subprocess.h | 62 SEARCH_PATH, // Use PATH environment variable.
|
/external/autotest/client/tests/reaim/ |
osdl-aim-7.0.1.13.tar.gz | |
/external/tensorflow/tensorflow/examples/speech_commands/ |
input_data.py | 241 search_path = os.path.join(self.data_dir, '*', '*.wav') 242 for wav_path in gfile.Glob(search_path): 258 raise Exception('No .wavs found at ' + search_path) 318 search_path = os.path.join(self.data_dir, BACKGROUND_NOISE_DIR_NAME, 320 for wav_path in gfile.Glob(search_path): 326 raise Exception('No background wav files were found in ' + search_path)
|