HomeSort by relevance Sort by last modified time
    Searched refs:INSTANCE (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/guava/guava-tests/test/com/google/common/collect/
EmptyImmutableTableTest.java 27 private static final ImmutableTable<Character, Integer, String> INSTANCE =
32 return ImmutableSet.of(INSTANCE);
36 assertEquals(0, INSTANCE.hashCode());
41 .addEqualityGroup(INSTANCE, HashBasedTable.create(),
49 assertEquals("{}", INSTANCE.toString());
53 assertEquals(0, INSTANCE.size());
57 assertNull(INSTANCE.get('a', 1));
61 assertTrue(INSTANCE.isEmpty());
65 assertEquals(ImmutableSet.of(), INSTANCE.cellSet());
69 assertEquals(ImmutableMap.of(), INSTANCE.column(1))
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyImmutableList.java 25 static final EmptyImmutableList INSTANCE = new EmptyImmutableList();
EmptyImmutableSet.java 26 static final EmptyImmutableSet INSTANCE = new EmptyImmutableSet();
EmptyImmutableMap.java 27 static final EmptyImmutableMap INSTANCE = new EmptyImmutableMap();
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
NoOp.java 25 * A thread-safe singleton instance of the <code>NoOp</code> callback.
27 public static final NoOp INSTANCE = new NoOp() { };
CallbackInfo.java 53 new CallbackInfo(NoOp.class, NoOpGenerator.INSTANCE),
54 new CallbackInfo(MethodInterceptor.class, MethodInterceptorGenerator.INSTANCE),
55 new CallbackInfo(InvocationHandler.class, InvocationHandlerGenerator.INSTANCE),
56 new CallbackInfo(LazyLoader.class, LazyLoaderGenerator.INSTANCE),
57 new CallbackInfo(Dispatcher.class, DispatcherGenerator.INSTANCE),
58 new CallbackInfo(FixedValue.class, FixedValueGenerator.INSTANCE),
  /external/guava/guava/src/com/google/common/base/
Equivalences.java 49 return Equals.INSTANCE;
58 return Identity.INSTANCE;
64 static final Equals INSTANCE = new Equals();
74 return INSTANCE;
82 static final Identity INSTANCE = new Identity();
93 return INSTANCE;
  /external/guava/guava/src/com/google/common/hash/
Funnels.java 33 return ByteArrayFunnel.INSTANCE;
37 INSTANCE;
52 return StringFunnel.INSTANCE;
56 INSTANCE;
  /dalvik/dexgen/src/com/android/dexgen/util/
DexClassLoaderHelper.java 23 * to obtain appropriate {@code DexClassLoader} instance, which can be then used for
29 private static final DexClassLoaderHelper INSTANCE = new DexClassLoaderHelper();
37 * Returns the sole instance of {@code DexClassLoaderHelper}.
39 * @return dex {@code DexClassLoaderHelper} sole instance
42 return DexClassLoaderHelperHolder.INSTANCE;
46 * Creates and returns DexClassLoader instance with its classpath
50 * classes canned into a working PathHolder instance.
51 * @return dex class loader instance with its classpath set to location
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableListMultimap.java 28 static final EmptyImmutableListMultimap INSTANCE
36 return INSTANCE; // preserve singleton property
EmptyImmutableSetMultimap.java 28 static final EmptyImmutableSetMultimap INSTANCE
36 return INSTANCE; // preserve singleton property
UsingToStringOrdering.java 27 static final UsingToStringOrdering INSTANCE = new UsingToStringOrdering();
35 return INSTANCE;
ReverseNaturalOrdering.java 31 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering();
49 return NaturalOrdering.INSTANCE.max(a, b);
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest);
57 return NaturalOrdering.INSTANCE.max(iterator);
61 return NaturalOrdering.INSTANCE.max(iterable);
65 return NaturalOrdering.INSTANCE.min(a, b);
69 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
73 return NaturalOrdering.INSTANCE.min(iterator);
77 return NaturalOrdering.INSTANCE.min(iterable);
82 return INSTANCE;
    [all...]
DiscreteDomains.java 40 return IntegerDomain.INSTANCE;
45 private static final IntegerDomain INSTANCE = new IntegerDomain();
70 return INSTANCE;
80 return LongDomain.INSTANCE;
85 private static final LongDomain INSTANCE = new LongDomain();
117 return INSTANCE;
128 return BigIntegerDomain.INSTANCE;
133 private static final BigIntegerDomain INSTANCE = new BigIntegerDomain();
153 return INSTANCE;
  /external/jarjar/src/main/com/tonicsystems/jarjar/
ManifestProcessor.java 26 private static final ManifestProcessor INSTANCE = new ManifestProcessor();
29 return INSTANCE;
  /external/mockito/src/org/mockito/internal/creation/cglib/
MockitoNamingPolicy.java 11 public static final MockitoNamingPolicy INSTANCE = new MockitoNamingPolicy();
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
MethodInfoTransformer.java 22 private static final MethodInfoTransformer INSTANCE = new MethodInfoTransformer();
25 return INSTANCE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERNull.java 11 public static final DERNull INSTANCE = new DERNull();
16 * @deprecated use DERNull.INSTANCE
  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableListMultimap_CustomFieldSerializer.java 31 EmptyImmutableListMultimap instance) {
36 return EmptyImmutableListMultimap.INSTANCE;
40 EmptyImmutableListMultimap instance) {
EmptyImmutableList_CustomFieldSerializer.java 30 EmptyImmutableList instance) {
35 return EmptyImmutableList.INSTANCE;
39 EmptyImmutableList instance) {
EmptyImmutableMap_CustomFieldSerializer.java 31 EmptyImmutableMap instance) {
36 return EmptyImmutableMap.INSTANCE;
40 EmptyImmutableMap instance) {
EmptyImmutableMultiset_CustomFieldSerializer.java 31 EmptyImmutableMultiset instance) {
36 return EmptyImmutableMultiset.INSTANCE;
40 EmptyImmutableMultiset instance) {
EmptyImmutableSetMultimap_CustomFieldSerializer.java 31 EmptyImmutableSetMultimap instance) {
36 return EmptyImmutableSetMultimap.INSTANCE;
40 EmptyImmutableSetMultimap instance) {
EmptyImmutableSet_CustomFieldSerializer.java 30 EmptyImmutableSet instance) {
35 return EmptyImmutableSet.INSTANCE;
39 EmptyImmutableSet instance) {
NaturalOrdering_CustomFieldSerializer.java 30 NaturalOrdering instance) {
35 return NaturalOrdering.INSTANCE;
39 NaturalOrdering instance) {

Completed in 5937 milliseconds

1 2 3 4 5 6 7 8 9