Searched refs:obj (Results 26 - 50 of 234) sorted by relevance

12345678910

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanClient.java74 public boolean equals(Object obj) { argument
75 if (this == obj) {
78 if (obj == null || getClass() != obj.getClass()) {
81 ScanClient other = (ScanClient) obj;
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfo.java63 public boolean equals(Object obj) { argument
64 if (this == obj) return true;
65 if (obj == null) return false;
66 if (getClass() != obj.getClass()) return false;
67 ContactInfo other = (ContactInfo) obj;
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DIngestObjectInfo.java89 public boolean equals(Object obj) { argument
90 if (this == obj) {
93 if (obj == null) {
96 if (!(obj instanceof IngestObjectInfo)) {
99 IngestObjectInfo other = (IngestObjectInfo) obj;
H A DSimpleDate.java69 public boolean equals(Object obj) { argument
70 if (this == obj) {
73 if (obj == null) {
76 if (!(obj instanceof SimpleDate)) {
79 SimpleDate other = (SimpleDate) obj;
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcDiscoveryParameters.java103 public boolean equals(Object obj) { argument
104 if (obj == this) {
108 if ((obj == null) || (obj.getClass() != this.getClass())) {
111 NfcDiscoveryParameters params = (NfcDiscoveryParameters) obj;
/packages/apps/Nfc/nci/jni/
H A DNfcJniUtil.cpp89 ScopedLocalRef<jobject> obj(e, e->NewObject(cls.get(), ctor));
90 if (obj.get() == NULL)
96 *cachedObj = e->NewGlobalRef(obj.get());
164 jobject obj = e->NewObject(cls.get(), ctor); local
165 if (obj == NULL)
171 *cachedObj = obj;
/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/Browser/src/com/android/browser/
H A DDataController.java66 Object obj; field in class:DataController.DCMessage
70 obj = o;
88 CallbackContainer cc = (CallbackContainer) msg.obj;
153 void sendMessage(int what, Object obj) { argument
154 DCMessage m = new DCMessage(what, obj);
158 void sendMessage(int what, Object obj, Object replyTo) { argument
159 DCMessage m = new DCMessage(what, obj);
167 doUpdateVisitedHistory((String) msg.obj);
170 String[] args = (String[]) msg.obj;
177 doQueryBookmarkStatus((String) msg.obj, ms
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
H A DUserPresetsManager.java94 msg.obj = op;
114 msg.obj = op;
121 msg.obj = list;
127 (ArrayList<FilterUserPresetRepresentation>) msg.obj;
132 SaveOperation op = (SaveOperation) msg.obj;
144 UpdateOperation op = (UpdateOperation) msg.obj;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DProcessingTask.java36 msg.obj = message;
55 msg.obj = message;
63 msg.obj = result;
H A DProcessingTaskController.java45 task.onResult((ProcessingTask.Result) msg.obj);
47 task.onUpdate((ProcessingTask.Update) msg.obj);
59 task.processRequest((ProcessingTask.Request) msg.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/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperChange.java45 Parcelable obj = getIntent().getParcelableExtra(
47 if (obj == null || !(obj instanceof ComponentName)) {
53 ComponentName comp = (ComponentName)obj;
/packages/apps/Music/src/com/android/music/
H A DMusicBrowserActivity.java67 public void onServiceConnected(ComponentName classname, IBinder obj) {
73 IMediaPlaybackService serv = IMediaPlaybackService.Stub.asInterface(obj);
/packages/apps/OMA-DM/engine/javaplugin/nativelib/src/
H A DDmtJavaItem.h46 void assignValue(jobject obj, JNIEnv*& env) argument
50 mItem = mEnv->NewGlobalRef(obj);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapEmailSettingsItem.java97 public boolean equals(Object obj) { argument
98 if (this == obj)
100 if (obj == null)
102 if (getClass() != obj.getClass())
104 BluetoothMapEmailSettingsItem other = (BluetoothMapEmailSettingsItem) obj;
/packages/services/Telecomm/src/com/android/server/telecom/
H A DContactsAsyncHelper.java67 WorkerArgs args = (WorkerArgs) msg.obj;
113 WorkerArgs args = (WorkerArgs) msg.obj;
159 reply.obj = msg.obj;
239 msg.obj = args;
/packages/apps/Camera/src/com/android/camera/
H A DCameraManager.java160 setPreviewTexture(msg.obj);
165 mCamera.setPreviewDisplay((SurfaceHolder) msg.obj);
181 (PreviewCallback) msg.obj);
185 mCamera.addCallbackBuffer((byte[]) msg.obj);
189 mCamera.autoFocus((AutoFocusCallback) msg.obj);
197 setAutoFocusMoveCallback(mCamera, msg.obj);
206 (OnZoomChangeListener) msg.obj);
210 setFaceDetectionListener((FaceDetectionListener) msg.obj);
222 mCamera.setErrorCallback((ErrorCallback) msg.obj);
226 mCamera.setParameters((Parameters) msg.obj);
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DAccessibilityLongPressTimer.java50 mCallback.performLongClickOn((Key)msg.obj);
/packages/apps/Camera2/src/com/android/camera/util/
H A DApiHelper.java64 Class<?> obj, int defaultVal) {
67 return f.getInt(obj);
63 getIntFieldIfExists(Class<?> klass, String fieldName, Class<?> obj, int defaultVal) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContact.java113 public boolean equals(Object obj) { argument
114 if (obj == null) return false;
115 if (getClass() != obj.getClass()) return false;
117 final NamedDataItem other = (NamedDataItem) obj;
355 public boolean equals(Object obj) { argument
356 if (obj == null) return false;
357 if (getClass() != obj.getClass()) return false;
359 RawContact other = (RawContact) obj;
/packages/apps/Calendar/src/com/android/calendar/
H A DContactsAsyncHelper.java87 WorkerArgs args = (WorkerArgs) msg.obj;
118 reply.obj = msg.obj;
166 msg.obj = args;
215 msg.obj = args;
229 WorkerArgs args = (WorkerArgs) msg.obj;
/packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
H A DListener.java109 if (msg.obj instanceof Delta) {
110 delta = (Delta) msg.obj;
165 if (msg.obj instanceof String) {
166 final String key = (String) msg.obj;
182 if (msg.obj instanceof String) {
183 final String key = (String) msg.obj;
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java141 public boolean equals(Object obj) { argument
142 if (this == obj)
144 if (obj == null)
146 if (getClass() != obj.getClass())
148 EventInfo other = (EventInfo) obj;
223 public boolean equals(Object obj) { argument
224 if (this == obj)
226 if (obj == null)
228 if (getClass() != obj.getClass())
230 DayInfo other = (DayInfo) obj;
[all...]

Completed in 752 milliseconds

12345678910