Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DBidiFormatter.java846 byte dirType = getCachedDirectionality(lastChar); in dirTypeForward()
850 dirType = skipTagForward(); in dirTypeForward()
852 dirType = skipEntityForward(); in dirTypeForward()
855 return dirType; in dirTypeForward()
876 byte dirType = getCachedDirectionality(lastChar); in dirTypeBackward()
880 dirType = skipTagBackward(); in dirTypeBackward()
882 dirType = skipEntityBackward(); in dirTypeBackward()
885 return dirType; in dirTypeBackward()
/frameworks/base/core/java/android/app/
DDownloadManager.java522 public Request setDestinationInExternalFilesDir(Context context, String dirType, in setDestinationInExternalFilesDir() argument
524 final File file = context.getExternalFilesDir(dirType); in setDestinationInExternalFilesDir()
563 public Request setDestinationInExternalPublicDir(String dirType, String subPath) { in setDestinationInExternalPublicDir() argument
564 File file = Environment.getExternalStoragePublicDirectory(dirType); in setDestinationInExternalPublicDir()
575 extras.putString(Downloads.DIR_TYPE, dirType); in setDestinationInExternalPublicDir()
/frameworks/base/core/java/android/os/
DEnvironment.java1092 public static File[] buildExternalStoragePublicDirs(@NonNull String dirType) { in buildExternalStoragePublicDirs() argument
1094 return sCurrentUser.buildExternalStoragePublicDirs(dirType); in buildExternalStoragePublicDirs()