Searched defs:pathName (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DMovie.java51 public static Movie decodeFile(String pathName) { argument
54 is = new FileInputStream(pathName);
H A DBitmapRegionDecoder.java134 * @param pathName complete path name for the file to be decoded.
145 public static BitmapRegionDecoder newInstance(String pathName, argument
151 stream = new FileInputStream(pathName);
H A DBitmapFactory.java290 * @param pathName complete path name for the file to be decoded.
297 public static Bitmap decodeFile(String pathName, Options opts) { argument
301 stream = new FileInputStream(pathName);
324 * @param pathName complete path name for the file to be decoded.
327 public static Bitmap decodeFile(String pathName) { argument
328 return decodeFile(pathName, null);
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DClassPathScanner.java44 * @param pathName the relative path of the class path entry
96 public boolean accept(String pathName) { argument
97 return !pathName.contains("$");
120 public boolean accept(String pathName) { argument
121 return pathName.startsWith(mPkgName);
144 public boolean accept(String pathName) { argument
145 return !pathName.startsWith(mPkgName);
/frameworks/base/tools/aapt/
H A DPackage.cpp41 bool okayToCompress(Bundle* bundle, const String8& pathName);
416 bool okayToCompress(Bundle* bundle, const String8& pathName) argument
418 String8 ext = pathName.getPathExtension();
432 int pos = pathName.length() - strlen(str);
436 const char* path = pathName.string();
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java893 public static Drawable createFromPath(String pathName) { argument
894 if (pathName == null) {
898 Bitmap bm = BitmapFactory.decodeFile(pathName);
900 return drawableFromBitmap(null, bm, null, null, null, pathName);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1057 Asset* AssetManager::openAssetFromFileLocked(const String8& pathName, argument
1062 if (strcasecmp(pathName.getPathExtension().string(), ".gz") == 0) {
1063 //printf("TRYING '%s'\n", (const char*) pathName);
1064 pAsset = Asset::createFromCompressedFile(pathName.string(), mode);
1066 //printf("TRYING '%s'\n", (const char*) pathName);
1067 pAsset = Asset::createFromFile(pathName.string(), mode);

Completed in 100 milliseconds