HomeSort by relevance Sort by last modified time
    Searched refs:filePath (Results 51 - 75 of 201) sorted by null

1 23 4 5 6 7 8 9

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 145 filePath = cursor.getString(INDEX_DATA);
167 filePath = uh.update(filePath, cursor.getString(INDEX_DATA));
178 return new LocalImageRequest(mApplication, mPath, type, filePath);
221 return new LocalLargeImageRequest(filePath);
293 exifInterface.forceRewriteExif(filePath);
294 fileSize = new File(filePath).length();
297 Log.w(TAG, "cannot find file to set exif: " + filePath);
299 Log.w(TAG, "cannot set exif data: " + filePath);
329 MediaDetails.extractExifInfo(details, filePath);
    [all...]
LocalMediaItem.java 45 public String filePath;
85 details.addDetail(MediaDetails.INDEX_PATH, filePath);
LocalVideo.java 110 filePath = cursor.getString(INDEX_DATA);
145 filePath = uh.update(filePath, cursor.getString(INDEX_DATA));
155 return new LocalVideoRequest(mApplication, getPath(), type, filePath);
238 return filePath;
MediaDetails.java 134 public static void extractExifInfo(MediaDetails details, String filePath) {
138 exif.readExif(filePath);
140 Log.w(TAG, "Could not find file to read exif: " + filePath, e);
142 Log.w(TAG, "Could not read exif from file: " + filePath, e);
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
LoadPathToFileCache.java 47 * @return the absolute filepath location of the file, or {@code null} if not in the cache.
64 * @param filePath the absolute filepath location of the file
66 public void add(List<String> loadPaths, String filename, String filePath) {
70 cache.put(filePathMapKey, filePath);
ResourceLoaderAdaptor.java 111 String filePath = loadPathCache.lookup(getLoadPaths(), name);
112 if (filePath != null) {
113 file = newFile(filePath);
  /external/webkit/Source/WebCore/fileapi/
FileSystemCallbacks.cpp 201 static PassRefPtr<ErrorCallbackWrapper> create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
203 return adoptRef(new ErrorCallbackWrapper(successCallback, errorCallback, root, filePath));
217 ErrorCallbackWrapper(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
221 , m_filePath(filePath)
234 PassOwnPtr<ResolveURICallbacks> ResolveURICallbacks::create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, ScriptExecutionContext* scriptExecutionContext, const String& filePath)
236 return adoptPtr(new ResolveURICallbacks(successCallback, errorCallback, scriptExecutionContext, filePath));
239 ResolveURICallbacks::ResolveURICallbacks(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, ScriptExecutionContext* context, const String& filePath)
243 , m_filePath(filePath)
  /external/webkit/Source/WebKit/chromium/src/
WebBlobData.cpp 69 result.filePath.reset();
82 result.filePath = item.path;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
BinaryXMLMultiPageEditorPart.java 65 IPath filePath = path.append(SdkConstants.FD_DATA).append(
67 File file = new File(filePath.toOSString());
  /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...]
  /external/quake/quake/src/WinQuake/
sys_android.cpp 424 char filePath[1024];
425 if ((int) (sizeof(filePath)-1) < snprintf(filePath, sizeof(filePath), "%s/%s", path, name)) {
428 if(direxists(filePath)) {
429 rmDir(filePath);
432 unlink(filePath);
  /external/webkit/Source/WebCore/platform/audio/mac/
AudioFileReaderMac.cpp 59 AudioFileReader::AudioFileReader(const char* filePath)
62 , m_filePath(filePath)
67 OSStatus result = FSPathMakeRef((UInt8*)filePath, &fsref, 0);
244 PassOwnPtr<AudioBus> createBusFromAudioFile(const char* filePath, bool mixToMono, double sampleRate)
246 AudioFileReader reader(filePath);
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 249 char filePath[1024];
250 if (static_cast<int>(sizeof(filePath) - 1) < snprintf(filePath, sizeof(filePath), "%s/%s", cpath.data(), name))
252 entries.append(filePath);
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransfer.java 39 private String filePath;
77 this.filePath = path;
106 return filePath;
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java 72 final String filePath = f.getCanonicalPath();
74 Log.i(TAG, "storing: " + filePath);
77 rootPath, filePath, out);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
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");
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 58 bool FileRemapper::initFromFile(StringRef filePath, DiagnosticsEngine &Diag,
62 std::string infoFile = filePath;
238 void FileRemapper::remap(StringRef filePath, llvm::MemoryBuffer *memBuf) {
239 remap(getOriginalFile(filePath), memBuf);
242 void FileRemapper::remap(StringRef filePath, StringRef newPath) {
243 const FileEntry *file = getOriginalFile(filePath);
263 const FileEntry *FileRemapper::getOriginalFile(StringRef filePath) {
264 const FileEntry *file = FileMgr->getFile(filePath);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MuteVideo.java 46 public MuteVideo(String filePath, Uri uri, Activity activity) {
48 mFilePath = filePath;
  /dalvik/dx/src/com/android/dx/command/dump/
SsaDumper.java 57 * @param filePath the file path for the class, excluding any base
62 String filePath, Args args) {
63 SsaDumper sd = new SsaDumper(bytes, out, filePath, args);
72 * @param filePath the file path for the class, excluding any base
76 private SsaDumper(byte[] bytes, PrintStream out, String filePath,
78 super(bytes, out, filePath, true, args);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
CacheResult.h 52 bool writeToFile(const WTF::String& filePath) const;
  /external/webkit/Source/WebKit/chromium/public/
WebHTTPBody.h 53 WebString filePath;
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 48 private native static int nativeCopyNativeBinaries(String filePath, String sharedLibraryPath,
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 209 String filePath = cursor.getString(0);
210 if (filePath == null) continue;
211 Log.d(LOG_TAG, "Deleting " + filePath);
212 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);
  /external/webkit/Source/WebCore/workers/
WorkerContext.cpp 397 String filePath;
398 if (!completedURL.isValid() || !DOMFileSystemBase::crackFileSystemURL(completedURL, type, filePath)) {
403 LocalFileSystem::localFileSystem().readFileSystem(this, type, ResolveURICallbacks::create(successCallback, errorCallback, this, filePath));
416 String filePath;
417 if (!completedURL.isValid() || !DOMFileSystemBase::crackFileSystemURL(completedURL, type, filePath)) {
428 RefPtr<EntrySync> entry = fileSystem->root()->getDirectory(filePath, 0, ec);
430 return fileSystem->root()->getFile(filePath, 0, ec);

Completed in 922 milliseconds

1 23 4 5 6 7 8 9