Searched defs:extension (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DMmsFileProvider.java53 File getFile(final String path, final String extension) { argument
H A DMediaScratchFileProvider.java67 public static Uri buildMediaScratchSpaceUri(final String extension) { argument
68 final Uri uri = FileProvider.buildFileUri(AUTHORITY, extension);
69 final File file = getFileWithExtension(uri.getPath(), extension);
86 File getFile(final String path, final String extension) { argument
87 return getFileWithExtension(path, extension);
90 private static File getFileWithExtension(final String path, final String extension) { argument
93 TextUtils.isEmpty(extension) ? path : path + "." + extension);
H A DFileProvider.java39 abstract File getFile(final String path, final String extension); argument
79 * @param extension optional file extension
82 protected static Uri buildFileUri(final String authority, final String extension) { argument
87 if (!TextUtils.isEmpty(extension)) {
88 builder.appendQueryParameter(FILE_EXTENSION_PARAM_KEY, extension);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppReceiveFileInfo.java143 String extension = null;
150 extension = "";
153 extension = filename.substring(dotIndex);
158 String fullfilename = chooseUniquefilename(filename, extension);
212 private static String chooseUniquefilename(String filename, String extension) { argument
213 String fullfilename = filename + extension;
233 fullfilename = filename + sequence + extension;
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DTransformingTouchDelegate.java56 public void extendTouchBounds(float extension) { argument
57 mTouchExtension = extension;
/packages/apps/Messaging/src/com/android/messaging/util/
H A DFileUtil.java38 private static synchronized File getNewFile(File directory, String extension, argument
42 final String numberedFileNameFormat = dateFormat.format(date) + "_%02d" + "." + extension;
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
H A DRecorder.java146 public void startRecording(int outputfileformat, String extension, Context context) { argument
155 mSampleFile = File.createTempFile(SAMPLE_PREFIX, extension, sampleDir);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFilenameUtils.java50 * <li>the extension - txt</li>
96 * The extension separator character.
102 * The extension separator String.
568 * Returns the index of the last extension separator character, which is a dot.
823 * Gets the base name, minus the full path and extension, from a full filename.
844 * Gets the extension of a filename.
857 * @param filename the filename to retrieve the extension of.
858 * @return the extension of the file or an empty string if none exists.
874 * Removes the extension from a filename.
888 * @return the filename minus the extension
1010 isExtension(String filename, String extension) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java674 protected static CompressFormat convertExtensionToCompressFormat(String extension) { argument
675 return extension.equals("png") ? CompressFormat.PNG : CompressFormat.JPEG;
/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 1021 milliseconds