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

1 23 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
dictionary_structure_with_buffer_policy.h 88 virtual bool flush(const char *const filePath) = 0;
91 virtual bool flushWithGC(const char *const filePath) = 0;
  /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));
  /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;
  /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);
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 359 String filePath;
384 filePath = file.getCanonicalPath();
390 if (filePath.startsWith(cacheDir)
391 || filePath.startsWith(libDir)
392 || filePath.startsWith(nbFilesDir)) {
399 if (filePath.startsWith(dbDir)) {
402 } else if (filePath.startsWith(spDir)) {
405 } else if (filePath.startsWith(filesDir)) {
408 } else if (filePath.startsWith(mainDir)) {
411 } else if ((efDir != null) && filePath.startsWith(efDir))
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ReadableFileReceiverActivity.java 92 Uri filePath = clipData.getItemAt(i).getUri();
93 if (filePath == null) {
98 result.add(new File(filePath.getPath()));
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 78 * @param filePath the path of image file
84 public static Bitmap createImageThumbnail(String filePath, int kind) {
94 MediaFileType fileType = MediaFile.getFileType(filePath);
96 createThumbnailFromEXIF(filePath, targetSize, maxPixels, sizedThumbnailBitmap);
103 stream = new FileInputStream(filePath);
123 Log.e(TAG, "Unable to decode file " + filePath + ". OutOfMemoryError.", oom);
149 * @param filePath the path of video file
152 public static Bitmap createVideoThumbnail(String filePath, int kind) {
156 retriever.setDataSource(filePath);
472 private static void createThumbnailFromEXIF(String filePath, int targetSize
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwWebContentsDelegate.java 44 int mode_flags, String[] filePath, String[] displayName);
  /external/chromium_org/third_party/WebKit/Source/platform/
AsyncFileSystemCallbacks.h 56 virtual void didResolveURL(const String& name, const KURL& rootURL, FileSystemType, const String& filePath, bool isDirectory) { ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobData.h 53 WebString filePath;
WebFileSystemCallbacks.h 97 BLINK_PLATFORM_EXPORT void didResolveURL(const WebString& name, const WebURL& rootURL, WebFileSystemType, const WebString& filePath, bool isDirectory);
WebMimeRegistry.h 55 virtual blink::WebString mimeTypeFromFile(const blink::WebString& filePath) = 0;
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.h 63 extern int ParseDNSServers(mDNS *m, const char *filePath);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 142 filePath = cursor.getString(INDEX_DATA);
164 filePath = uh.update(filePath, cursor.getString(INDEX_DATA));
176 type, filePath);
220 return new LocalLargeImageRequest(filePath);
290 exifInterface.forceRewriteExif(filePath);
291 fileSize = new File(filePath).length();
294 Log.w(TAG, "cannot find file to set exif: " + filePath);
296 Log.w(TAG, "cannot set exif data: " + filePath);
326 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));
156 type, filePath);
240 return filePath;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemMapping.js 276 * @param {string} filePath
279 _mappingEntryForPath: function(fileSystemPath, filePath)
291 if (filePath.startsWith(pathPrefix.substr(1)))
359 * @return {?{fileSystemPath: string, filePath: string}}
368 file.filePath = entry.pathPrefix.substr(1) + url.substr(entry.urlPrefix.length);
374 * @param {string} filePath
377 urlForPath: function(fileSystemPath, filePath)
379 var entry = this._mappingEntryForPath(fileSystemPath, filePath);
382 return entry.urlPrefix + filePath.substring(entry.pathPrefix.length - 1);
400 * @param {string} filePath
    [all...]
  /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);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.h 92 bool flush(const char *const filePath);
94 bool flushWithGC(const char *const filePath);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.h 112 bool flush(const char *const filePath) {
118 bool flushWithGC(const char *const filePath) {
  /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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchManager.cpp 73 String filePath = m_response.downloadedFilePath();
74 if (!filePath.isEmpty() && m_downloadedBlobLength) {
75 blobData->appendFile(filePath);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImageTest.cpp 64 String filePath = blink::Platform::current()->unitTestSupport()->webKitRootDir();
65 filePath.append(fileName);
66 return blink::Platform::current()->unitTestSupport()->readFromFile(filePath);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoderTest.cpp 54 String filePath = Platform::current()->unitTestSupport()->webKitRootDir();
55 filePath.append(fileName);
57 return Platform::current()->unitTestSupport()->readFromFile(filePath);

Completed in 1999 milliseconds

1 23 4 5 6 7 8 91011>>