/external/u-boot/tools/dtoc/ |
fdt_util.py | 64 search_paths = [os.path.join(os.getcwd(), 'include')] 68 for path in search_paths: 75 for path in search_paths:
|
/bionic/linker/ |
linker_config.h | 87 const std::vector<std::string>& search_paths() const { function in class:NamespaceConfig 116 void set_search_paths(std::vector<std::string>&& search_paths) { 117 search_paths_ = std::move(search_paths);
|
linker_config_test.cpp | 160 ASSERT_EQ(kExpectedDefaultSearchPath, default_ns_config->search_paths()); 200 ASSERT_EQ(kExpectedSystemSearchPath, ns_system->search_paths()); 207 ASSERT_EQ(kExpectedVndkSearchPath, ns_vndk->search_paths());
|
linker.cpp | [all...] |
/external/libcxx/utils/ |
merge_archives.py | 32 def find_and_diagnose_missing(lib, search_paths): 38 for sp in search_paths: 93 '-L', dest='search_paths', 114 archives = [find_and_diagnose_missing(ar, args.search_paths)
|
/external/mesa3d/src/gbm/backends/dri/ |
gbm_dri.c | 308 char path[PATH_MAX], *search_paths, *p, *next, *end; local 311 search_paths = NULL; 317 search_paths = getenv("GBM_DRIVERS_PATH"); 322 if (search_paths == NULL) { 323 search_paths = getenv("LIBGL_DRIVERS_PATH"); 326 if (search_paths == NULL) 327 search_paths = DEFAULT_DRIVER_DIR; 338 end = search_paths + strlen(search_paths); 339 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) [all...] |
/external/mesa3d/src/egl/drivers/dri2/ |
egl_dri2.c | 509 char path[PATH_MAX], *search_paths, *next, *end; local 513 search_paths = NULL; 516 search_paths = getenv("LIBGL_DRIVERS_PATH"); 518 if (search_paths == NULL) 519 search_paths = DEFAULT_DRIVER_DIR; 522 end = search_paths + strlen(search_paths); 523 for (char *p = search_paths; p < end; p = next + 1) { 550 dri2_dpy->driver_name, search_paths); [all...] |
/external/v8/tools/ |
v8_presubmit.py | 178 search_paths = [('' if p == '.' else p) for p in self.GetPathsToSearch()] 186 any(map(f.LocalPath().startswith, search_paths)))
|
/external/dtc/tests/ |
run_tests.sh | 600 run_wrap_error_test $DTC -I dts -O dtb -o search_paths.dtb search_paths.dts 601 run_dtc_test -i search_dir -I dts -O dtb -o search_paths.dtb \ 602 search_paths.dts
|
/external/libcxx/utils/libcxx/test/ |
config.py | 218 search_paths = self.config.environment['PATH'] 220 search_paths = os.path.dirname(cxx) 221 clangxx = libcxx.util.which('clang++', search_paths) [all...] |
/development/vndk/tools/definition-tool/ |
vndk_definition_tool.py | [all...] |