HomeSort by relevance Sort by last modified time
    Searched full:absolute_path (Results 1 - 25 of 31) sorted by null

1 2

  /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.h 37 // Stores an absolute version of |path| to |*absolute_path|,
39 // Returns false and does not set |*absolute_path| on error.
41 std::string* absolute_path);
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});
  /developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageContract.java 35 String ABSOLUTE_PATH = "absolute_path";
43 Columns.ABSOLUTE_PATH,
ImageClientFragment.java 147 ImageContract.Columns.ABSOLUTE_PATH));
ImageProvider.java 183 row.add(ImageContract.Columns.ABSOLUTE_PATH, file.getAbsolutePath());
  /developers/build/prebuilts/gradle/ContentProviderPaging/kotlinApp/app/src/main/kotlin/com.example.android.contentproviderpaging/
ImageContract.kt 36 val ABSOLUTE_PATH = "absolute_path"
42 val PROJECTION_ALL = arrayOf(BaseColumns._ID, Columns.DISPLAY_NAME, Columns.ABSOLUTE_PATH, Columns.SIZE)
ImageClientFragment.kt 119 ImageContract.Columns.ABSOLUTE_PATH))
ImageProvider.kt 148 row.add(ImageContract.Columns.ABSOLUTE_PATH, file.absolutePath)
  /developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageContract.java 35 String ABSOLUTE_PATH = "absolute_path";
43 Columns.ABSOLUTE_PATH,
ImageClientFragment.java 147 ImageContract.Columns.ABSOLUTE_PATH));
ImageProvider.java 183 row.add(ImageContract.Columns.ABSOLUTE_PATH, file.getAbsolutePath());
  /developers/samples/android/content/documentsUi/ContentProviderPaging/kotlinApp/app/src/main/kotlin/com.example.android.contentproviderpaging/
ImageContract.kt 36 val ABSOLUTE_PATH = "absolute_path"
42 val PROJECTION_ALL = arrayOf(BaseColumns._ID, Columns.DISPLAY_NAME, Columns.ABSOLUTE_PATH, Columns.SIZE)
ImageClientFragment.kt 119 ImageContract.Columns.ABSOLUTE_PATH))
ImageProvider.kt 148 row.add(ImageContract.Columns.ABSOLUTE_PATH, file.absolutePath)
  /external/e2fsprogs/contrib/android/
e2fsdroid.c 38 static char *absolute_path(const char *file) function
78 fs_config_file = absolute_path(optarg);
90 seopt_file[nr_opt].value = absolute_path(token);
97 product_out = absolute_path(optarg);
103 basefs_out = absolute_path(optarg);
106 basefs_in = absolute_path(optarg);
109 block_list = absolute_path(optarg);
112 src_dir = absolute_path(optarg);
  /external/autotest/scheduler/
drone_manager.py 160 directory, except for those returns by absolute_path().
268 drone.call('initialize', self.absolute_path(''))
735 abs_working_directory = self.absolute_path(working_directory)
738 log_file = self.absolute_path(log_file)
775 path = os.path.join(self.absolute_path(execution_tag), pidfile_name)
845 def absolute_path(self, path, on_results_repository=False): member in class:DroneManager
860 full_source = self.absolute_path(source_path
    [all...]
postjob_task.py 43 self._drone_manager.absolute_path(self._working_directory()))
monitor_db_functional_test.py 273 def absolute_path(self, path): member in class:MockDroneManager
    [all...]
monitor_db.py     [all...]
  /external/syslinux/utils/
mkdiskimage.in 26 sub absolute_path($) {
246 if ( !symlink(absolute_path($file), $imglink) );
  /external/syslinux/bios/utils/
mkdiskimage 26 sub absolute_path($) { subroutine
246 if ( !symlink(absolute_path($file), $imglink) );
  /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));
  /external/v8/src/
d8.cc 674 std::string absolute_path = local
676 auto module_it = d->specifier_to_module_map.find(absolute_path);
718 std::string absolute_path = NormalizePath(ToSTLString(name), dir_name); local
719 if (!d->specifier_to_module_map.count(absolute_path)) {
720 if (FetchModuleTree(context, absolute_path).IsEmpty()) {
736 std::string absolute_path = NormalizePath(file_name, GetWorkingDirectory()); local
739 if (!FetchModuleTree(realm, absolute_path).ToLocal(&root_module)) {
    [all...]
  /art/runtime/
oat_file.cc     [all...]

Completed in 3625 milliseconds

1 2