Searched refs:getPath (Results 1 - 25 of 210) sorted by relevance

123456789

/frameworks/support/transition/src/androidTest/java/androidx/transition/
H A DArcMotionTest.java38 Path path = arcMotion.getPath(0, 100, 100, 0);
42 path = arcMotion.getPath(100, 0, 0, -100);
46 path = arcMotion.getPath(0, -100, -100, 0);
50 path = arcMotion.getPath(-100, 0, 0, 100);
63 path = arcMotion.getPath(0, 120, 160, 0);
67 path = arcMotion.getPath(0, 160, 120, 0);
71 path = arcMotion.getPath(-120, 0, 0, 160);
75 path = arcMotion.getPath(-160, 0, 0, 120);
79 path = arcMotion.getPath(0, -120, -160, 0);
83 path = arcMotion.getPath(
[all...]
H A DPatternPathMotionTest.java46 assertPathMatches(expected, pathMotion.getPath(0, 0, 100, 100));
63 assertPathMatches(expected, pathMotion.getPath(0, 0, 0, 100));
/frameworks/base/core/tests/coretests/src/android/net/
H A DWebAddressTest.java30 assertEquals("/b/c/g", webAddress.getPath());
38 assertEquals("/?si=1", webAddress.getPath());
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java66 public String getPath() { method in class:MountServiceTests.ObbObserver
117 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
120 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
133 assertTrue("mountObb call on " + file.getPath() + " should succeed",
134 sm.mountObb(file.getPath(), null, observer));
140 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
144 file.getPath(), observer.getPath());
154 assertTrue("mountObb call on " + file.getPath() + " should succeed", sm.mountObb(file
155 .getPath(), nul
[all...]
/frameworks/base/tools/aapt/
H A DOutputSet.h37 inline const android::String8& getPath() const { function in class:OutputEntry
41 bool operator<(const OutputEntry& o) const { return getPath() < o.mPath; }
42 bool operator==(const OutputEntry& o) const { return getPath() == o.mPath; }
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DLastMileLoggerTest.java62 mLastMileLogger = new LastMileLogger(mWifiInjector, mTraceDataFile.getPath(),
63 mTraceEnableFile.getPath(), mTraceReleaseFile.getPath());
68 new LastMileLogger(mWifiInjector, mTraceDataFile.getPath(), mTraceEnableFile.getPath(),
69 mTraceReleaseFile.getPath());
77 assertEquals("1", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
94 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
121 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
143 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
[all...]
/frameworks/base/core/java/android/transition/
H A DPathMotion.java29 * by extending PathMotion and implementing {@link #getPath(float, float, float, float)}.
58 public abstract Path getPath(float startX, float startY, float endX, float endY); method in class:PathMotion
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/
H A DBaseTest.java26 System.setProperty("dexmaker.dexcache", mContext.getCacheDir().getPath());
/frameworks/support/transition/src/main/java/androidx/transition/
H A DPathMotion.java30 * by extending PathMotion and implementing {@link #getPath(float, float, float, float)}.
61 public abstract Path getPath(float startX, float startY, float endX, float endY); method in class:PathMotion
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseErrorHandlerTest.java46 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null,
68 BufferedWriter writer = new BufferedWriter(new FileWriter(mDatabaseFile.getPath()));
94 SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null,
116 mDatabaseFile.getPath());
120 mDatabaseFile.getPath());
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTaskSnapshotPersisterLoaderTest.java61 final File[] files = new File[] { new File(sFilesDir.getPath() + "/snapshots/1.proto"),
62 new File(sFilesDir.getPath() + "/snapshots/1.jpg"),
63 new File(sFilesDir.getPath() + "/snapshots/1_reduced.jpg")};
83 assertFalse(new File(sFilesDir.getPath() + "/snapshots/1.proto").exists());
84 assertFalse(new File(sFilesDir.getPath() + "/snapshots/1.jpg").exists());
85 assertFalse(new File(sFilesDir.getPath() + "/snapshots/1_reduced.jpg").exists());
122 new File(sFilesDir.getPath() + "/snapshots/3.proto"),
123 new File(sFilesDir.getPath() + "/snapshots/4.proto")};
125 new File(sFilesDir.getPath() + "/snapshots/100.proto"),
126 new File(sFilesDir.getPath()
[all...]
/frameworks/rs/
H A DrsCacheDir.cpp37 jmethodID getPath = env->GetMethodID(fileClass, "getPath", "()Ljava/lang/String;"); local
38 jstring path_string = (jstring)env->CallObjectMethod(cache_dir, getPath);
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DConstructor.kt38 override fun log(): String = field.getPath()
42 override fun log(): String = embedded.field.getPath()
H A DPrimaryKey.kt34 fields.joinToString(separator = ", ", transform = Field::getPath) + "]"
/frameworks/base/core/java/android/database/
H A DDefaultDatabaseErrorHandler.java54 Log.e(TAG, "Corruption reported by sqlite on database: " + dbObj.getPath());
64 deleteDatabaseFile(dbObj.getPath());
91 deleteDatabaseFile(dbObj.getPath());
/frameworks/av/media/mtp/
H A DMtpStorage.h51 inline const char* getPath() const { return (const char *)mFilePath; } function in class:android::MtpStorage
H A DMtpStorage.cpp64 if (statfs(getPath(), &stat))
73 if (statfs(getPath(), &stat))
/frameworks/base/media/java/android/mtp/
H A DMtpStorage.java58 public final String getPath() { method in class:MtpStorage
H A DMtpStorageManager.java59 super(object.getPath().toString(),
86 Log.i(TAG, "inotify for " + mObject.getPath() + " deleted");
183 return getPath().toFile().lastModified() / 1000;
195 return mIsDir ? 0 : getPath().toFile().length();
198 public Path getPath() { method in class:MtpStorageManager.MtpObject
199 return isRoot() ? Paths.get(mName) : mParent.getPath().resolve(mName);
274 return getPath().toFile().exists();
403 MtpObject root = new MtpObject(storage.getPath(), storageId, null, true);
557 Path dir = object.getPath();
622 Log.w(TAG, "Failed to remove from parent " + removed.getPath());
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/solver/
H A DExecutionBranch.java52 public ExecutionPath getPath() { method in class:ExecutionBranch
/frameworks/base/core/java/android/app/slice/
H A DSliceMetrics.java48 mLogMaker.addTaggedData(MetricsEvent.FIELD_SLICE_PATH, uri.getPath());
91 .addTaggedData(MetricsEvent.FIELD_SUBSLICE_PATH, subSlice.getPath());
/frameworks/base/core/java/android/os/
H A DSELinux.java148 file.getPath(), e);
166 file.getPath(), e);
/frameworks/base/core/tests/coretests/src/android/app/backup/
H A DFullBackupTest.java74 include.getPath());
96 include.getPath());
118 include.getPath());
142 include.getPath());
167 include.getPath());
193 include.getPath());
227 excludesSet.iterator().next().getPath());
244 fileDomainIncludes.iterator().next().getPath());
249 excludesSet.iterator().next().getPath());
272 fileDomainIncludes.iterator().next().getPath());
[all...]
/frameworks/multidex/library/src/androidx/multidex/
H A DMultiDexExtractor.java95 Log.i(TAG, "MultiDexExtractor(" + sourceApk.getPath() + ", " + dexDir.getPath() + ")");
104 Log.i(TAG, "Blocking on lock " + lockFile.getPath());
110 Log.i(TAG, lockFile.getPath() + " locked");
128 Log.i(TAG, "MultiDexExtractor.load(" + sourceApk.getPath() + ", " + forceReload + ", " +
204 extractedFile.getPath() + "'");
292 extractedFile.getPath() + "'");
361 Log.w(TAG, "Failed to list secondary dex dir content (" + dexDir.getPath() + ").");
365 Log.i(TAG, "Trying to delete old file " + oldFile.getPath() + " of size " +
368 Log.w(TAG, "Failed to delete old file " + oldFile.getPath());
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskSnapshotLoader.java79 final Bitmap bitmap = BitmapFactory.decodeFile(bitmapFile.getPath(), options);
81 Slog.w(TAG, "Failed to load bitmap: " + bitmapFile.getPath());
87 + bitmapFile.getPath());

Completed in 2675 milliseconds

123456789