HomeSort by relevance Sort by last modified time
    Searched refs:getClass (Results 101 - 125 of 3123) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guice/core/test/com/google/inject/
ProvisionExceptionsTest.java 52 assertEquals(IllegalStateException.class, pe.getCause().getClass());
53 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
74 assertEquals(IOException.class, pe.getCause().getClass());
75 assertEquals(IOException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
99 assertEquals(IllegalStateException.class, pe.getCause().getClass());
100 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
122 assertEquals(IllegalStateException.class, pe.getCause().getClass());
123 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
146 assertEquals(IOException.class, pe.getCause().getClass());
147 assertEquals(IOException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java 32 if (value == null || !value.getClass().isArray()) {
50 if (value == null || value.getClass().isArray()) {
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1);
71 if (value == null || !value.getClass().isArray()) {
121 if (curValue == null || !curValue.getClass().isArray()) {
  /art/test/497-inlining-and-class-loader/src/
Main.java 26 ClassLoader loader = getClass().getClassLoader();
27 Class<?> baseDexClassLoader = loader.getClass().getSuperclass();
33 f = pathList.getClass().getDeclaredField("dexElements");
36 dexFileField = dexElements[0].getClass().getDeclaredField("dexFile");
65 Method method = dex.getClass().getDeclaredMethod(
111 f = dexCache.getClass().getDeclaredField("resolvedTypes");
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
PropertyInfo.java 38 public static final Class OBJECT_CLASS = new Object().getClass();
39 public static final Class STRING_CLASS = "".getClass();
40 public static final Class INTEGER_CLASS = new Integer(0).getClass();
41 public static final Class LONG_CLASS = new Long(0).getClass();
42 public static final Class BOOLEAN_CLASS = new Boolean(true).getClass();
43 public static final Class VECTOR_CLASS = new java.util.Vector().getClass();
SppPropertyInfo.java 38 public static final Class OBJECT_CLASS = new Object().getClass();
39 public static final Class STRING_CLASS = "".getClass();
40 public static final Class INTEGER_CLASS = new Integer(0).getClass();
41 public static final Class LONG_CLASS = new Long(0).getClass();
42 public static final Class BOOLEAN_CLASS = new Boolean(true).getClass();
43 public static final Class VECTOR_CLASS = new java.util.Vector().getClass();
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
SecurityAgreeParser.java 86 if (header.getClass().isInstance(new SecurityClient())) {
88 } else if (header.getClass().isInstance(new SecurityServer())) {
90 } else if (header.getClass().isInstance(new SecurityVerify())) {
127 if (header.getClass().isInstance(new SecurityClient())) {
129 } else if (header.getClass().isInstance(new SecurityServer())) {
131 } else if (header.getClass().isInstance(new SecurityVerify())) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
KeySetUtils.java 29 Field pkField = ksms.getClass().getDeclaredField("mPublicKeys");
43 Field pkField = ksms.getClass().getDeclaredField("mPublicKeys");
57 Field ksField = ksms.getClass().getDeclaredField("mKeySets");
71 Field ksField = ksms.getClass().getDeclaredField("mKeySetMapping");
78 Field ksField = ksms.getClass().getDeclaredField("lastIssuedKeyId");
85 Field ksField = ksms.getClass().getDeclaredField("lastIssuedKeySetId");
  /art/test/131-structural-change/src/
Main.java 32 Class<?> bClass = getClass().getClassLoader().loadClass("A");
41 Class<?> bClass = getClass().getClassLoader().loadClass("B");
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PicassoBackgroundManagerTarget.java 52 if (o == null || getClass() != o.getClass())
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
PicassoBackgroundManagerTarget.java 55 if (o == null || getClass() != o.getClass())
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
GuardedObjectTest.java 47 assertSame(golden.getClass(), test.getClass());
  /external/easymock/src/org/easymock/internal/matchers/
Equals.java 50 if (o == null || !this.getClass().equals(o.getClass()))
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalKey.java 26 if (o == null || getClass() != o.getClass()) {
  /external/glide/library/src/main/java/com/bumptech/glide/signature/
StringSignature.java 26 if (o == null || getClass() != o.getClass()) {
  /external/glide/library/src/main/java/com/bumptech/glide/util/
MultiClassKey.java 36 if (o == null || getClass() != o.getClass()) {
  /external/jcommander/src/main/java/com/beust/jcommander/
StringKey.java 37 if (getClass() != obj.getClass())
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONCollectionConvertor.java 31 out.addClass(obj.getClass());
39 Collection result = (Collection)Loader.loadClass(getClass(), (String)object.get("class")).newInstance();
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateMapKey.java 46 if (o == null || getClass() != o.getClass()) {
  /external/junit/src/org/junit/internal/runners/statements/
ExpectException.java 27 if (!fExpected.isAssignableFrom(e.getClass())) {
30 + e.getClass().getName() + ">";
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ProfileLevelIndicationDescriptor.java 53 if (o == null || getClass() != o.getClass()) {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
RollRecoveryEntry.java 60 if (o == null || getClass() != o.getClass()) {
  /external/proguard/src/proguard/ant/
FilterElement.java 49 (FilterElement)getCheckedRef(this.getClass(),
50 this.getClass().getName()) :
  /external/proguard/src/proguard/classfile/util/
StringReferenceInitializer.java 80 Clazz clazz = programClassPool.getClass(name);
85 clazz = libraryClassPool.getClass(name);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowColorDrawable.java 22 if (o == null || realObject.getClass() != o.getClass()) return false;
ShadowContentProviderResult.java 16 Field field = realResult.getClass().getField("uri");
22 Field field = realResult.getClass().getField("count");

Completed in 701 milliseconds

1 2 3 45 6 7 8 91011>>