HomeSort by relevance Sort by last modified time
    Searched refs:instanceOf (Results 26 - 50 of 205) sorted by null

12 3 4 5 6 7 8 9

  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 71 return obj instanceof IsOdd;
547 * Tests for Predicates.instanceOf(x).
553 @GwtIncompatible("Predicates.instanceOf")
555 Predicate<Object> isInteger = Predicates.instanceOf(Integer.class);
563 @GwtIncompatible("Predicates.instanceOf")
565 Predicate<Object> isNumber = Predicates.instanceOf(Number.class);
573 @GwtIncompatible("Predicates.instanceOf")
575 Predicate<Object> isComparable = Predicates.instanceOf(Comparable.class);
583 @GwtIncompatible("Predicates.instanceOf")
587 Predicates.instanceOf(Integer.class)
    [all...]
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 28 * This is a shortcut to the frequently used is(instanceOf(SomeClass.class)).
30 * eg. assertThat(cheese, is(instanceOf(Cheddar.class)))
65 public static org.hamcrest.Matcher<java.lang.Object> instanceOf(java.lang.Class<?> type) {
66 return org.hamcrest.core.IsInstanceOf.instanceOf(type);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowWranglerTest.java 19 import static org.hamcrest.CoreMatchers.instanceOf;
109 assertThat(shadowOf(textFoo), instanceOf(ShadowTextFoo.class));
AndroidTranslatorTest.java 77 assertThat(Robolectric.shadowOf_(instance), instanceOf(ShadowClassWithNoDefaultConstructor.class));
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
PreferenceGroupTest.java 4 import static org.hamcrest.CoreMatchers.instanceOf;
50 assertThat(shadow, instanceOf(ShadowPreference.class));
TabHostTest.java 16 import static org.hamcrest.CoreMatchers.instanceOf;
204 assertThat(host.getTabWidget(), instanceOf(TabWidget.class));
ApplicationTest.java 34 import static org.hamcrest.core.IsInstanceOf.instanceOf;
94 assertThat(systemService, instanceOf(expectedClass));
ContentResolverTest.java 176 assertThat(contentResolver.openInputStream(uri21), CoreMatchers.instanceOf(InputStream.class));
181 assertThat(contentResolver.openOutputStream(uri21), CoreMatchers.instanceOf(OutputStream.class));
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
AlertDialogTest.java 57 import static org.hamcrest.Matchers.instanceOf;
410 onData(allOf(is(instanceOf(String.class)), is(expectedContent[i]))).inRoot(isDialog()).
418 onData(allOf(is(instanceOf(String.class)), is(expectedContent[indexToClick]))).
496 onData(allOf(is(instanceOf(String.class)), is(expectedContent[i]))).inRoot(isDialog()).
529 onData(allOf(is(instanceOf(String.class)), is(expectedContent[1]))).
536 onData(allOf(is(instanceOf(String.class)), is(expectedContent[1]))).
544 onData(allOf(is(instanceOf(String.class)), is(expectedContent[expectedCount - 1]))).
623 onData(allOf(is(instanceOf(String.class)), is(expectedContent[i]))).inRoot(isDialog()).
646 onData(allOf(is(instanceOf(String.class)),
653 onData(allOf(is(instanceOf(String.class))
    [all...]
  /external/hamcrest/library/src/org/hamcrest/
Matchers.java 28 * This is a shortcut to the frequently used is(instanceOf(SomeClass.class)).
30 * eg. assertThat(cheese, is(instanceOf(Cheddar.class)))
65 public static org.hamcrest.Matcher<java.lang.Object> instanceOf(java.lang.Class<?> type) {
66 return org.hamcrest.core.IsInstanceOf.instanceOf(type);
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /external/proguard/src/proguard/evaluation/
Processor.java 623 int instanceOf = stack.apop().instanceOf(referenceValue.getType(),
626 stack.push(instanceOf == Value.NEVER ? valueFactory.createIntegerValue(0) :
627 instanceOf == Value.ALWAYS ? valueFactory.createIntegerValue(1) :
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/5.0.1/
asm-commons-5.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/5.0.3/
asm-commons-5.0.3.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/5.0.4/
asm-commons-5.0.4.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-commons/5.0.3/
asm-commons-5.0.3.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-commons/5.0.4/
asm-commons-5.0.4.jar 
  /external/guava/guava/src/com/google/common/util/concurrent/
ServiceManager.java 23 import static com.google.common.base.Predicates.instanceOf;
392 .add("services", Collections2.filter(services, not(instanceOf(NoOpService.class))))
579 if (!(entry.getValue() instanceof NoOpService)) {
598 if (!stopWatch.isRunning() && !(service instanceof NoOpService)) {
653 if (!(service instanceof NoOpService)) {
738 if (!(service instanceof NoOpService)) {
761 if (!(service instanceof NoOpService)) {
774 if (!(service instanceof NoOpService)) {
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewFocusRecoveryTest.java 18 import static org.hamcrest.CoreMatchers.instanceOf;
431 assertThat(vh, instanceOf(FocusViewHolder.class));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingExecutorServiceTest.java 274 assertTrue(task instanceof WrappedCallable);
281 assertTrue(task instanceof WrappedRunnable);
288 assertTrue(task instanceof WrappedRunnable);
295 assertTrue(command instanceof WrappedRunnable);
301 Predicate<Object> p = Predicates.instanceOf(WrappedCallable.class);
  /external/proguard/src/proguard/evaluation/value/
TypedReferenceValue.java 84 public int instanceOf(String otherType, Clazz otherReferencedClass)

Completed in 1928 milliseconds

12 3 4 5 6 7 8 9