Home
last modified time | relevance | path

Searched refs:search_path (Results 1 – 25 of 35) sorted by relevance

12

/external/python/cpython2/Lib/distutils/
Dspawn.py18 def spawn(cmd, search_path=1, verbose=0, dry_run=0): argument
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): argument
66 if search_path:
87 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0): argument
89 if search_path:
116 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0): argument
121 exec_fn = search_path and os.execvp or os.execv
[all …]
Dcmd.py383 def spawn (self, cmd, search_path=1, level=1): argument
386 spawn(cmd, search_path, dry_run= self.dry_run)
/external/python/cpython3/Lib/distutils/
Dspawn.py16 def spawn(cmd, search_path=1, verbose=0, dry_run=0): argument
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): argument
62 if search_path:
88 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0): argument
93 exec_fn = search_path and os.execvp or os.execv
114 exec_fn = search_path and os.execvpe or os.execve
Dcmd.py362 def spawn(self, cmd, search_path=1, level=1): argument
365 spawn(cmd, search_path, dry_run=self.dry_run)
/external/webrtc/webrtc/build/
Dmerge_libs.py52 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/v8/tools/clang/translation_unit/
DTranslationUnitGenerator.cpp65 llvm::StringRef search_path,
73 string DoubleSlashSystemHeaders(const string& search_path,
150 llvm::StringRef search_path, in InclusionDirective() argument
160 source_manager_->getFileManager().getDirectory(search_path); in InclusionDirective()
185 } else if (!search_path.empty()) { in InclusionDirective()
187 DoubleSlashSystemHeaders(search_path.str(), relative_path.str()); in InclusionDirective()
195 const string& search_path, in DoubleSlashSystemHeaders() argument
201 system_header_prefixes_.find(search_path) != in DoubleSlashSystemHeaders()
204 return search_path + (is_system_header ? "//" : "/") + relative_path; in DoubleSlashSystemHeaders()
/external/libxkbcommon/xkbcommon/test/
Dx11comp.c45 char *search_path, *search_path_arg, *xkb_path; in main() local
111 search_path = test_get_path(""); in main()
112 assert(search_path); in main()
113 ret = asprintf(&search_path_arg, "-I%s", search_path); in main()
119 free(search_path); in main()
/external/vulkan-validation-layers/layers/
Dvk_layer_config.cpp228 std::string search_path = getEnvironment("XDG_DATA_HOME"); in FindSettings() local
229 if (search_path == "") { in FindSettings()
230 search_path = getEnvironment("HOME"); in FindSettings()
231 if (search_path != "") { in FindSettings()
232 search_path += "/.local/share"; in FindSettings()
237 if (search_path != "") { in FindSettings()
238 std::string home_file = search_path + "/vulkan/settings.d/vk_layer_settings.txt"; in FindSettings()
/external/dtc/
Dsrcpos.c28 struct search_path { struct
29 struct search_path *next; /* next node in list, NULL for end */ argument
34 static struct search_path *search_path_head, **search_path_tail; argument
101 struct search_path *node; in fopen_any_on_path()
185 struct search_path *node; in srcfile_add_search_path()
/external/u-boot/scripts/dtc/
Dsrcpos.c28 struct search_path { struct
29 struct search_path *next; /* next node in list, NULL for end */ argument
34 static struct search_path *search_path_head, **search_path_tail; argument
101 struct search_path *node; in fopen_any_on_path()
185 struct search_path *node; in srcfile_add_search_path()
/external/python/cpython3/PC/layout/support/
Dpip.py41 search_path = os.pathsep.join(wheels)
43 search_path += ";" + os.environ["PYTHONPATH"]
46 env["PYTHONPATH"] = search_path
/external/python/setuptools/pkg_resources/extern/
D__init__.py16 def search_path(self): member in VendorImporter
40 for prefix in self.search_path:
/external/python/setuptools/setuptools/extern/
D__init__.py16 def search_path(self): member in VendorImporter
40 for prefix in self.search_path:
/external/tensorflow/tensorflow/examples/speech_commands/
Dinput_data.py279 search_path = os.path.join(self.data_dir, '*', '*.wav')
280 for wav_path in gfile.Glob(search_path):
296 raise Exception('No .wavs found at ' + search_path)
356 search_path = os.path.join(self.data_dir, BACKGROUND_NOISE_DIR_NAME,
358 for wav_path in gfile.Glob(search_path):
364 raise Exception('No background wav files were found in ' + search_path)
/external/clang/tools/scan-build-py/libear/
Dear.c116 static int call_execvP(const char *file, const char *search_path,
193 int execvP(const char *file, const char *search_path, char *const argv[]) { in execvP() argument
195 return call_execvP(file, search_path, argv); in execvP()
333 static int call_execvP(const char *file, const char *search_path, in call_execvP() argument
342 int const result = (*fp)(file, search_path, argv); in call_execvP()
/external/libbrillo/brillo/
Dprocess.h117 virtual void SetSearchPath(bool search_path) = 0;
184 virtual void SetSearchPath(bool search_path);
Dprocess.cc132 void ProcessImpl::SetSearchPath(bool search_path) { in SetSearchPath() argument
133 search_path_ = search_path; in SetSearchPath()
/external/python/cpython3/Lib/
Dpyclbr.py159 search_path = path
161 search_path = path + sys.path
162 spec = importlib.util._find_spec_from_path(fullmodule, search_path)
Dpkgutil.py548 search_path = sys.modules[parent_package].__path__
554 search_path = sys.path
556 for dir in search_path:
/external/autotest/client/cros/faft/utils/
Dfirmware_updater.py232 search_path = os.path.join(
235 'grep IMAGE_MAIN= %s' % search_path)
241 'grep IMAGE_EC= %s' % search_path)
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dcloud_storage.py109 for search_path in search_paths:
110 executable_path = os.path.join(search_path, relative_executable_path)
/external/mksh/src/
Dexec.c890 sh = search_path(sh, path, X_OK, NULL); in scriptexec()
971 if (mksh_vdirsep(sh) && !search_path(sh, path, X_OK, NULL)) { in scriptexec()
972 cp = search_path(_getname(sh), path, X_OK, NULL); in scriptexec()
1203 tp->u.fpath = search_path(name, fpath, R_OK, in findcom()
1235 npath.ro = search_path(name, in findcom()
1245 (npath.ro = search_path(name, fpath, R_OK, in findcom()
1322 search_path(const char *name, const char *lpath, in search_path() function
/external/tensorflow/
Dconfigure.py1034 def find_libs(search_path): argument
1037 if os.path.exists(search_path) and os.path.isdir(search_path):
1039 os.path.realpath(os.path.join(search_path, x))
1040 for x in os.listdir(search_path)
/external/google-breakpad/src/client/windows/unittests/
Dexception_handler_death_test.cc287 wstring search_path = directory + L"\\*"; in find_minidump_in_directory() local
289 HANDLE find_handle = FindFirstFileW(search_path.c_str(), &find_data); in find_minidump_in_directory()
/external/grpc-grpc/src/compiler/
Dcpp_generator.cc67 bool use_system_headers, const grpc::string& search_path) { in PrintIncludes() argument
73 if (!search_path.empty()) { in PrintIncludes()
74 vars["l"] += search_path; in PrintIncludes()
75 if (search_path[search_path.size() - 1] != '/') { in PrintIncludes()

12