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

1234567891011>>

/frameworks/base/media/java/android/media/
H A DDrmInitData.java70 public boolean equals(Object obj) { argument
71 if (!(obj instanceof SchemeInitData)) {
74 if (obj == this) {
78 SchemeInitData other = (SchemeInitData) obj;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAppInfo.java44 public boolean equals(Object obj) { argument
45 if (obj == null) {
48 if (getClass() != obj.getClass()) {
51 final AppInfo other = (AppInfo) obj;
/frameworks/base/core/jni/
H A Dandroid_util_Binder.h29 extern sp<IBinder> ibinderForJavaObject(JNIEnv* env, jobject obj);
35 extern void signalExceptionForError(JNIEnv* env, jobject obj, status_t err,
H A Dandroid_view_InputChannel.cpp52 void invokeAndRemoveDisposeCallback(JNIEnv* env, jobject obj);
74 void NativeInputChannel::invokeAndRemoveDisposeCallback(JNIEnv* env, jobject obj) { argument
76 mDisposeCallback(env, obj, mInputChannel, mDisposeData);
163 static void android_view_InputChannel_nativeDispose(JNIEnv* env, jobject obj, jboolean finalized) { argument
165 android_view_InputChannel_getNativeInputChannel(env, obj);
172 nativeInputChannel->invokeAndRemoveDisposeCallback(env, obj);
174 android_view_InputChannel_setNativeInputChannel(env, obj, NULL);
179 static void android_view_InputChannel_nativeTransferTo(JNIEnv* env, jobject obj, argument
188 android_view_InputChannel_getNativeInputChannel(env, obj);
190 android_view_InputChannel_setNativeInputChannel(env, obj, NUL
193 android_view_InputChannel_nativeReadFromParcel(JNIEnv* env, jobject obj, jobject parcelObj) argument
223 android_view_InputChannel_nativeWriteToParcel(JNIEnv* env, jobject obj, jobject parcelObj) argument
241 android_view_InputChannel_nativeGetName(JNIEnv* env, jobject obj) argument
252 android_view_InputChannel_nativeDup(JNIEnv* env, jobject obj, jobject otherObj) argument
[all...]
/frameworks/base/core/tests/utiltests/jni/
H A Dregistration.cpp26 JNIEnv * env, jobject obj, jstring name, jint size);
28 JNIEnv * env, jobject obj, jint fd, jint size);
32 __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj,
35 return android_util_MemoryIntArrayTest_createAshmem(env, obj, name, size);
39 __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj,
42 android_util_MemoryIntArrayTest_setAshmemSize(env, obj, fd, size);
31 Java_android_util_MemoryIntArrayTest_nativeCreateAshmem( __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jstring name, jint size) argument
38 Java_android_util_MemoryIntArrayTest_nativeSetAshmemSize( __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jint fd, jint size) argument
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DFieldPacker.java247 public void addObj(BaseObj obj) { argument
248 if (obj != null) {
250 addI64(obj.getID(null));
255 addI32((int)obj.getID(null));
631 private static void addToPack(FieldPacker fp, Object obj) { argument
632 if (obj instanceof Boolean) {
633 fp.addBoolean(((Boolean)obj).booleanValue());
637 if (obj instanceof Byte) {
638 fp.addI8(((Byte)obj).byteValue());
642 if (obj instanceo
778 getPackedSize(Object obj) argument
927 addSafely(Object obj) argument
[all...]
H A DBaseObj.java133 * @param obj The object to check equality with.
138 public boolean equals(Object obj) { argument
140 if (this == obj)
143 if (obj == null) {
147 if (getClass() != obj.getClass()) {
151 BaseObj b = (BaseObj) obj;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInformationRecords.java39 public CdmaInformationRecords(CdmaDisplayInfoRec obj) { argument
40 record = obj;
43 public CdmaInformationRecords(CdmaNumberInfoRec obj) { argument
44 record = obj;
47 public CdmaInformationRecords(CdmaSignalInfoRec obj) { argument
48 record = obj;
51 public CdmaInformationRecords(CdmaRedirectingNumberInfoRec obj) { argument
52 record = obj;
55 public CdmaInformationRecords(CdmaLineControlInfoRec obj) { argument
56 record = obj;
59 CdmaInformationRecords(CdmaT53ClirInfoRec obj) argument
63 CdmaInformationRecords(CdmaT53AudioControlInfoRec obj) argument
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputWindowHandle.cpp81 jobject obj = env->NewLocalRef(mObjWeak); local
82 if (!obj) {
93 jobject inputChannelObj = env->GetObjectField(obj,
102 jstring nameObj = jstring(env->GetObjectField(obj,
113 mInfo->layoutParamsFlags = env->GetIntField(obj,
115 mInfo->layoutParamsType = env->GetIntField(obj,
117 mInfo->dispatchingTimeout = env->GetLongField(obj,
119 mInfo->frameLeft = env->GetIntField(obj,
121 mInfo->frameTop = env->GetIntField(obj,
123 mInfo->frameRight = env->GetIntField(obj,
200 android_server_InputWindowHandle_nativeDispose(JNIEnv* env, jobject obj) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DBlackLevelPattern.java107 public boolean equals(Object obj) { argument
108 if (obj == null) {
110 } else if (this == obj) {
112 } else if (obj instanceof BlackLevelPattern) {
113 final BlackLevelPattern other = (BlackLevelPattern) obj;
H A DHighSpeedVideoConfiguration.java139 public boolean equals(final Object obj) { argument
140 if (obj == null) {
143 if (this == obj) {
146 if (obj instanceof HighSpeedVideoConfiguration) {
147 final HighSpeedVideoConfiguration other = (HighSpeedVideoConfiguration) obj;
H A DStreamConfiguration.java142 public boolean equals(final Object obj) { argument
143 if (obj == null) {
146 if (this == obj) {
149 if (obj instanceof StreamConfiguration) {
150 final StreamConfiguration other = (StreamConfiguration) obj;
H A DStreamConfigurationDuration.java121 public boolean equals(final Object obj) { argument
122 if (obj == null) {
125 if (this == obj) {
128 if (obj instanceof StreamConfigurationDuration) {
129 final StreamConfigurationDuration other = (StreamConfigurationDuration) obj;
H A DInputConfiguration.java88 * @param obj the object to compare this instance with.
93 public boolean equals(Object obj) { argument
94 if (!(obj instanceof InputConfiguration)) {
98 InputConfiguration otherInputConfig = (InputConfiguration) obj;
/frameworks/base/core/java/android/print/
H A DPrintJobId.java62 public boolean equals(Object obj) { argument
63 if (this == obj) {
66 if (obj == null) {
69 if (getClass() != obj.getClass()) {
72 PrintJobId other = (PrintJobId) obj;
/frameworks/base/core/java/android/util/
H A DSize.java65 public boolean equals(final Object obj) { argument
66 if (obj == null) {
69 if (this == obj) {
72 if (obj instanceof Size) {
73 Size other = (Size) obj;
H A DSizeF.java75 public boolean equals(final Object obj) { argument
76 if (obj == null) {
79 if (this == obj) {
82 if (obj instanceof SizeF) {
83 final SizeF other = (SizeF) obj;
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreKey.java73 public boolean equals(Object obj) { argument
74 if (this == obj) {
77 if (obj == null) {
80 if (getClass() != obj.getClass()) {
83 AndroidKeyStoreKey other = (AndroidKeyStoreKey) obj;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
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...]
/frameworks/base/telephony/java/android/telephony/
H A DDataConnectionRealTimeInfo.java115 public boolean equals(Object obj) { argument
116 if (this == obj) {
119 if (obj == null) {
122 if (getClass() != obj.getClass()) {
125 DataConnectionRealTimeInfo other = (DataConnectionRealTimeInfo) obj;
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DConstantWithConditionalTest.java36 ConstantBindingTestObject obj = new ConstantBindingTestObject();
37 mBinder.setVm(obj);
42 obj.setErrorMessage("blah");
47 obj.setErrorMessage(null);
49 obj.setCountryModels(list);
/frameworks/rs/driver/
H A DrsdScriptGroup.cpp64 rs_script_group *obj)
66 obj->p = sg;
68 obj->unused1 = nullptr;
69 obj->unused2 = nullptr;
70 obj->unused3 = nullptr;
62 rsdScriptGroupUpdateCachedObject(const Context *rsc, const ScriptGroup *sg, rs_script_group *obj) argument
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DAudioAttributesCompatApi21.java54 private Wrapper(AudioAttributes obj) { argument
55 mWrapped = obj;
57 public static Wrapper wrap(@NonNull AudioAttributes obj) { argument
58 if (obj == null) {
61 return new Wrapper(obj);
/frameworks/rs/cpp/
H A DBaseObj.cpp59 bool BaseObj::equals(const sp<const BaseObj>& obj) { argument
61 if (this == obj.get())
63 return mID == obj->mID;

Completed in 5212 milliseconds

1234567891011>>