Searched refs:obj (Results 176 - 200 of 895) sorted by relevance

1234567891011>>

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DTracer.java227 * return normal output of obj.toString(). If the argument is an array this will return a
234 * @param obj object to convert to a string
237 private static String objectToString(Object obj) { argument
238 if (obj.getClass().isArray()) {
239 if (obj instanceof Object[]) {
240 return Arrays.deepToString((Object[])obj);
245 return obj.toString();
/frameworks/base/core/java/android/content/om/
H A DOverlayInfo.java307 public boolean equals(Object obj) { argument
308 if (this == obj) {
311 if (obj == null) {
314 if (getClass() != obj.getClass()) {
317 OverlayInfo other = (OverlayInfo) obj;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DColorSpaceTransform.java219 public boolean equals(final Object obj) { argument
220 if (obj == null) {
223 if (this == obj) {
226 if (obj instanceof ColorSpaceTransform) {
227 final ColorSpaceTransform other = (ColorSpaceTransform) obj;
H A DLensShadingMap.java215 public boolean equals(final Object obj) { argument
216 if (obj == null) {
219 if (this == obj) {
222 if (obj instanceof LensShadingMap) {
223 final LensShadingMap other = (LensShadingMap) obj;
H A DTonemapCurve.java254 public boolean equals(Object obj) { argument
255 if (obj == null) {
258 if (this == obj) {
261 if (obj instanceof TonemapCurve) {
262 final TonemapCurve other = (TonemapCurve) obj;
/frameworks/base/core/java/android/hardware/display/
H A DAmbientBrightnessDayStats.java139 public boolean equals(Object obj) { argument
140 if (this == obj) {
143 if (obj == null) {
146 if (getClass() != obj.getClass()) {
149 AmbientBrightnessDayStats other = (AmbientBrightnessDayStats) obj;
/frameworks/base/core/java/android/hardware/usb/
H A DAccessoryFilter.java117 public boolean equals(Object obj) { argument
122 if (obj instanceof AccessoryFilter) {
123 AccessoryFilter filter = (AccessoryFilter)obj;
128 if (obj instanceof UsbAccessory) {
129 UsbAccessory accessory = (UsbAccessory)obj;
/frameworks/base/core/java/android/net/
H A DDhcpResults.java99 public boolean equals(Object obj) { argument
100 if (this == obj) return true;
102 if (!(obj instanceof DhcpResults)) return false;
104 DhcpResults target = (DhcpResults)obj;
106 return super.equals((StaticIpConfiguration) obj) &&
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java238 public boolean equals(Object obj) { argument
239 if (this == obj) {
242 if (obj == null) {
245 if (getClass() != obj.getClass()) {
248 PrintDocumentInfo other = (PrintDocumentInfo) obj;
/frameworks/base/core/java/android/service/carrier/
H A DCarrierIdentifier.java129 public boolean equals(Object obj) { argument
130 if (this == obj) {
133 if (obj == null || getClass() != obj.getClass()) {
137 CarrierIdentifier that = (CarrierIdentifier) obj;
/frameworks/base/core/java/android/speech/tts/
H A DVoice.java211 public boolean equals(Object obj) { argument
212 if (this == obj) {
215 if (obj == null) {
218 if (getClass() != obj.getClass()) {
221 Voice other = (Voice) obj;
/frameworks/base/core/java/android/util/
H A DMemoryIntArray.java188 public boolean equals(Object obj) { argument
189 if (obj == null) {
192 if (this == obj) {
195 if (getClass() != obj.getClass()) {
198 MemoryIntArray other = (MemoryIntArray) obj;
H A DRange.java149 public boolean equals(Object obj) { argument
150 if (obj == null) {
152 } else if (this == obj) {
154 } else if (obj instanceof Range) {
156 Range other = (Range) obj;
/frameworks/base/core/java/android/view/autofill/
H A DAutofillValue.java157 public boolean equals(Object obj) { argument
158 if (this == obj) return true;
159 if (obj == null) return false;
160 if (getClass() != obj.getClass()) return false;
161 final AutofillValue other = (AutofillValue) obj;
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java105 * msg.obj == the AsyncChannel
148 * msg.obj == the AsyncChannel
306 * msg.obj = the AsyncChannel
352 * msg.obj = the AsyncChannel
367 * msg.obj = the AsyncChannel
425 * msg.obj = the AsyncChannel
532 * @param obj
534 public void sendMessage(int what, int arg1, int arg2, Object obj) { argument
539 msg.obj = obj;
549 sendMessage(int what, Object obj) argument
623 replyToMessage(Message srcMsg, int what, int arg1, int arg2, Object obj) argument
639 replyToMessage(Message srcMsg, int what, Object obj) argument
711 sendMessageSynchronously(int what, int arg1, int arg2, Object obj) argument
728 sendMessageSynchronously(int what, Object obj) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp54 static void getDirectionalities(JNIEnv* env, jobject obj, jcharArray srcArray, argument
96 static jint getEastAsianWidth(JNIEnv* env, jobject obj, jchar input) argument
105 static void getEastAsianWidths(JNIEnv* env, jobject obj, jcharArray srcArray, argument
148 static jboolean mirror(JNIEnv* env, jobject obj, jcharArray charArray, jint start, jint count) argument
176 static jchar getMirror(JNIEnv* env, jobject obj, jchar c) argument
/frameworks/base/media/java/android/media/
H A DAudioFocusInfo.java154 public boolean equals(Object obj) { argument
155 if (this == obj)
157 if (obj == null)
159 if (getClass() != obj.getClass())
161 AudioFocusInfo other = (AudioFocusInfo) obj;
H A DAudioPortEventHandler.java70 if (mListeners.contains(msg.obj)) {
71 listeners.add((AudioManager.OnAudioPortUpdateListener)msg.obj);
98 sendMessageDelayed(obtainMessage(msg.what, msg.obj),
174 int what, int arg1, int arg2, Object obj) {
184 Message m = handler.obtainMessage(what, arg1, arg2, obj);
173 postEventFromNative(Object module_ref, int what, int arg1, int arg2, Object obj) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImplProxy.java128 args = (SomeArgs) msg.obj;
136 args = (SomeArgs) msg.obj;
143 args = (SomeArgs) msg.obj;
148 mImpl.onDraggingInRecents((Float) msg.obj);
151 mImpl.onDraggingInRecentsEnded((Float) msg.obj);
/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java204 public boolean equals(Object obj) { argument
205 if (this == obj) {
208 if (obj == null) {
211 if (getClass() != obj.getClass()) {
214 PreciseDataConnectionState other = (PreciseDataConnectionState) obj;
/frameworks/support/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityWindowInfoCompat.java318 public boolean equals(Object obj) { argument
319 if (this == obj) {
322 if (obj == null) {
325 if (getClass() != obj.getClass()) {
328 AccessibilityWindowInfoCompat other = (AccessibilityWindowInfoCompat) obj;
/frameworks/support/content/src/main/java/androidx/contentpager/content/
H A DQuery.java155 public boolean equals(Object obj) { argument
156 if (obj == null) {
160 if (this == obj) {
164 if (!(obj instanceof Query)) {
168 Query other = (Query) obj;
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java149 SomeArgs args = (SomeArgs)msg.obj;
164 inputMethod.attachToken((IBinder)msg.obj);
168 inputMethod.bindInput((InputBinding)msg.obj);
175 final SomeArgs args = (SomeArgs) msg.obj;
192 SomeArgs args = (SomeArgs)msg.obj;
200 inputMethod.setSessionEnabled((InputMethodSession)msg.obj,
204 inputMethod.revokeSession((InputMethodSession)msg.obj);
207 inputMethod.showSoftInput(msg.arg1, (ResultReceiver)msg.obj);
210 inputMethod.hideSoftInput(msg.arg1, (ResultReceiver)msg.obj);
213 inputMethod.changeInputMethodSubtype((InputMethodSubtype)msg.obj);
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DInCallService.java117 mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj), callingPackage,
123 mPhone.internalAddCall((ParcelableCall) msg.obj);
126 mPhone.internalUpdateCall((ParcelableCall) msg.obj);
129 SomeArgs args = (SomeArgs) msg.obj;
140 mPhone.internalCallAudioStateChanged((CallAudioState) msg.obj);
152 SomeArgs args = (SomeArgs) msg.obj;
164 String callId = (String) msg.obj;
170 String callId = (String) msg.obj;
176 String callId = (String) msg.obj;
182 String callId = (String) msg.obj;
[all...]
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
H A DRegisteredMediaRouteProvider.java633 private boolean sendRequest(int what, int requestId, int arg, Object obj, Bundle data) { argument
638 msg.obj = obj;
689 final Object obj = msg.obj;
691 if (!processMessage(connection, what, requestId, arg, obj, data)) {
700 int what, int requestId, int arg, Object obj, Bundle data) {
711 if (obj == null || obj instanceof Bundle) {
712 return connection.onRegistered(requestId, arg, (Bundle)obj);
699 processMessage(Connection connection, int what, int requestId, int arg, Object obj, Bundle data) argument
[all...]

Completed in 2368 milliseconds

1234567891011>>