Searched refs:file (Results 76 - 100 of 143) sorted by relevance

123456

/packages/apps/Browser/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Email/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Exchange/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Exchange/exchange2/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Exchange/exchange2/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Exchange/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Gallery2/gallerycommon/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/KeyChain/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/KeyChain/support/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/KeyChain/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Launcher2/tests/stress/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Mms/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Mms/tests/SmsAutoReply/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Nfc/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/experimental/RpcPerformance/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/experimental/StrictModeTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/experimental/procstatlog/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DSaveCopyTask.java5 * you may not use this file except in compliance with the License.
294 * Insert the content (saved file) with proper source photo properties.
296 public static Uri insertContent(Context context, Uri sourceUri, File file, String saveFileName) { argument
301 values.put(Images.Media.DISPLAY_NAME, file.getName());
307 values.put(Images.Media.DATA, file.getAbsolutePath());
308 values.put(Images.Media.SIZE, file.length());
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DMiscFilesHandler.java5 * you may not use this file except in compliance with the License.
115 // delete the file
116 File file = new File(mAdapter.getItem(i).mFileName);
117 if (file.isDirectory()) {
118 deleteDir(file);
120 file.delete();
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailContentTable.java5 * you may not use this file except in compliance with the License.
139 /** Generates a random file for storing audio data. */
146 // If we are unable to create a temporary file, something went horribly wrong.
147 throw new RuntimeException("unable to create temp file", e);
173 Log.w(TAG, "No filename for uri " + uriData.getUri() + ", cannot delete file");
176 File file = new File(filename);
177 if (file.exists()) {
178 boolean success = file.delete();
180 Log.e(TAG, "Failed to delete file: " + file
[all...]
/packages/apps/Browser/tools/
H A Dget_search_engines.py6 # you may not use this file except in compliance with the License.
50 creates a locale specific donottranslate-search_engines.xml file.
73 string suitable to write to our XML data file by stripping away NULLs,
96 The returned strings are in the same order as in the Chrome source data file
105 # " <name> =" in the chrome data file.
110 '. Please check the chrome data file for format changes.')
148 The data comes from the Chrome data file.
150 # The Chrome data file has an array defined with the name 'engines_XX'
175 """Writes all search engines to the all_search_engines.xml file.
197 """Creates a new locale specific donottranslate-search_engines.xml file
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/util/
H A DFileUtils.java5 * you may not use this file except in compliance with the License.
53 * @return The file representing the projects root directory, {@code null} if the external
63 // Create the file which hides the media files
65 throw new FileNotFoundException("Cannot create file .nomedia");
74 * Get the filename for the specified raw resource id. Create the file if
75 * the file does not exist.
137 * Get the raw id for the mask file
139 * @param path The full file name
151 throw new IllegalArgumentException("Unknown file: " + path);
156 * Get the filename for the specified raw resource id. Create the file i
[all...]
/packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/
H A DDictionaryMaker.java5 * use this file except in compliance with the License. You may obtain a copy of
79 throw new RuntimeException("No input file specified");
84 + "file");
95 * Utility method that throws an exception if path1 and path2 point to the same file.
101 throw new RuntimeException(path1 + " and " + path2 + " are the same file: "
116 + " Converts a source dictionary file to one or several outputs.\n"
117 + " Source can be an XML file, with an optional XML bigrams file, or a\n"
118 + " binary dictionary file.\n"
122 + " unspecified if the same file i
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarDebugActivity.java5 * you may not use this file except in compliance with the License.
145 // Tell the media scanner about the new file so that it is
189 private void emailFile(File file) { argument
190 Log.i(TAG, "Drafting email to send " + file.getAbsolutePath());
195 intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMtpService.java5 * you may not use this file except in compliance with the License.
143 File file =
146 file.mkdirs();
147 subdirs[i] = file.getPath();

Completed in 1692 milliseconds

123456