Searched defs:dir (Results 1 - 22 of 22) sorted by relevance

/packages/apps/Launcher3/
H A Dupdate_gallery_files.py49 dir = os.path.dirname(file_path) variable
52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir)
H A Dupdate_system_wallpaper_cropper.py53 dir = os.path.dirname(file_path) variable
54 dir = dir.replace("launcher3", "wallpapercropper") variable
55 dir = dir.replace(src_dir, "src/") variable
56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir)
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
H A DIOFileFilter.java49 * @param dir the directory File to check
53 public boolean accept(File dir, String name); argument
H A DAbstractFileFilter.java48 * @param dir the directory File to check
52 public boolean accept(File dir, String name) { argument
53 return accept(new File(dir, name));
H A DDelegateFileFilter.java82 * @param dir the directory
86 public boolean accept(File dir, String name) { argument
88 return filenameFilter.accept(dir, name);
90 return super.accept(dir, name);
H A DFalseFileFilter.java64 * @param dir the directory to check
68 public boolean accept(File dir, String name) { argument
H A DRegexFileFilter.java34 * File dir = new File(".");
36 * File[] files = dir.listFiles(fileFilter);
114 * @param dir the file directory
118 public boolean accept(File dir, String name) { argument
H A DTrueFileFilter.java64 * @param dir the directory to check
68 public boolean accept(File dir, String name) { argument
H A DWildcardFileFilter.java40 * File dir = new File(".");
42 * File[] files = dir.listFiles(fileFilter);
146 * @param dir the file directory
151 public boolean accept(File dir, String name) { argument
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DFileUtils.java40 public static boolean deleteFilteredFiles(final File dir, final FilenameFilter fileNameFilter) { argument
41 if (!dir.isDirectory()) {
44 final File[] files = dir.listFiles(fileNameFilter);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
H A DPersonalizationHelper.java104 public boolean accept(final File dir, final String name) { argument
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dfile_utils.cpp46 DIR *const dir = opendir(dirPath); local
47 if (dir == NULL) {
50 closedir(dir);
61 DIR *const dir = opendir(dirPath); local
62 if (dir == NULL) {
63 AKLOGE("Cannot open dir %s.", dirPath);
67 while ((dirent = readdir(dir)) != NULL) {
79 closedir(dir);
83 closedir(dir);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/
H A DUserHistoryDictionaryTests.java41 private static void printAllFiles(final File dir) { argument
42 Log.d(TAG, dir.getAbsolutePath());
43 for (final File file : dir.listFiles()) {
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_hfp.cpp726 static jboolean clccResponseNative(JNIEnv *env, jobject object, jint index, jint dir, argument
743 if ( (status = sBluetoothHfpInterface->clcc_response(index, (bthf_call_direction_t) dir,
H A Dcom_android_bluetooth_hfpclient.cpp194 static void current_calls_cb (int index, bthf_client_call_direction_t dir, argument
203 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onCurrentCalls, index, dir, state, mpty, js_number);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DGalleryUtils.java66 private static final String DIR_TYPE_IMAGE = "vnd.android.cursor.dir/image";
67 private static final String DIR_TYPE_VIDEO = "vnd.android.cursor.dir/video";
320 public static String searchDirForPath(File dir, int bucketId) { argument
321 File[] files = dir.listFiles();
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DHelpers.java524 private static boolean containsCanonical(File dir, File file) throws IOException { argument
525 return FileUtils.contains(dir.getCanonicalFile(), file);
529 for (File dir : dirs) {
530 if (containsCanonical(dir, file)) {
/packages/apps/Email/provider_src/com/android/email/service/
H A DAttachmentService.java1229 public boolean canPrefetchForAccount(final Account account, final File dir) { argument
1239 final long totalStorage = dir.getTotalSpace();
1240 final long usableStorage = dir.getUsableSpace();
1263 File[] files = dir.listFiles();
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachine.java2537 private void onCurrentCalls(int index, int dir, int state, int mparty, String number) { argument
2540 event.valueInt2 = dir;
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java3444 private native boolean clccResponseNative(int index, int dir, int status, int mode, argument
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 981 milliseconds