Home
last modified time | relevance | path

Searched refs:found_path (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/tools/drmemory/scripts/
Dpath_utils.py49 found_path = os.path.join(cur_dir, desired_path)
50 while not os.path.exists(found_path):
56 found_path = os.path.join(cur_dir, desired_path)
59 found_path = found_path[:len(found_path) - len(desired_path)]
60 if found_path.endswith(os.sep):
61 found_path = found_path[:len(found_path) - 1]
62 return found_path
/external/chromium-trace/catapult/catapult_base/catapult_base/
Dbinary_manager_unittest.py183 found_path = manager.FetchPath('dep_2', 'x86_64', 'linux')
184 self.assertEqual(self.expected_dep2_linux_file, found_path)
188 found_path = manager.FetchPath('dep_2', 'x86', 'android', 'l')
189 self.assertEqual(self.expected_dep2_android_file, found_path)
193 found_path = manager.FetchPath('dep_2', 'x86_64', 'linux', 'fake_version')
194 self.assertEqual(self.expected_dep2_linux_file, found_path)
209 found_path = manager.LocalPath('dep_2', 'x86_64', 'linux')
210 self.assertEqual(self.expected_dep2_linux_file, found_path)
214 found_path = manager.LocalPath('dep_2', 'x86', 'android', 'l')
215 self.assertEqual(self.expected_dep2_android_file, found_path)
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_posix_libcdep.cc411 if (const char *found_path = FindPathToBinary("llvm-symbolizer")) { in ChooseExternalSymbolizer() local
412 VReport(2, "Using llvm-symbolizer found at: %s\n", found_path); in ChooseExternalSymbolizer()
413 return new(*allocator) LLVMSymbolizer(found_path, allocator); in ChooseExternalSymbolizer()
416 if (const char *found_path = FindPathToBinary("atos")) { in ChooseExternalSymbolizer() local
417 VReport(2, "Using atos found at: %s\n", found_path); in ChooseExternalSymbolizer()
418 return new(*allocator) AtosSymbolizer(found_path, allocator); in ChooseExternalSymbolizer()
422 if (const char *found_path = FindPathToBinary("addr2line")) { in ChooseExternalSymbolizer() local
423 VReport(2, "Using addr2line found at: %s\n", found_path); in ChooseExternalSymbolizer()
424 return new(*allocator) Addr2LinePool(found_path, allocator); in ChooseExternalSymbolizer()
/external/skia/
Dmake.py70 found_path = None
76 found_path = possible_path
79 if found_path:
80 print '\nIt looks like you can run that script at:\n%s' % found_path
/external/autotest/client/common_lib/cros/
Dpath_utils.py35 found_path = result.stdout.split('\n')[0].strip()
36 return found_path or None
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Ddependency_manager_unittest.py422 found_path = dep_manager.FetchPath('dep', 'platform')
424 self.assertEqual('path1', found_path)
445 found_path = dep_manager.FetchPath('dep', 'platform')
446 self.assertEqual(cs_path, found_path)
500 found_path = dep_manager.LocalPath('dependency', 'platform')
502 self.assertEqual('path1', found_path)