/external/chromium_org/gin/test/ |
file_runner.cc | 23 std::vector<base::FilePath> search_paths(2); 24 PathService::Get(base::DIR_SOURCE_ROOT, &search_paths[0]); 25 PathService::Get(base::DIR_EXE, &search_paths[1]); 26 search_paths[1] = search_paths[1].AppendASCII("gen"); 27 return search_paths;
|
/external/chromium_org/mojo/apps/js/ |
mojo_runner_delegate.cc | 26 std::vector<base::FilePath> search_paths(2); 27 PathService::Get(base::DIR_SOURCE_ROOT, &search_paths[0]); 28 PathService::Get(base::DIR_EXE, &search_paths[1]); 29 search_paths[1] = search_paths[1].AppendASCII("gen"); 30 return search_paths;
|
/external/chromium_org/gin/modules/ |
file_module_provider.cc | 18 const std::vector<base::FilePath>& search_paths, 34 for (size_t i = 0; i < search_paths.size(); ++i) { 36 if (!ReadFileToString(search_paths[i].Append(path), &source)) 51 const std::vector<base::FilePath>& search_paths) 52 : search_paths_(search_paths) {
|
file_module_provider.h | 19 // modules in the directories indiciated by |search_paths|. Although we still 25 const std::vector<base::FilePath>& search_paths);
|
module_runner_delegate.cc | 12 const std::vector<base::FilePath>& search_paths) 13 : module_provider_(search_paths) {
|
module_runner_delegate.h | 26 const std::vector<base::FilePath>& search_paths);
|
/external/chromium/chrome/browser/ |
shell_integration_linux.cc | 299 std::vector<FilePath> search_paths; local 304 search_paths.push_back(FilePath(xdg_data_home)); 313 search_paths.push_back(data_dir); 314 search_paths.push_back(data_dir.Append("applications")); 320 search_paths.push_back(FilePath("/usr/share/applications")); 321 search_paths.push_back(FilePath("/usr/local/share/applications")); 324 for (std::vector<FilePath>::const_iterator i = search_paths.begin(); 325 i != search_paths.end(); ++i) {
|
/external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/ |
gbm_dri.c | 173 char path[PATH_MAX], *search_paths, *p, *next, *end; local 175 search_paths = NULL; 178 search_paths = getenv("GBM_DRIVERS_PATH"); 180 if (search_paths == NULL) 181 search_paths = DEFAULT_DRIVER_DIR; 184 end = search_paths + strlen(search_paths); 185 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) { 208 search_paths);
|
/external/mesa3d/src/gbm/backends/dri/ |
gbm_dri.c | 173 char path[PATH_MAX], *search_paths, *p, *next, *end; local 175 search_paths = NULL; 178 search_paths = getenv("GBM_DRIVERS_PATH"); 180 if (search_paths == NULL) 181 search_paths = DEFAULT_DRIVER_DIR; 184 end = search_paths + strlen(search_paths); 185 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) { 208 search_paths);
|
/external/chromium_org/chrome/browser/ |
shell_integration_linux.cc | 530 std::vector<base::FilePath> search_paths; local 534 search_paths.push_back(write_location); 541 search_paths.push_back(data_dir); 544 search_paths.push_back(base::FilePath("/usr/local/share")); 545 search_paths.push_back(base::FilePath("/usr/share")); 548 return search_paths; 634 std::vector<base::FilePath> search_paths = GetDataSearchLocations(env); local 636 for (std::vector<base::FilePath>::const_iterator i = search_paths.begin(); 637 i != search_paths.end(); ++i) { [all...] |
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/ |
egl_dri2.c | 371 char path[PATH_MAX], *search_paths, *p, *next, *end; local 373 search_paths = NULL; 376 search_paths = getenv("LIBGL_DRIVERS_PATH"); 378 if (search_paths == NULL) 379 search_paths = DEFAULT_DRIVER_DIR; 382 end = search_paths + strlen(search_paths); 383 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) { 407 dri2_dpy->driver_name, search_paths); [all...] |
/external/mesa3d/src/egl/drivers/dri2/ |
egl_dri2.c | 371 char path[PATH_MAX], *search_paths, *p, *next, *end; local 373 search_paths = NULL; 376 search_paths = getenv("LIBGL_DRIVERS_PATH"); 378 if (search_paths == NULL) 379 search_paths = DEFAULT_DRIVER_DIR; 382 end = search_paths + strlen(search_paths); 383 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) { 407 dri2_dpy->driver_name, search_paths); [all...] |
/ndk/sources/host-tools/ndk-depends/ |
ndk-depends.cc | 951 // Try to find a library named |libname| in |search_paths| 955 const std::vector<String>& search_paths, 959 for (size_t n = 0; n < search_paths.size(); ++n) { 960 String file_path = search_paths[n]; [all...] |