/frameworks/support/tests/java/android/support/v4/content/ |
D | FileProviderTest.java | 64 File file = buildPath(mContext.getFilesDir(), "file.test"); in testStrategyUriSimple() 68 file = buildPath(mContext.getFilesDir(), "subdir", "file.test"); in testStrategyUriSimple() 72 file = buildPath(Environment.getExternalStorageDirectory(), "file.test"); in testStrategyUriSimple() 84 File file = buildPath(mContext.getFilesDir(), "..", "file.test"); in testStrategyUriJumpOutside() 97 File file = buildPath(mContext.getFilesDir(), "file.test"); in testStrategyUriShortestRoot() 105 file = buildPath(mContext.getFilesDir(), "file.test"); in testStrategyUriShortestRoot() 114 File file = buildPath(mContext.getFilesDir(), "file.test"); in testStrategyFileSimple() 118 file = buildPath(mContext.getFilesDir(), "subdir", "file.test"); in testStrategyFileSimple() 138 File file = buildPath(mContext.getFilesDir(), "lol\"wat?foo&bar", "wat.txt"); in testStrategyEscaping() 151 File file = buildPath(mContext.getFilesDir(), "file.txt"); in testStrategyExtraParams() [all …]
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | PathsCacheActivity.java | 51 buildPath(path); in makePath() 55 private static void buildPath(Path path) { in buildPath() method in PathsCacheActivity 99 buildPath(mPath); in onDraw() 106 buildPath(mPath); in onDraw()
|
D | ScaledTextActivity.java | 82 buildPath(path); in makePath() 86 private static void buildPath(Path path) { in buildPath() method in ScaledTextActivity.ScaledTextView
|
D | TextOnPathActivity.java | 46 buildPath(path); in makePath() 50 private static void buildPath(Path path) { in buildPath() method in TextOnPathActivity
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | ContextCompat.java | 168 single = buildPath(Environment.getExternalStorageDirectory(), DIR_ANDROID, DIR_OBB, in getObbDirs() 228 single = buildPath(Environment.getExternalStorageDirectory(), DIR_ANDROID, DIR_DATA, in getExternalFilesDirs() 288 single = buildPath(Environment.getExternalStorageDirectory(), DIR_ANDROID, DIR_DATA, in getExternalCacheDirs() 295 private static File buildPath(File base, String... segments) { in buildPath() method in ContextCompat
|
D | FileProvider.java | 577 target = buildPath(DEVICE_ROOT, path); in parsePathStrategy() 579 target = buildPath(context.getFilesDir(), path); in parsePathStrategy() 581 target = buildPath(context.getCacheDir(), path); in parsePathStrategy() 583 target = buildPath(Environment.getExternalStorageDirectory(), path); in parsePathStrategy() 752 private static File buildPath(File base, String... segments) { in buildPath() method in FileProvider
|
/frameworks/base/services/core/java/com/android/server/ |
D | SystemConfig.java | 149 readPermissions(Environment.buildPath( in SystemConfig() 152 readPermissions(Environment.buildPath( in SystemConfig() 155 readPermissions(Environment.buildPath( in SystemConfig() 157 readPermissions(Environment.buildPath( in SystemConfig()
|
/frameworks/base/core/java/android/os/ |
D | Environment.java | 347 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB); in getLegacyExternalStorageObbDirectory() 755 result[i] = buildPath(base[i], segments); in buildPaths() 765 public static File buildPath(File base, String... segments) { in buildPath() method in Environment
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 7880 info.nativeLibraryRootDir = Environment.buildPath(new File(apkRoot), libDir, in setNativeLibraryPaths() 7885 info.secondaryNativeLibraryDir = Environment.buildPath(new File(apkRoot), in setNativeLibraryPaths()
|