HomeSort by relevance Sort by last modified time
    Searched refs:getClass (Results 1 - 25 of 812) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
TopValue.java 46 return this.getClass() == other.getClass() ? this : null;
65 this.getClass() == object.getClass();
71 return this.getClass().hashCode();
Value.java 48 throw new IllegalArgumentException("Value is not a Category 1 value [" + this.getClass().getName() + "]");
56 throw new IllegalArgumentException("Value is not a Category 2 value [" + this.getClass().getName() + "]");
65 throw new IllegalArgumentException("Value is not an integer value [" + this.getClass().getName() + "]");
73 throw new IllegalArgumentException("Value is not a long value [" + this.getClass().getName() + "]");
81 throw new IllegalArgumentException("Value is not a float value [" + this.getClass().getName() + "]");
89 throw new IllegalArgumentException("Value is not a double value [" + this.getClass().getName() + "]");
97 throw new IllegalArgumentException("Value is not a reference value [" + this.getClass().getName() + "]");
105 throw new IllegalArgumentException("Value is not an instruction offset value [" + this.getClass().getName() + "]");
UnknownDoubleValue.java 111 this.getClass() == object.getClass();
117 return this.getClass().hashCode();
UnknownFloatValue.java 111 this.getClass() == object.getClass();
117 return this.getClass().hashCode();
  /cts/tools/dx-tests/src/dxc/junit/verify/t482_10/jm/
T_t482_10_2.java 24 o.getClass();
  /libcore/luni/src/main/java/java/text/
Annotation.java 67 return getClass().getName() + "[value=" + value + ']';
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
TypeNotPresentExceptionTest.java 32 e = new TypeNotPresentException(getClass().getName(), null);
38 e = new TypeNotPresentException(getClass().getName(), npe);
50 e = new TypeNotPresentException(getClass().getName(), null);
51 assertEquals(getClass().getName(), e.typeName());
IllegalStateExceptionTest.java 51 assertEquals(emptyThrowable.getClass().getName(), emptyException.getMessage());
52 assertEquals(emptyThrowable.getClass().getName(), emptyException.getLocalizedMessage());
53 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
57 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
58 assertEquals(throwable.getClass().getName(), emptyException.getLocalizedMessage());
59 assertEquals(throwable.getClass().getName(), emptyException.getCause().toString());
70 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
76 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception
UnsupportedOperationExceptionTest.java 52 assertEquals(emptyThrowable.getClass().getName(), emptyException.getMessage());
53 assertEquals(emptyThrowable.getClass().getName(), emptyException.getLocalizedMessage());
54 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
58 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
59 assertEquals(throwable.getClass().getName(), emptyException.getLocalizedMessage());
60 assertEquals(throwable.getClass().getName(), emptyException.getCause().toString());
72 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
79 assertEquals(throwable.getClass().getName() + ": " + throwable.getMessage(), exception
IllegalArgumentExceptionTest.java 51 assertEquals(emptyThrowable.getClass().getName(), emptyException.getMessage());
52 assertEquals(emptyThrowable.getClass().getName(), emptyException.getLocalizedMessage());
53 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
57 assertEquals(exception.getClass().getName() + ": " + "msg", e.getMessage());
58 assertEquals(exception.getClass().getName(), emptyException.getLocalizedMessage());
59 assertEquals(exception.getClass().getName(), emptyException.getCause().toString());
  /dalvik/dx/src/com/android/dx/rop/cst/
Constant.java 49 Class clazz = getClass();
50 Class otherClazz = other.getClass();
CstLiteral32.java 40 (getClass() == other.getClass()) &&
CstLiteral64.java 40 (getClass() == other.getClass()) &&
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 378 + this.getClass().getPackage().getSpecificationTitle()
380 + this.getClass().getPackage().getSpecificationVersion()
444 + this.getClass().getPackage().getSpecificationTitle()
446 + this.getClass().getPackage().getSpecificationVersion()
473 + this.getClass().getPackage().getSpecificationTitle()
475 + this.getClass().getPackage().getSpecificationVersion()
495 + this.getClass().getPackage().getSpecificationTitle()
497 + this.getClass().getPackage().getSpecificationVersion()
SAXParserFactory.java 261 + this.getClass().getPackage().getSpecificationTitle()
263 + this.getClass().getPackage().getSpecificationVersion()
320 + this.getClass().getPackage().getSpecificationTitle()
322 + this.getClass().getPackage().getSpecificationVersion()
349 + this.getClass().getPackage().getSpecificationTitle()
351 + this.getClass().getPackage().getSpecificationVersion()
371 + this.getClass().getPackage().getSpecificationTitle()
373 + this.getClass().getPackage().getSpecificationVersion()
DocumentBuilder.java 80 "This DocumentBuilder, \"" + this.getClass().getName() + "\", does not support the reset functionality."
81 + " Specification \"" + this.getClass().getPackage().getSpecificationTitle() + "\""
82 + " version \"" + this.getClass().getPackage().getSpecificationVersion() + "\""
282 + this.getClass().getPackage().getSpecificationTitle()
284 + this.getClass().getPackage().getSpecificationVersion()
310 + this.getClass().getPackage().getSpecificationTitle()
312 + this.getClass().getPackage().getSpecificationVersion()
  /external/proguard/src/proguard/classfile/attribute/preverification/
StackMapFrame.java 95 this.getClass() != object.getClass())
108 return getClass().hashCode() ^
VerificationType.java 95 this.getClass() == object.getClass();
101 return this.getClass().hashCode();
  /libcore/luni/src/main/java/javax/xml/transform/
Transformer.java 72 "This Transformer, \"" + this.getClass().getName() + "\", does not support the reset functionality."
73 + " Specification \"" + this.getClass().getPackage().getSpecificationTitle() + "\""
74 + " version \"" + this.getClass().getPackage().getSpecificationVersion() + "\""
  /cts/tools/signature-tools/src/signature/model/impl/
SigTypeVariableReference.java 40 if (getClass() == obj.getClass()) {
  /dalvik/tests/084-old-style-inner-class/src/
Main.java 52 infoFor(theRunnable.getClass());
53 infoFor(create().getClass());
  /external/proguard/src/proguard/ant/
KeepSpecificationElement.java 52 (KeepSpecificationElement)getCheckedRef(this.getClass(),
53 this.getClass().getName()) :
  /libcore/luni/src/main/java/java/lang/
Object.java 121 * return getClass().getName() + "[" +
224 * object's class. Note that {@code getClass()} is a special case in that it
226 * erasure of the type of the expression {@code getClass()} was called upon.
233 * Class<? extends List> c = l.getClass();}</pre>
237 public final native Class<? extends Object> getClass();
319 * getClass().getName() + '@' + Integer.toHexString(hashCode())</pre>
326 return getClass().getName() + '@' + Integer.toHexString(hashCode());
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapElement.java 118 return this.getClass() == that.getClass(); // Has to be the same class.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IntArrayWrapper.java 44 if (getClass().equals(obj.getClass())) {

Completed in 843 milliseconds

1 2 3 4 5 6 7 8 91011>>