/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalMediaItem.java | 45 public String filePath; 85 details.addDetail(MediaDetails.INDEX_PATH, filePath);
|
UriImage.java | 261 String filePath = mUri.getPath(); 262 details.addDetail(MediaDetails.INDEX_PATH, filePath); 263 MediaDetails.extractExifInfo(details, filePath);
|
/packages/apps/Mms/src/com/android/mms/ |
TempFileProvider.java | 145 String filePath = getScrapPath(context); 156 File oldTempFile = new File(filePath);
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 51 private final String filePath; 77 * @param filePath the file path for the class, excluding any base 81 String filePath, Args args) { 86 this.filePath = filePath; 190 return filePath;
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
TracingControllerAndroid.java | 152 String filePath = generateTracingFilePath(); 153 if (filePath == null) { 157 return startTracing(filePath, showToasts, categories, traceOptions);
|
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
FetchManager.cpp | 89 String filePath = m_response.downloadedFilePath(); 90 if (!filePath.isEmpty() && m_downloadedBlobLength) { 91 blobData->appendFile(filePath);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoderTest.cpp | 54 String filePath = Platform::current()->unitTestSupport()->webKitRootDir(); 55 filePath.append(fileName); 57 return Platform::current()->unitTestSupport()->readFromFile(filePath);
|
/external/lzma/CPP/7zip/UI/Common/ |
EnumDirItems.cpp | 116 const UString &filePath = filePaths[i];
118 const UString phyPath = phyPrefix + filePath;
125 int delimiter = filePath.ReverseFind((wchar_t)kDirDelimiter);
130 phyPrefixCur = filePath.Left(delimiter + 1);
|
/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
FileTransfer.java | 39 private String filePath;
77 this.filePath = path;
106 return filePath;
|
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
StorageManagerIntegrationTest.java | 67 String filePath = mFile.getAbsolutePath(); 68 mountObb(filePath); 69 verifyObb1Contents(filePath); 70 unmountObb(filePath, DONT_FORCE); 119 String filePath = mFile.getAbsolutePath(); 120 mountObb(filePath, OBB_FILE_3_PASSWORD, OnObbStateChangeListener.MOUNTED); 121 verifyObb3Contents(filePath); 122 unmountObb(filePath, DONT_FORCE); 131 String filePath = mFile.getAbsolutePath(); 132 mountObb(filePath, OBB_FILE_3_PASSWORD, OnObbStateChangeListener.ERROR_COULD_NOT_MOUNT) [all...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
RotationTask.java | 93 String filePath = imageData.getPath(); 107 exifInterface.forceRewriteExif(filePath); 108 long fileSize = new File(filePath).length(); 113 Log.w(TAG, "Cannot find file to set exif: " + filePath); 115 Log.w(TAG, "Cannot set exif data: " + filePath);
|
/packages/apps/Mms/tests/src/com/android/mms/ui/ |
SmsTest.java | 155 String filePath = String.format("%s/%s", targetAppContext.getFilesDir(), messageFileName); 156 Log.v(TAG, "filePath: " + filePath); 158 byte[] buffer = new byte[(int) new File(filePath).length()];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
RenderScriptLauncher.java | 198 String filePath = m.group(1); 199 if (filePath.startsWith(rootPath) == false) { 207 filePath = filePath.substring(rootPathLength); 209 if (filePath.startsWith(File.separator)) { 210 filePath = filePath.substring(1); 214 IFile f = mProject.getFile(new Path(filePath));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParserTest.java | 164 String filePath = osRoot + File.separator + fileRelativePath; 165 String originalError = filePath + aaptError.substring(aaptError.indexOf(':'));
|
AaptQuickFixTest.java | 95 String filePath = osRoot + File.separator + fileRelativePath; 104 errors.add(filePath + ":7: error: Error: No resource found that matches the given name" 106 errors.add(filePath + ":7: error: Error: No resource found that matches the given name" 108 errors.add(filePath + ":13: error: Error: No resource found that matches the given name" 217 String filePath = osRoot + File.separator + fileRelativePath; 219 errors.add(filePath + ":5: error: Error parsing XML: unbound prefix");
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsProvider.java | 837 File filePath = new File(path); 838 if (!filePath.getCanonicalPath() 841 + filePath.getCanonicalPath() 845 filePath.delete(); [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
DirectClassFile.java | 81 private final String filePath; 170 * @param filePath {@code non-null;} the file path for the class, 177 public DirectClassFile(ByteArray bytes, String filePath, 183 if (filePath == null) { 184 throw new NullPointerException("filePath == null"); 187 this.filePath = filePath; 197 * @param filePath {@code non-null;} the file path for the class, 204 public DirectClassFile(byte[] bytes, String filePath, 206 this(new ByteArray(bytes), filePath, strictParse) [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitBaseTest.java | 68 String filePath = testInput; 69 File testInputFile = new File(filePath); 72 testInputFile = new File(packagePath, filePath); 73 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 75 input = new ANTLRFileStream(filePath); 159 String filePath = testInput; 160 File testInputFile = new File(filePath); 163 testInputFile = new File(packagePath, filePath); 164 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 166 input = new ANTLRFileStream(filePath); [all...] |
gUnitExecutor.java | 610 String filePath = testInput.input; 611 File testInputFile = new File(filePath); 614 testInputFile = new File(this.testsuiteDir, filePath); 615 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 618 testInputFile = new File("."+File.separator+grammarInfo.getGrammarPackage().replace(".", File.separator), filePath); 619 if ( testInputFile.exists() ) filePath = testInputFile.getCanonicalPath(); 622 input = new ANTLRFileStream(filePath);
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
FwdLockEngine.cpp | 537 const char *filePath = strchr(uri + sizeof(fileTag) - 1, '/'); 538 if (NULL != filePath && onCanHandle(uniqueId, String8(filePath))) { 539 int fd = open(filePath, O_RDONLY);
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractDownloadProviderFunctionalTest.java | 208 String filePath = cursor.getString(0); 209 if (filePath == null) continue; 210 Log.d(LOG_TAG, "Deleting " + filePath); 211 new File(filePath).delete();
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaScannerService.java | 217 args.putString("filepath", path); 237 String filePath = arguments.getString("filepath"); 240 if (filePath != null) { 246 uri = scanFile(filePath, arguments.getString("mimetype")); 251 listener.scanCompleted(filePath, uri);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtUtils.java | 502 IPath filePath = new Path(file.getPath()); 503 return pathToIFile(filePath); 523 IPath filePath = new Path(file.getPath()); 524 return pathToResource(filePath); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
TraceviewEditor.java | 133 IPath filePath = dialog.getResult(); 134 if (filePath == null) { 139 IFile file = workspace.getRoot().getFile(filePath);
|
/frameworks/av/media/mtp/ |
MtpServer.cpp | 777 const char* filePath = (const char *)pathBuf; 779 mfr.fd = open(filePath, O_RDONLY); 852 const char* filePath = (const char *)pathBuf; 854 mfr.fd = open(filePath, O_RDONLY); [all...] |