HomeSort by relevance Sort by last modified time
    Searched defs:absolute_path (Results 1 - 6 of 6) sorted by null

  /system/tools/aidl/
io_delegate_unittest.cpp 29 string absolute_path; local
30 EXPECT_FALSE(IoDelegate::GetAbsolutePath("", &absolute_path));
31 EXPECT_TRUE(absolute_path.empty());
35 string absolute_path; local
36 EXPECT_TRUE(IoDelegate::GetAbsolutePath("foo", &absolute_path));
37 ASSERT_FALSE(absolute_path.empty());
38 // Should find our desired file at the end of |absolute_path|
40 EXPECT_TRUE(absolute_path.rfind("/foo") == absolute_path.length() - 4);
42 EXPECT_EQ(absolute_path[0], '/')
    [all...]
io_delegate.cpp 44 bool IoDelegate::GetAbsolutePath(const string& path, string* absolute_path) {
53 *absolute_path = buf;
65 *absolute_path = path;
76 *absolute_path = buf;
77 *absolute_path += OS_PATH_SEPARATOR;
78 *absolute_path += path;
154 string absolute_path; local
155 if (!GetAbsolutePath(path, &absolute_path)) {
159 auto directories = Split(absolute_path, string{1u, OS_PATH_SEPARATOR});
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
style_sheet.py 21 def absolute_path(self): member in class:Image
22 return self.resource.absolute_path
43 dependent_filenames.append(i.resource.absolute_path)
56 ext = os.path.splitext(image.absolute_path)[1]
67 dependent_filenames.append(i.resource.absolute_path)
104 return self.resource.absolute_path
121 dependent_filenames.append(self.resource.absolute_path)
136 module_dirname = os.path.dirname(self.resource.absolute_path)
  /external/autotest/scheduler/
drone_manager.py 153 directory, except for those returns by absolute_path().
249 drone.call('initialize', self.absolute_path(''))
732 abs_working_directory = self.absolute_path(working_directory)
735 log_file = self.absolute_path(log_file)
772 path = os.path.join(self.absolute_path(execution_tag), pidfile_name)
842 def absolute_path(self, path, on_results_repository=False): member in class:BaseDroneManager
    [all...]
monitor_db_functional_test.py 286 def absolute_path(self, path): member in class:MockDroneManager
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoring.java 381 String absolute_path = AndroidManifest.combinePackageAndClassName( local
386 addQuotes(absolute_path));

Completed in 310 milliseconds