Searched defs:reference (Results 1 - 9 of 9) sorted by relevance

/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DPreconditions.java168 * Ensures that an object reference passed as a parameter to the calling
171 * @param reference an object reference
172 * @return the non-null reference that was validated
173 * @throws NullPointerException if {@code reference} is null
175 public static <T> T checkNotNull(T reference) { argument
176 if (reference == null) {
179 return reference;
183 * Ensures that an object reference passed as a parameter to the calling
186 * @param reference a
192 checkNotNull(T reference, Object errorMessage) argument
216 checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileUtils.java1537 * Tests if the specified <code>File</code> is newer than the reference
1542 * @param reference the <code>File</code> of which the modification date
1545 * recently than the reference <code>File</code>
1547 * @throws IllegalArgumentException if the reference file is <code>null</code> or doesn't exist
1549 public static boolean isFileNewer(File file, File reference) { argument
1550 if (reference == null) {
1551 throw new IllegalArgumentException("No specified reference file");
1553 if (!reference.exists()) {
1554 throw new IllegalArgumentException("The reference file '"
1557 return isFileNewer(file, reference
1616 isFileOlder(File file, File reference) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DUtil.java586 public static int[] getRelativeLocation(View reference, View view) { argument
587 reference.getLocationInWindow(sLocation);
/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java704 public static int[] getRelativeLocation(View reference, View view) { argument
705 reference.getLocationInWindow(sLocation);
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java1904 * @param reference a GPS reference reperesented by a String containing "N",
1909 public static double convertLatOrLongToDouble(Rational[] coordinate, String reference) { argument
1915 if ((reference.equals("S") || reference.equals("W"))) {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1904 * @param reference a GPS reference reperesented by a String containing "N",
1909 public static double convertLatOrLongToDouble(Rational[] coordinate, String reference) { argument
1915 if ((reference.equals("S") || reference.equals("W"))) {
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifInterface.java1904 * @param reference a GPS reference reperesented by a String containing "N",
1909 public static double convertLatOrLongToDouble(Rational[] coordinate, String reference) { argument
1915 if ((reference.equals("S") || reference.equals("W"))) {
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java1904 * @param reference a GPS reference reperesented by a String containing "N",
1909 public static double convertLatOrLongToDouble(Rational[] coordinate, String reference) { argument
1915 if ((reference.equals("S") || reference.equals("W"))) {
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 375 milliseconds