HomeSort by relevance Sort by last modified time
    Searched refs:getClass (Results 1 - 25 of 1424) 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() + "]");
  /libcore/luni/src/main/java/libcore/util/
Objects.java 43 Class<?> c = o.getClass();
62 if (value.getClass().isArray()) {
63 if (value.getClass() == boolean[].class) {
65 } else if (value.getClass() == byte[].class) {
67 } else if (value.getClass() == char[].class) {
69 } else if (value.getClass() == double[].class) {
71 } else if (value.getClass() == float[].class) {
73 } else if (value.getClass() == int[].class) {
75 } else if (value.getClass() == long[].class) {
77 } else if (value.getClass() == short[].class)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AllocationGuard.java 30 DebugLog.e("AllocGuard", "An allocation of type " + this.getClass().getName()
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 29 assertEquals(0, getClass().getPackage().getAnnotations().length);
30 assertEquals(0, getClass().getPackage().getDeclaredAnnotations().length);
36 assertEquals(getClass().getPackage(), libcoreJavaLang);
41 assertTrue(packages.contains(getClass().getPackage()));
  /frameworks/base/opengl/java/android/opengl/
EGLConfig.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLContext.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLDisplay.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLSurface.java 32 if (o == null || getClass() != o.getClass()) return false;
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLConfig.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLContext.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLDisplay.java 32 if (o == null || getClass() != o.getClass()) return false;
EGLSurface.java 32 if (o == null || getClass() != o.getClass()) return false;
  /external/apache-harmony/luni/src/test/api/common/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
  /libcore/luni/src/main/java/java/text/
Annotation.java 67 return getClass().getName() + "[value=" + value + ']';
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Constant.java 49 Class clazz = getClass();
50 Class otherClazz = other.getClass();
  /dalvik/dx/src/com/android/dx/rop/cst/
Constant.java 49 Class clazz = getClass();
50 Class otherClazz = other.getClass();
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
Constant.java 49 Class clazz = getClass();
50 Class otherClazz = other.getClass();
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLDisplayImpl.java 31 if (o == null || getClass() != o.getClass()) return false;
EGLSurfaceImpl.java 36 if (o == null || getClass() != o.getClass()) return false;
  /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()
  /sdk/sdk_common/src/com/android/ide/common/resources/
IntArrayWrapper.java 47 if (getClass().equals(obj.getClass())) {

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>