HomeSort by relevance Sort by last modified time
    Searched defs:filePath (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/WebKit/chromium/public/
WebHTTPBody.h 53 WebString filePath;
  /frameworks/base/core/jni/
android_content_res_ObbScanner.cpp 51 const char* filePath = env->GetStringUTFChars(file, JNI_FALSE);
54 if (!obb->readFrom(filePath)) {
55 env->ReleaseStringUTFChars(file, filePath);
60 env->ReleaseStringUTFChars(file, filePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java 53 String filePath = entry.getPath().replace(".class", "");
55 Class<?> testClass = getClass(filePath, expectedPackage);
62 //sLogger.log(Level.INFO, "Could not load class " + filePath);
91 * @param filePath - path of class in bundle
95 protected Class<?> getClass(String filePath, String expectedPackage) throws ClassNotFoundException {
96 String dotPath = filePath.replace('/', '.');
  /external/webkit/WebCore/platform/android/
FileSystemAndroid.cpp 119 char filePath[1024];
120 if ((int) (sizeof(filePath) - 1) < snprintf(filePath,
121 sizeof(filePath), "%s/%s", cpath.data(), name)) {
124 entries.append(filePath);
  /packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/
DownloadProviderPermissionsTest.java 54 String filePath = "/cache/this-should-not-exist.txt";
55 FileOutputStream strm = new FileOutputStream(filePath);
59 fail("Was able to create and write to " + filePath);
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 45 private final String filePath;
50 static void dump(byte[] bytes, String filePath, Args args) {
51 new DotDumper(bytes, filePath, args).run();
54 DotDumper(byte[] bytes, String filePath, Args args) {
56 this.filePath = filePath;
69 classFile = new DirectClassFile(ba, filePath, strictParse);
75 new DirectClassFile(ba, filePath, strictParse);
BaseDumper.java 53 private final String filePath;
79 * @param filePath the file path for the class, excluding any base
83 String filePath, Args args) {
88 this.filePath = filePath;
192 return filePath;
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 72 String filePath = (null == file ? null : file.getPath());
73 security.checkRead(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/Mms/src/com/android/mms/ui/
UriImage.java 114 String filePath;
116 filePath = c.getString(c.getColumnIndexOrThrow(Part.FILENAME));
117 if (TextUtils.isEmpty(filePath)) {
118 filePath = c.getString(
124 filePath = c.getString(
129 mPath = filePath;
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 77 private final String filePath;
166 * @param filePath {@code non-null;} the file path for the class,
173 public DirectClassFile(ByteArray bytes, String filePath,
179 if (filePath == null) {
180 throw new NullPointerException("filePath == null");
183 this.filePath = filePath;
193 * @param filePath {@code non-null;} the file path for the class,
200 public DirectClassFile(byte[] bytes, String filePath,
202 this(new ByteArray(bytes), filePath, strictParse)
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageManager.java 144 String filePath = directory + "/" + filename;
155 degree[0] = getExifOrientation(filePath);
182 values.put(Images.Media.DATA, filePath);
193 public static int getExifOrientation(String filepath) {
197 exif = new ExifInterface(filepath);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadManagerFunctionalTest.java 196 String filePath = cursor.getString(0);
197 if (filePath == null) continue;
198 Log.d(LOG_TAG, "Deleting " + filePath);
199 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) {
244 Uri uri = scanFile(filePath, arguments.getString("mimetype"));
246 listener.scanCompleted(filePath, uri);
  /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);
  /packages/apps/Camera/src/com/android/camera/
ImageManager.java 171 String filePath = directory + "/" + filename;
182 degree[0] = getExifOrientation(filePath);
207 values.put(Images.Media.DATA, filePath);
218 public static int getExifOrientation(String filepath) {
222 exif = new ExifInterface(filepath);
VideoCamera.java     [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 209 String filePath = directory + "/" + filename;
220 degree[0] = getExifOrientation(filePath);
242 values.put(Images.Media.DATA, filePath);
252 public static int getExifOrientation(String filepath) {
256 exif = new ExifInterface(filepath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 233 String filePath = sLastResFilePath.get(projPath);
235 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH);
467 for (String filePath : filePaths) {
468 mResFileCombo.add(filePath);
  /cts/tools/host/src/com/android/cts/
TestHost.java 359 String filePath = getConfigFilePath(cfgPath);
361 if (loadConfig(filePath) == false) {
390 * @param filePath The file path.
393 static private String getConfigFilePath(final String filePath) {
394 if (filePath != null) {
395 if (!HostUtils.isFileExist(filePath)) {
396 Log.e("Configuration file \"" + filePath + "\" doesn't exist.", null);
404 return filePath;
HostConfig.java 636 String filePath = mRoot + File.separator + fileName;
637 writeToFile(zipFile.getInputStream(entry), filePath);
638 filePathList.add(filePath);
640 xmlFilePath = filePath;
648 for (String filePath : filePathList) {
649 deleteFile(filePath);
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 276 String filePath = c.getString(1);
334 String filePath = null;
408 if (filePath == null) {
414 filePath = c.getString(1);
417 bitmap = ThumbnailUtils.createVideoThumbnail(filePath, kind);
419 bitmap = ThumbnailUtils.createImageThumbnail(filePath, kind);
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 108 private static final String CACHE_FILE_PATH_COL = "filepath";
628 final String query = "SELECT filepath, lastmodify, etag, expires, "
752 final String query = "SELECT contentlength, filepath FROM cache ORDER BY expires ASC";
758 pathStr.append("DELETE FROM cache WHERE filepath IN (?");
775 String filePath = cursor.getString(1);
776 statement.bindString(index, filePath);
777 pathList.add(filePath);
807 cursor = mCacheDatabase.rawQuery("SELECT filepath FROM cache",
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContextWrapperTest.java 388 String filePath;
391 filePath = mContextWrapper.getFilesDir().toString();
392 assertNotNull(filePath);
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java     [all...]

Completed in 332 milliseconds

1 2