HomeSort by relevance Sort by last modified time
    Searched defs:INSTANCE (Results 76 - 100 of 682) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
Clock.java 20 private static final Clock INSTANCE = new Clock();
22 private static Clock sInstance = INSTANCE;
35 sInstance = INSTANCE;
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Host.java 74 this.hash = hashFunction.hashObject(this, HostFunnel.INSTANCE).asInt();
94 INSTANCE;
97 StringMapFunnel.INSTANCE.funnel(from.properties, into);
VmSpec.java 75 this.hash = getPersistentHashFunction().hashObject(this, VmSpecFunnel.INSTANCE).asInt();
92 INSTANCE;
95 StringMapFunnel.INSTANCE.funnel(from.properties, into);
96 StringMapFunnel.INSTANCE.funnel(from.options, into);
  /external/guava/guava/src/com/google/common/io/
Closer.java 97 ? SuppressingSuppressor.INSTANCE
98 : LoggingSuppressor.INSTANCE;
247 static final LoggingSuppressor INSTANCE = new LoggingSuppressor();
263 static final SuppressingSuppressor INSTANCE = new SuppressingSuppressor();
289 LoggingSuppressor.INSTANCE.suppress(closeable, thrown, suppressed);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapEntrySetTester.java 50 INSTANCE;
66 .entrySet().contains(Helpers.mapEntry(IncomparableType.INSTANCE, samples.e0.getValue())));
71 .entrySet().contains(Helpers.mapEntry(samples.e0.getKey(), IncomparableType.INSTANCE)));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHKeyGeneratorHelper.java 12 static final DHKeyGeneratorHelper INSTANCE = new DHKeyGeneratorHelper();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringArrayPropertyEditor.java 30 // Instance
33 public static final PropertyEditor INSTANCE = new StringArrayPropertyEditor();
BooleanObjectPropertyEditor.java 34 // Instance
37 public static final PropertyEditor INSTANCE = new BooleanObjectPropertyEditor();
BooleanPropertyEditor.java 34 // Instance
37 public static final PropertyEditor INSTANCE = new BooleanPropertyEditor();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyEditor.java 31 // Instance
34 public static final PropertyEditor INSTANCE = new StringPropertyEditor();
  /external/guava/guava/src/com/google/common/base/
Absent.java 33 static final Absent<Object> INSTANCE = new Absent<Object>();
37 return (Optional<T>) INSTANCE;
90 return INSTANCE;
  /external/guava/guava/src/com/google/common/collect/
MapConstraints.java 54 return NotNullMapConstraint.INSTANCE;
59 INSTANCE;
  /external/guava/guava/src/com/google/common/primitives/
SignedBytes.java 184 return LexicographicalComparator.INSTANCE;
188 INSTANCE;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
NodeId.java 26 * interface node with the key of {@code Key<Integer>} and an instance node with the same
43 /** Instance node, used when something is bound to an instance. */
44 INSTANCE
60 return new NodeId(key, NodeType.INSTANCE);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
NoOpGenerator.java 26 public static final NoOpGenerator INSTANCE = new NoOpGenerator();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
AuthenticatorAdapter.java 35 public static final Authenticator INSTANCE = new AuthenticatorAdapter();
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/element/
SmaliClassElementType.java 50 public static final SmaliClassElementType INSTANCE = new SmaliClassElementType();
SmaliMethodParameterElementType.java 47 public static final SmaliMethodParameterElementType INSTANCE = new SmaliMethodParameterElementType();
SmaliMethodPrototypeElementType.java 48 public static final SmaliMethodPrototypeElementType INSTANCE = new SmaliMethodPrototypeElementType();
  /libcore/ojluni/src/main/java/java/util/logging/
LoggingProxyImpl.java 34 static final LoggingProxy INSTANCE = new LoggingProxyImpl();
  /packages/apps/Camera2/src/com/android/camera/device/
ActiveCameraDeviceTracker.java 35 * Singleton instance.
38 public static final ActiveCameraDeviceTracker INSTANCE = new ActiveCameraDeviceTracker();
41 public static ActiveCameraDeviceTracker instance() { method in class:ActiveCameraDeviceTracker
42 return Singleton.INSTANCE;
  /packages/apps/TV/src/com/android/tv/util/
MainThreadExecutor.java 33 private final static MainThreadExecutor INSTANCE = new MainThreadExecutor();
36 return INSTANCE;
  /external/caliper/caliper/src/test/java/com/google/caliper/memory/
ObjectGraphMeasurerTest.java 100 static WithStaticField INSTANCE = new WithStaticField();
  /external/caliper/examples/src/main/java/examples/
ListModificationBenchmark.java 34 INSTANCE,
62 list.add(Element.INSTANCE);
70 list.add(Element.INSTANCE);
86 list.add(0, Element.INSTANCE);
94 list.add(index, Element.INSTANCE);
102 list.add(Element.INSTANCE);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLEngine.java 38 * instance around to satisfy API calls.
41 public static final OpenSSLEngine INSTANCE = new OpenSSLEngine();
46 return BoringSSL.INSTANCE;
75 * Used when OpenSSL is in use. It uses an ENGINE instance so we need to

Completed in 442 milliseconds

1 2 34 5 6 7 8 91011>>