Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 230) sorted by relevance

12345678910

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DFileUtils.java241 public static File[] convertFileCollectionToFileArray(Collection<File> files) { in convertFileCollectionToFileArray() argument
242 return files.toArray(new File[files.size()]); in convertFileCollectionToFileArray()
254 private static void innerListFiles(Collection<File> files, File directory, in innerListFiles() argument
260 innerListFiles(files, found[i], filter); in innerListFiles()
262 files.add(found[i]); in innerListFiles()
317 Collection<File> files = new java.util.LinkedList<File>(); in listFiles() local
318 innerListFiles(files, directory, in listFiles()
320 return files; in listFiles()
510 File[] files = new File[urls.length]; in toFiles() local
518 files[i] = toFile(url); in toFiles()
[all …]
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile45 # format and will distribute the generated files over these directories.
47 # source files, where putting all generated files in the same directory would
115 # path before files name in the file list and in the header files. If set
220 # Doxygen selects the parser to use depending on the extension of the files it parses.
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
228 # FILE_PATTERNS otherwise the files are not read by doxygen.
289 # For small to medium size projects (<1000 input files) the default value is
324 # defined locally in source files will be included in the documentation.
325 # If set to NO only classes defined in header files are included.
345 # undocumented members of documented classes, files or namespaces.
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile45 # format and will distribute the generated files over these directories.
47 # source files, where putting all generated files in the same directory would
115 # path before files name in the file list and in the header files. If set
220 # Doxygen selects the parser to use depending on the extension of the files it parses.
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
228 # FILE_PATTERNS otherwise the files are not read by doxygen.
289 # For small to medium size projects (<1000 input files) the default value is
324 # defined locally in source files will be included in the documentation.
325 # If set to NO only classes defined in header files are included.
345 # undocumented members of documented classes, files or namespaces.
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile45 # format and will distribute the generated files over these directories.
47 # source files, where putting all generated files in the same directory would
115 # path before files name in the file list and in the header files. If set
220 # Doxygen selects the parser to use depending on the extension of the files it parses.
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
228 # FILE_PATTERNS otherwise the files are not read by doxygen.
289 # For small to medium size projects (<1000 input files) the default value is
324 # defined locally in source files will be included in the documentation.
325 # If set to NO only classes defined in header files are included.
345 # undocumented members of documented classes, files or namespaces.
[all …]
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile45 # format and will distribute the generated files over these directories.
47 # source files, where putting all generated files in the same directory would
115 # path before files name in the file list and in the header files. If set
220 # Doxygen selects the parser to use depending on the extension of the files it parses.
226 # .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran),
228 # FILE_PATTERNS otherwise the files are not read by doxygen.
289 # For small to medium size projects (<1000 input files) the default value is
324 # defined locally in source files will be included in the documentation.
325 # If set to NO only classes defined in header files are included.
345 # undocumented members of documented classes, files or namespaces.
[all …]
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
DBugReportListActivity.java154 File[] files = REPORT_DIR.listFiles(); in scanDirectory() local
155 if (files == null) return; in scanDirectory()
158 Arrays.sort(files, Collections.reverseOrder()); in scanDirectory()
159 for (int i = 0; i < files.length; i++) { in scanDirectory()
160 String name = files[i].getName(); in scanDirectory()
163 Log.w(TAG, "Ignoring non-bugreport: " + files[i]); in scanDirectory()
169 mFiles.add(files[i]); in scanDirectory()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DFileUtils.java28 final File[] files = path.listFiles(); in deleteRecursively() local
29 if (files != null) { in deleteRecursively()
30 for (final File child : files) { in deleteRecursively()
42 final File[] files = dir.listFiles(fileNameFilter); in deleteFilteredFiles() local
43 if (files == null) { in deleteFilteredFiles()
47 for (final File file : files) { in deleteFilteredFiles()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DStorageUtils.java147 final List<ConcreteFile> files = listFilesRecursive( in freeCacheStorage() local
151 Slog.d(TAG, "Found " + files.size() + " downloads on cache"); in freeCacheStorage()
153 Collections.sort(files, new Comparator<ConcreteFile>() { in freeCacheStorage()
161 for (ConcreteFile file : files) { in freeCacheStorage()
205 final ArrayList<ConcreteFile> files = Lists.newArrayList(); in listFilesRecursive() local
222 files.add(file); in listFilesRecursive()
229 return files; in listFilesRecursive()
/packages/apps/Launcher3/
DAndroid.mk28 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
29 $(call all-java-files-under, WallpaperPicker/src) \
30 $(call all-renderscript-files-under, src) \
31 $(call all-proto-files-under, protos)
57 LOCAL_SRC_FILES := $(call all-java-files-under, util) \
58 $(call all-proto-files-under, protos)
/packages/inputmethods/LatinIME/tools/dicttool/
DAndroid.mk83 LOCAL_MAIN_SRC_FILES := $(call all-java-files-under, $(MAKEDICT_CORE_SRC_DIR))
84 LOCAL_TOOL_SRC_FILES := $(call all-java-files-under, src)
85 LOCAL_ANNOTATIONS_SRC_FILES := $(call all-java-files-under, $(LATINIME_ANNOTATIONS_SRC_DIR))
89 $(call all-java-files-under, $(DICTTOOL_COMPAT_TESTS_DIR)) \
92 $(call all-java-files-under, tests) \
93 $(call all-java-files-under, $(DICTTOOL_ONDEVICE_TESTS_DIR))
/packages/apps/Launcher3/util/com/android/launcher3/
DDecoderRing.java88 List<File> files = new LinkedList<File>(); in main() local
117 files.add(new File(args[i])); in main()
124 if (defaultType == null && files.isEmpty()) { in main()
129 if (files.size() > 1 && defaultType != null) { in main()
134 if (files.isEmpty()) { in main()
135 files.add(new File(STANDARD_IN)); in main()
138 for (File source : files) { in main()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DPhotoStore.java88 File[] files = mStorePath.listFiles(); in clear() local
89 if (files != null) { in clear()
90 for (File file : files) { in clear()
119 File[] files = mStorePath.listFiles(); in initialize() local
120 if (files == null) { in initialize()
123 for (File file : files) { in initialize()
/packages/apps/Nfc/
DAndroid.mk11 $(call all-java-files-under, src)
14 $(call all-java-files-under, nxp)
33 $(call all-java-files-under, src)
36 $(call all-java-files-under, nci)
/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaUpgradeReceiver.java61 String[] files = dbDir.list(); in onReceive() local
62 if (files == null) return; in onReceive()
63 for (int i=0; i<files.length; i++) { in onReceive()
64 String file = files[i]; in onReceive()
/packages/apps/Email/
DAndroid.mk35 LOCAL_SRC_FILES := $(call all-java-files-under, $(unified_email_dir)/src)
36 LOCAL_SRC_FILES += $(call all-java-files-under, src/com/android)
37 LOCAL_SRC_FILES += $(call all-java-files-under, provider_src/com/android)
38 LOCAL_SRC_FILES += $(call all-java-files-under, src/com/beetstra)
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DRecognizerLogger.java200 File[] files = (new File(mDatedPath)).getParentFile().listFiles(ff); in deleteOldest() local
201 Arrays.sort(files); in deleteOldest()
203 for (int i = 0; i < files.length - MAX_FILES; i++) { in deleteOldest()
204 files[i].delete(); in deleteOldest()
/packages/apps/Browser/src/com/android/browser/homepages/
DRequestHandler.java160 final File[] files = f.listFiles(); in writeFolderIndex() local
161 Arrays.sort(files, sFileComparator); in writeFolderIndex()
170 File f = files[index]; in writeFolderIndex()
210 return (++index) < files.length; in writeFolderIndex()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
DEmptyFileFilter.java77 File[] files = file.listFiles(); in accept() local
78 return (files == null || files.length == 0); in accept()
/packages/apps/Camera2/
DAndroid.mk12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
13 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd)
14 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd_gcam)
/packages/apps/Gallery2/
DAndroid.mk18 prev_compiled_rs_files := $(call all-renderscript-files-under, src)
23 LOCAL_SRC_FILES := $(call all-java-files-under, src) $(prev_compiled_rs_files)
24 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd)
/packages/apps/Email/emailcommon/
DAndroid.mk35 LOCAL_SRC_FILES := $(call all-java-files-under, src/com/android/emailcommon)
41 LOCAL_SRC_FILES += $(call all-java-files-under, $(apache_src_dir))
43 LOCAL_SRC_FILES += $(call all-java-files-under, $(unified_email_src_dir)/com/android/emailcommon)
/packages/apps/Browser/src/com/android/browser/provider/
DBrowserProvider.java376 File[] files = currentDir.listFiles(); in removeGears() local
377 for (int i = 0; i < files.length; ++i) { in removeGears()
378 if (files[i].isDirectory()) { in removeGears()
379 deleteDirectory(files[i]); in removeGears()
381 files[i].delete(); in removeGears()
/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
DGalleryWidgetMigrator.java133 File[] files = root.listFiles(); in updatePath() local
134 if (files != null) { in updatePath()
135 for (File file : files) { in updatePath()
/packages/apps/Email/provider_src/com/android/email/provider/
DAttachmentProvider.java84 final File[] files = getContext().getCacheDir().listFiles(); in onCreate() local
85 if (files != null) { in onCreate()
86 for (File file : files) { in onCreate()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DAttachmentUtilities.java375 File[] files = getAttachmentDirectory(context, accountId).listFiles(); in deleteAllAccountAttachmentFiles() local
376 if (files == null) return; in deleteAllAccountAttachmentFiles()
377 for (File file : files) { in deleteAllAccountAttachmentFiles()

12345678910