Searched refs:obj (Results 1 - 25 of 234) sorted by relevance

12345678910

/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;
H A DExifTag.java457 public boolean setValue(Object obj) { argument
458 if (obj == null) {
460 } else if (obj instanceof Short) {
461 return setValue(((Short) obj).shortValue() & 0x0ffff);
462 } else if (obj instanceof String) {
463 return setValue((String) obj);
464 } else if (obj instanceof int[]) {
465 return setValue((int[]) obj);
466 } else if (obj instanceof long[]) {
467 return setValue((long[]) obj);
962 equals(Object obj) argument
[all...]
/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;
H A DExifTag.java457 public boolean setValue(Object obj) { argument
458 if (obj == null) {
460 } else if (obj instanceof Short) {
461 return setValue(((Short) obj).shortValue() & 0x0ffff);
462 } else if (obj instanceof String) {
463 return setValue((String) obj);
464 } else if (obj instanceof int[]) {
465 return setValue((int[]) obj);
466 } else if (obj instanceof long[]) {
467 return setValue((long[]) obj);
962 equals(Object obj) argument
[all...]
/packages/apps/Launcher3/WallpaperPicker/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;
H A DExifTag.java457 public boolean setValue(Object obj) { argument
458 if (obj == null) {
460 } else if (obj instanceof Short) {
461 return setValue(((Short) obj).shortValue() & 0x0ffff);
462 } else if (obj instanceof String) {
463 return setValue((String) obj);
464 } else if (obj instanceof int[]) {
465 return setValue((int[]) obj);
466 } else if (obj instanceof long[]) {
467 return setValue((long[]) obj);
962 equals(Object obj) argument
[all...]
/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;
H A DExifTag.java457 public boolean setValue(Object obj) { argument
458 if (obj == null) {
460 } else if (obj instanceof Short) {
461 return setValue(((Short) obj).shortValue() & 0x0ffff);
462 } else if (obj instanceof String) {
463 return setValue((String) obj);
464 } else if (obj instanceof int[]) {
465 return setValue((int[]) obj);
466 } else if (obj instanceof long[]) {
467 return setValue((long[]) obj);
962 equals(Object obj) argument
[all...]
/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/UnifiedEmail/src/com/android/mail/lib/base/
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);
H A DFunction.java62 boolean equals(Object obj); argument
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
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);
H A DFunction.java63 boolean equals(Object obj); argument
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DAdvertiseClient.java61 public boolean equals(Object obj) { argument
62 if (this == obj) {
65 if (obj == null || getClass() != obj.getClass()) {
68 AdvertiseClient other = (AdvertiseClient) obj;
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DDateBucket.java38 public boolean equals(Object obj) { argument
39 if (this == obj) {
42 if (obj == null) {
45 if (!(obj instanceof DateBucket)) {
48 DateBucket other = (DateBucket) obj;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMediaSource.java80 MediaObject obj;
82 obj = pid.path.getObject();
83 if (obj == null) {
85 obj = createMediaObject(pid.path);
91 if (obj != null) {
92 consumer.consume(pid.id, (MediaItem) 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/InCallUI/src/com/android/incallui/
H A DLog.java45 public static void d(Object obj, String msg) { argument
47 android.util.Log.d(TAG, getPrefix(obj) + msg);
51 public static void d(Object obj, String str1, Object str2) { argument
53 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
57 public static void v(Object obj, String msg) { argument
59 android.util.Log.v(TAG, getPrefix(obj) + msg);
63 public static void v(Object obj, String str1, Object str2) { argument
65 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
77 public static void e(Object obj, String msg, Exception e) { argument
78 android.util.Log.e(TAG, getPrefix(obj)
81 e(Object obj, String msg) argument
89 i(Object obj, String msg) argument
93 w(Object obj, String msg) argument
97 wtf(Object obj, String msg) argument
167 getPrefix(Object obj) argument
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java57 SomeArgs args = (SomeArgs) msg.obj;
64 Log.w(this, "answerCall, unknown call id: %s", msg.obj);
72 SomeArgs args = (SomeArgs) msg.obj;
88 call = mCallIdMapper.getCall(msg.obj);
92 Log.w(this, "playDtmfTone, unknown call id: %s", msg.obj);
96 call = mCallIdMapper.getCall(msg.obj);
100 Log.w(this, "stopDtmfTone, unknown call id: %s", msg.obj);
104 call = mCallIdMapper.getCall(msg.obj);
106 call = mCallIdMapper.getCall(msg.obj);
110 Log.w(this, "postDialContinue, unknown call id: %s", msg.obj);
[all...]

Completed in 652 milliseconds

12345678910