Searched refs:getClass (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/libcore/luni/src/main/java/libcore/util/
H A DObjects.java43 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()
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DPackageTest.java29 assertEquals(0, getClass().getPackage().getAnnotations().length);
30 assertEquals(0, getClass().getPackage().getDeclaredAnnotations().length);
36 assertEquals(getClass().getPackage(), libcoreJavaLang);
41 assertTrue(packages.contains(getClass().getPackage()));
H A DEnumTest.java28 assertTrue(value.getClass() == Roshambo.class);
37 assertTrue(value.getClass() != Roshambo.class);
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLConfig.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLContext.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLDisplay.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLSurface.java32 if (o == null || getClass() != o.getClass()) return false;
/frameworks/base/opengl/java/android/opengl/
H A DEGLConfig.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLContext.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLDisplay.java32 if (o == null || getClass() != o.getClass()) return false;
H A DEGLSurface.java32 if (o == null || getClass() != o.getClass()) return false;
/libcore/luni/src/main/java/java/text/
H A DAnnotation.java67 return getClass().getName() + "[value=" + value + ']';
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLDisplayImpl.java31 if (o == null || getClass() != o.getClass()) return false;
H A DEGLSurfaceImpl.java36 if (o == null || getClass() != o.getClass()) return false;
H A DEGLContextImpl.java39 if (o == null || getClass() != o.getClass()) return false;
/libcore/luni/src/main/java/javax/xml/parsers/
H A DDocumentBuilderFactory.java378 + 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()
H A DSAXParserFactory.java261 + 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()
H A DDocumentBuilder.java80 "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()
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformer.java72 "This Transformer, \"" + this.getClass().getName() + "\", does not support the reset functionality."
73 + " Specification \"" + this.getClass().getPackage().getSpecificationTitle() + "\""
74 + " version \"" + this.getClass().getPackage().getSpecificationVersion() + "\""
/frameworks/support/v4/java/android/support/v4/util/
H A DDebugUtils.java31 String simpleName = cls.getClass().getSimpleName();
33 simpleName = cls.getClass().getName();
/libcore/luni/src/main/java/java/lang/
H A DObject.java121 * return getClass().getName() + "[" +
228 * object's class. Note that {@code getClass()} is a special case in that it
230 * erasure of the type of the expression {@code getClass()} was called upon.
237 * Class<? extends List> c = l.getClass();}</pre>
241 public final native Class<?> getClass(); method in class:Object
324 * getClass().getName() + '@' + Integer.toHexString(hashCode())</pre>
332 return getClass().getName() + '@' + Integer.toHexString(hashCode());
/frameworks/base/core/java/com/android/internal/util/
H A DState.java70 String name = getClass().getName();
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/
H A DOuterTest.java31 return buildTestsUnderHereWith(new TestSuiteBuilder(getClass()));
/libcore/luni/src/main/java/java/util/
H A DEventObject.java60 return getClass().getName() + "[source=" + source + ']';
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DFieldTest.java27 Field field = getClass().getDeclaredField("MY_LONG");

Completed in 1345 milliseconds

1234567891011>>