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

12

/cts/tools/signature-tools/src/signature/model/impl/
H A DSigTypeVariableReference.java39 public boolean equals(Object obj) { argument
40 if (getClass() == obj.getClass()) {
42 ((ITypeVariableReference) obj).getTypeVariableDefinition());
H A DSigWildcardType.java61 public boolean equals(Object obj) { argument
62 return SigWildcardType.equals(this, obj);
65 public static boolean equals(IWildcardType thiz, Object obj) { argument
66 if (thiz == obj) return true;
67 if (obj == null) return false;
68 if (!(obj instanceof IWildcardType)) return false;
69 IWildcardType that = (IWildcardType) obj;
H A DSigArrayType.java46 public boolean equals(Object obj) { argument
47 return SigArrayType.equals(this, obj);
H A DSigClassReference.java38 public boolean equals(Object obj) { argument
39 return SigClassReference.equals(this, obj);
H A DSigClassDefinition.java197 public boolean equals(Object obj) { argument
198 return SigClassDefinition.equals(this, obj);
201 public static boolean equals(IClassDefinition thiz, Object obj) { argument
202 if (thiz == obj) return true;
203 if (obj instanceof IClassDefinition) {
204 IClassDefinition that = (IClassDefinition) obj;
/cts/tools/vm-tests-tf/src/util/build/
H A DBuildStep.java51 public boolean equals(Object obj) { argument
52 if (obj == null) return false;
53 if (this == obj) return true;
54 if (getClass() == obj.getClass()) {
55 BuildFile other = (BuildFile) obj;
90 public boolean equals(Object obj) { argument
91 if (obj == null) return false;
92 if (obj == this) return true;
93 return this.getClass() == obj.getClass();
H A DDFHBuildStep.java68 public boolean equals(Object obj) { argument
70 if (super.equals(obj)) {
71 return inputFile.equals(((DFHBuildStep) obj).inputFile)
72 && outputFile.equals(((DFHBuildStep) obj).outputFile);
H A DDexBuildStep.java72 public boolean equals(Object obj) { argument
73 if (super.equals(obj)) {
74 DexBuildStep other = (DexBuildStep) obj;
H A DJavacBuildStep.java75 public boolean equals(Object obj) { argument
77 if (super.equals(obj))
79 JavacBuildStep other = (JavacBuildStep) obj;
H A DJarBuildStep.java89 public boolean equals(Object obj) { argument
90 if (super.equals(obj)) {
91 JarBuildStep other = (JarBuildStep) obj;
H A DDasmBuildStep.java159 public boolean equals(Object obj) { argument
160 if (super.equals(obj)) {
161 DasmBuildStep other = (DasmBuildStep) obj;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
H A DActionListenerTest.java78 public boolean equals(Object obj) { argument
79 if (obj == null || !(obj instanceof Argument)) {
82 Argument arg = (Argument)obj;
H A DUPnPServiceResponseListenerTest.java100 public boolean equals(Object obj) { argument
101 if (obj == null || !(obj instanceof Argument)) {
104 Argument arg = (Argument)obj;
H A DDnsSdResponseListenerTest.java107 public boolean equals(Object obj) { argument
108 if (obj == null || !(obj instanceof Argument)) {
111 Argument arg = (Argument)obj;
H A DDnsSdTxtRecordListenerTest.java111 public boolean equals(Object obj) { argument
112 if (obj == null || !(obj instanceof Argument)) {
115 Argument arg = (Argument)obj;
/cts/tools/signature-tools/src/signature/compare/model/subst/
H A DArrayTypeProjection.java48 public boolean equals(Object obj) { argument
49 return SigArrayType.equals(this, obj);
H A DClassReferenceProjection.java43 public boolean equals(Object obj) { argument
44 return SigClassReference.equals(this, obj);
H A DWildcardTypeProjection.java55 public boolean equals(Object obj) { argument
56 return SigWildcardType.equals(this, obj);
H A DParameterizedTypeProjection.java81 public boolean equals(Object obj) { argument
82 return SigParameterizedType.equals(this, obj);
/cts/tests/tests/opengl/libopengltest/
H A Dgl2_jni_libone.cpp113 extern "C" JNIEXPORT void JNICALL Java_android_opengl_cts_GL2JniLibOne_step(JNIEnv * env, jclass obj) argument
118 extern "C" JNIEXPORT jint JNICALL Java_android_opengl_cts_GL2JniLibOne_getAttachShaderError(JNIEnv * env, jclass obj){ argument
122 extern "C" JNIEXPORT jint JNICALL Java_android_opengl_cts_GL2JniLibOne_getLoadShaderError(JNIEnv * env, jclass obj){ argument
126 extern "C" JNIEXPORT jint JNICALL Java_android_opengl_cts_GL2JniLibOne_getProgramError(JNIEnv * env, jclass obj){ argument
130 extern "C" JNIEXPORT jint JNICALL Java_android_opengl_cts_GL2JniLibOne_getAttachedShaderCount(JNIEnv * env, jclass obj){ argument
135 jclass obj, jint pCategory, jint pSubCategory, jfloatArray color)
134 Java_android_opengl_cts_GL2JniLibOne_draw(JNIEnv * env, jclass obj, jint pCategory, jint pSubCategory, jfloatArray color) argument
/cts/tests/tests/os/src/android/os/cts/
H A DHandlerTest.java106 msg.obj = new Object();
107 assertFalse(mHandler.hasMessages(msg.what, msg.obj));
109 assertTrue(mHandler.hasMessages(msg.what, msg.obj));
111 assertFalse(mHandler.hasMessages(msg.what, msg.obj));
119 // Test the obj == null
126 msg.obj = new Object();
130 // Test the obj == p.obj for message
131 mHandler1.removeCallbacksAndMessages(msg.obj);
137 final Object obj
[all...]
H A DMessageTest.java85 assertNull(message.obj);
100 assertEquals(message.obj, expected.obj);
124 assertEquals(OBJ, expected.obj);
141 assertEquals(OBJ, expected.obj);
166 assertEquals(OBJ, mMessage.obj);
177 assertNull(message.obj);
/cts/tools/signature-tools/src/signature/converter/dex/
H A DFieldPool.java53 public boolean equals(Object obj) { argument
54 FieldKey other = (FieldKey) obj;
/cts/tools/dasm/src/java_cup/
H A Dsymbol_set.java52 * @param obj the object we are testing.
54 protected void not_null(Object obj) throws internal_error argument
56 if (obj == null)
H A Dterminal_set.java55 * @param obj the object we are testing.
57 protected void not_null(Object obj) throws internal_error argument
59 if (obj == null)

Completed in 481 milliseconds

12