Searched refs:getSimpleName (Results 1 - 25 of 148) sorted by relevance

123456

/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DTemporaryBindingsTest.java18 assertThat(shadowOf(new View(null)).getClass().getSimpleName(), equalTo(ShadowView.class.getSimpleName()));
22 assertThat(Robolectric.shadowOf_(new View(null)).getClass().getSimpleName(),
23 equalTo(TemporaryShadowView.class.getSimpleName()));
28 assertThat(shadowOf(new View(null)).getClass().getSimpleName(), equalTo(ShadowView.class.getSimpleName()));
32 assertThat(Robolectric.shadowOf_(new View(null)).getClass().getSimpleName(),
33 equalTo(TemporaryShadowView.class.getSimpleName()));
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DChunkOffsetBox.java18 return this.getClass().getSimpleName() + "[entryCount=" + getChunkOffsets().length + "]";
/external/mockito/src/org/mockito/internal/util/
H A DMockNameImpl.java32 String className = clazz.getSimpleName();
35 className = clazz.getSuperclass().getSimpleName();
/external/mockito/src/org/mockito/
H A DArgumentMatcher.java89 String className = getClass().getSimpleName();
/external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
H A DAndroidLoggerFactory.java100 return getSimpleName(loggerName);
108 return getSimpleName(loggerName);
116 private static String getSimpleName(String loggerName) { method in class:AndroidLoggerFactory
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DPlatform.java55 return clazz.getSimpleName();
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DReturns.java26 return value.getClass().getSimpleName();
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldInitializer.java87 throw new MockitoException("Problems initializing field '" + field.getName() + "' of type '" + field.getType().getSimpleName() + "'", e);
95 throw new MockitoException("the type '" + field.getType().getSimpleName() + "' is a local class.");
101 throw new MockitoException("the type '" + field.getType().getSimpleName() + "' is an inner class.");
107 throw new MockitoException("the type '" + field.getType().getSimpleName() + "' is an interface.");
113 throw new MockitoException("the type '" + field.getType().getSimpleName() + " is an abstract class.");
186 throw new MockitoException("the type '" + field.getType().getSimpleName() + "' has no default constructor", e);
188 throw new MockitoException("the default constructor of type '" + field.getType().getSimpleName() + "' has raised an exception (see the stack trace for cause): " + e.getTargetException().toString(), e);
244 throw new MockitoException("internal error : argResolver provided incorrect types for constructor " + constructor + " of type " + field.getType().getSimpleName(), e);
246 throw new MockitoException("the constructor of type '" + field.getType().getSimpleName() + "' has raised an exception (see the stack trace for cause): " + e.getTargetException().toString(), e);
/external/okhttp/okio/okio/src/main/java/okio/
H A DForwardingSink.java51 return getClass().getSimpleName() + "(" + delegate.toString() + ")";
H A DForwardingSource.java47 return getClass().getSimpleName() + "(" + delegate.toString() + ")";
/external/mockito/src/org/mockito/internal/configuration/injection/scanner/
H A DInjectMocksScanner.java64 new Reporter().unsupportedCombinationOfAnnotations(annotation.getSimpleName(), InjectMocks.class.getSimpleName());
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DAbstractListChromosome.java44 throw new IllegalArgumentException(String.format("Invalid representation for %s", getClass().getSimpleName()), e);
H A DRandomKeyMutation.java44 original.getClass().getSimpleName());
/external/droiddriver/src/io/appium/droiddriver/util/
H A DStrings.java28 return new ToStringHelper(self.getClass().getSimpleName());
/external/jetty/src/java/org/eclipse/jetty/security/
H A DDefaultUserIdentity.java70 return DefaultUserIdentity.class.getSimpleName()+"('"+_userPrincipal+"')";
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DDescriptor.java86 return this.getClass().getSimpleName()+"("+_xml+")";
/external/jmdns/src/javax/jmdns/impl/
H A DNetworkTopologyEventImpl.java63 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioBuffer.java80 return getClass().getSimpleName() +
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DNativeObject.java133 return "Native" + type.getSimpleName() + " " + id;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java73 return node.getClass().getSimpleName();
76 String tokenType = token.getClass().getSimpleName().substring(1);
82 String p = node.getClass().getSuperclass().getSimpleName().substring(1);
83 String a = node.getClass().getSimpleName().substring(1);
/external/mockito/src/org/mockito/internal/runners/
H A DRunnerFactory.java37 "No tests found in " + klass.getSimpleName() + "\n" +
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsMockWrapper.java66 return mockInstance.getClass().getSimpleName() + "(" + System.identityHashCode(mockInstance) + ")";
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectPool.java48 assert result != null : "Object pool of type " + this.getClass().getSimpleName()
/external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/
H A DAutoFocusCallback.java26 private static final String TAG = AutoFocusCallback.class.getSimpleName();
H A DPreviewCallback.java27 private static final String TAG = PreviewCallback.class.getSimpleName();

Completed in 716 milliseconds

123456