Searched defs:obj (Results 1 - 25 of 57) sorted by relevance

123

/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
H A DFunction.java62 boolean equals(Object obj); argument
H A DPredicate.java58 boolean equals(Object obj); argument
H A DPlatform.java33 static boolean isInstance(Class<?> clazz, Object obj) { argument
34 return clazz.isInstance(obj);
/packages/apps/Camera2/src/com/android/camera/exif/
H A DRational.java70 public boolean equals(Object obj) { argument
71 if (obj == null) {
74 if (this == obj) {
77 if (obj instanceof Rational) {
78 Rational data = (Rational) obj;
H A DIfdData.java127 public boolean equals(Object obj) { argument
128 if (this == obj) {
131 if (obj == null) {
134 if (obj instanceof IfdData) {
135 IfdData data = (IfdData) obj;
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DRational.java70 public boolean equals(Object obj) { argument
71 if (obj == null) {
74 if (this == obj) {
77 if (obj instanceof Rational) {
78 Rational data = (Rational) obj;
H A DIfdData.java127 public boolean equals(Object obj) { argument
128 if (this == obj) {
131 if (obj == null) {
134 if (obj instanceof IfdData) {
135 IfdData data = (IfdData) obj;
/packages/apps/Launcher3/src/com/android/gallery3d/exif/
H A DRational.java70 public boolean equals(Object obj) { argument
71 if (obj == null) {
74 if (this == obj) {
77 if (obj instanceof Rational) {
78 Rational data = (Rational) obj;
H A DIfdData.java127 public boolean equals(Object obj) { argument
128 if (this == obj) {
131 if (obj == null) {
134 if (obj instanceof IfdData) {
135 IfdData data = (IfdData) obj;
/packages/apps/Mms/src/com/android/mms/exif/
H A DRational.java70 public boolean equals(Object obj) { argument
71 if (obj == null) {
74 if (this == obj) {
77 if (obj instanceof Rational) {
78 Rational data = (Rational) obj;
H A DIfdData.java127 public boolean equals(Object obj) { argument
128 if (this == obj) {
131 if (obj == null) {
134 if (obj instanceof IfdData) {
135 IfdData data = (IfdData) obj;
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DFunction.java63 boolean equals(Object obj); argument
H A DPlatform.java33 static boolean isInstance(Class<?> clazz, Object obj) { argument
34 return clazz.isInstance(obj);
H A DPredicate.java58 boolean equals(Object obj); argument
/packages/experimental/TestBack/src/foo/bar/testback/
H A DFoo.java16 public boolean equals(Object obj) { argument
17 if (this == obj)
19 if (obj == null)
21 if (getClass() != obj.getClass())
23 Foo other = (Foo) obj;
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/database/
H A DNoNullCursorAsyncQueryHandlerTest.java71 cursorHolder.obj = cursor;
72 ranHolder.obj = true;
81 assertFalse(cursorHolder.obj == null);
82 assertTrue(ranHolder.obj);
98 ranHolder.obj = true;
99 cookieHolder.obj = cookie;
108 assertSame(cookie, cookieHolder.obj);
109 assertTrue(ranHolder.obj);
125 ranHolder.obj = true;
126 cursorHolder.obj
140 public T obj; field in class:NoNullCursorAsyncQueryHandlerTest.ObjectHolder
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DFace.java53 public boolean equals(Object obj) { argument
54 if (obj instanceof Face) {
55 Face face = (Face) obj;
/packages/apps/Camera2/src/com/android/camera/util/
H A DApiHelper.java56 Class<?> obj, int defaultVal) {
59 return f.getInt(obj);
55 getIntFieldIfExists(Class<?> klass, String fieldName, Class<?> obj, int defaultVal) argument
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfo.java60 public boolean equals(Object obj) { argument
61 if (this == obj) return true;
62 if (obj == null) return false;
63 if (getClass() != obj.getClass()) return false;
64 ContactInfo other = (ContactInfo) obj;
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/
H A DSimpleDate.java64 public boolean equals(Object obj) { argument
65 if (this == obj)
67 if (obj == null)
69 if (!(obj instanceof SimpleDate))
71 SimpleDate other = (SimpleDate) obj;
/packages/apps/InCallUI/src/com/android/incallui/
H A DLog.java38 public static void d(Object obj, String msg) { argument
40 android.util.Log.d(TAG, getPrefix(obj) + msg);
44 public static void d(Object obj, String str1, Object str2) { argument
46 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
50 public static void v(Object obj, String msg) { argument
52 android.util.Log.v(TAG, getPrefix(obj) + msg);
56 public static void v(Object obj, String str1, Object str2) { argument
58 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
70 public static void e(Object obj, String msg, Exception e) { argument
71 android.util.Log.e(TAG, getPrefix(obj)
74 e(Object obj, String msg) argument
82 i(Object obj, String msg) argument
86 w(Object obj, String msg) argument
90 wtf(Object obj, String msg) argument
94 getPrefix(Object obj) argument
[all...]
/packages/apps/Mms/src/com/android/mms/data/
H A DContactList.java153 public boolean equals(Object obj) { argument
155 ContactList other = (ContactList)obj;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAccountWithDataSet.java69 public boolean equals(Object obj) { argument
70 if (obj instanceof AccountWithDataSet) {
71 AccountWithDataSet other = (AccountWithDataSet) obj;
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFingerprint.java154 public boolean equals(Object obj) { argument
155 if (this == obj) return true;
156 if (!(obj instanceof Fingerprint)) return false;
157 Fingerprint other = (Fingerprint) obj;
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
H A DContactPhotoManager.java134 public boolean equals(Object obj) { argument
135 if (this == obj)
137 if (obj == null)
139 if (getClass() != obj.getClass())
141 ContactIdentifier other = (ContactIdentifier) obj;

Completed in 430 milliseconds

123