Home
last modified time | relevance | path

Searched refs:dirType (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/text/
DBidiFormatter.java851 byte dirType = getCachedDirectionality(lastChar); in dirTypeForward()
855 dirType = skipTagForward(); in dirTypeForward()
857 dirType = skipEntityForward(); in dirTypeForward()
860 return dirType; in dirTypeForward()
881 byte dirType = getCachedDirectionality(lastChar); in dirTypeBackward()
885 dirType = skipTagBackward(); in dirTypeBackward()
887 dirType = skipEntityBackward(); in dirTypeBackward()
890 return dirType; in dirTypeBackward()
/frameworks/base/core/java/android/app/
DDownloadManager.java515 public Request setDestinationInExternalFilesDir(Context context, String dirType, in setDestinationInExternalFilesDir() argument
517 final File file = context.getExternalFilesDir(dirType); in setDestinationInExternalFilesDir()
556 public Request setDestinationInExternalPublicDir(String dirType, String subPath) { in setDestinationInExternalPublicDir() argument
557 File file = Environment.getExternalStoragePublicDirectory(dirType); in setDestinationInExternalPublicDir()
568 extras.putString(Downloads.DIR_TYPE, dirType); in setDestinationInExternalPublicDir()
/frameworks/base/core/java/android/os/
DEnvironment.java949 public static File[] buildExternalStoragePublicDirs(@NonNull String dirType) { in buildExternalStoragePublicDirs() argument
951 return sCurrentUser.buildExternalStoragePublicDirs(dirType); in buildExternalStoragePublicDirs()