Searched refs:getPath (Results 1 - 25 of 161) sorted by last modified time

1234567

/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java493 Log.w(TAG, "Unable to create files subdir " + file.getPath());
H A DFileProvider.java671 final String rootPath = root.getValue().getPath();
673 || rootPath.length() > mostSpecific.getValue().getPath().length())) {
684 final String rootPath = mostSpecific.getValue().getPath();
717 if (!file.getPath().startsWith(root.getPath())) {
/frameworks/support/v4/java/android/support/v4/util/
H A DAtomicFile.java53 mBackupName = new File(baseName.getPath() + ".bak");
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DAlertDialogCursorTest.java106 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null);
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
H A DMainActivity.java226 mImagePath = folder.getPath();
265 mImagePath = folder.getPath();
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
H A DXmpDepthDecode.java175 if (info.getPath() != null) {
176 xmpMeta.setProperty(info.getNamespace(), info.getPath(),
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java320 Log.e(LOGTAG, "Failed to parse " + file.getPath());
H A DLoaderRaw.java70 Log.v(LOGTAG, "Loading " + dir.getPath());
/frameworks/support/documents-archive/tests/src/android/support/provider/
H A DStubProvider.java130 row.add(DocumentArchiveHelper.COLUMN_LOCAL_FILE_PATH, file.getPath());
/frameworks/support/tests/java/android/support/v4/content/
H A DFileProviderTest.java114 assertEquals(file.getPath(),
115 strat.getFileForUri(Uri.parse("content://authority/tag/file.test")).getPath());
118 assertEquals(file.getPath(), strat.getFileForUri(
119 Uri.parse("content://authority/tag/subdir/file.test")).getPath());
142 assertEquals(file.getPath(),
143 strat.getFileForUri(Uri.parse(expected)).getPath());
151 assertEquals(file.getPath(), strat.getFileForUri(
152 Uri.parse("content://authority/tag/file.txt?extra=foo")).getPath());
166 assertEquals(outFile.getPath(),
167 strat.getFileForUri(Uri.parse(expected)).getPath());
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DSpnOverride.java76 Rlog.d(LOG_TAG, "No SPN in OEM image = " + oemSpnFile.getPath() +
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java938 path = uri.getPath();
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCarrierAppUtilsTest.java44 getInstrumentation().getTargetContext().getCacheDir().getPath());
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DOMADMAdapter.java95 private String[] getPath() { method in class:OMADMAdapter.PathAccessor
215 String[] path = pathAccessor.getPath();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java112 public String getPath() { method in class:MOTree.NodeData
143 if (curValue == null || curValue.getPath() != null)
182 context, null, curValue.getPath());
193 nodeData.getValue(), nodeData.getPath());
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java97 m.invoke(null, mApConfigFile.getPath(), config);
120 mContext, mBackupManagerProxy, mApConfigFile.getPath());
138 mContext, mBackupManagerProxy, mApConfigFile.getPath());
158 mContext, mBackupManagerProxy, mApConfigFile.getPath());
173 mContext, mBackupManagerProxy, mApConfigFile.getPath());
/frameworks/native/include/input/
H A DKeyboard.h75 String8 getPath(const InputDeviceIdentifier& deviceIdentifier,
/frameworks/native/libs/input/
H A DKeyboard.cpp108 String8 path(getPath(deviceIdentifier, name,
125 String8 path(getPath(deviceIdentifier, name,
141 String8 KeyMap::getPath(const InputDeviceIdentifier& deviceIdentifier, function in class:android::KeyMap
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDex.java344 Log.i(TAG, "Clearing old secondary dex dir (" + dexDir.getPath() + ").");
347 Log.w(TAG, "Failed to list secondary dex dir content (" + dexDir.getPath() + ").");
351 Log.i(TAG, "Trying to delete old file " + oldFile.getPath() + " of size "
354 Log.w(TAG, "Failed to delete old file " + oldFile.getPath());
356 Log.i(TAG, "Deleted old file " + oldFile.getPath());
360 Log.w(TAG, "Failed to delete secondary dex dir " + dexDir.getPath());
362 Log.i(TAG, "Deleted old secondary dex dir " + dexDir.getPath());
390 Log.e(TAG, "Failed to create dir " + dir.getPath() + ". Parent file is null.");
392 Log.e(TAG, "Failed to create dir " + dir.getPath() +
399 throw new IOException("Failed to create directory " + dir.getPath());
[all...]
H A DMultiDexExtractor.java129 extractedFile.getPath() + "'");
207 extractedFile.getPath() + "'");
265 Log.w(TAG, "Failed to list secondary dex dir content (" + dexDir.getPath() + ").");
269 Log.i(TAG, "Trying to delete old file " + oldFile.getPath() + " of size " +
272 Log.w(TAG, "Failed to delete old file " + oldFile.getPath());
274 Log.i(TAG, "Deleted old file " + oldFile.getPath());
286 Log.i(TAG, "Extracting " + tmp.getPath());
305 Log.i(TAG, "Renaming to " + extractTo.getPath());
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DSimpleCompilationTest.java84 assertTrue("File has wrong tag:" + layout.getPath(),
87 assertTrue("File has wrong tag:" + layout.getPath() + "\n" + contents,
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
H A DLayoutXmlProcessor.java154 .relativize(file.toURI()).getPath());
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileOutputBuffer.h51 llvm::StringRef getPath() const;
/frameworks/compile/mclinker/lib/Support/
H A DFileOutputBuffer.cpp55 llvm::StringRef FileOutputBuffer::getPath() const { function in class:mcld::FileOutputBuffer

Completed in 703 milliseconds

1234567