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

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
EnumXmlPropertyEditor.java 29 public static final EnumXmlPropertyEditor INSTANCE = new EnumXmlPropertyEditor();
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedDataGenerator.java 130 digestAlgs.add(CMSSignedHelper.INSTANCE.fixAlgID(signer.getDigestAlgorithmID()));
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 30 /** The singleton instance of RequestManagerRetriever. */
31 private static final RequestManagerRetriever INSTANCE = new RequestManagerRetriever();
56 return INSTANCE;
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 135 * instance.
181 /** Returns the (possibly null) reference wrapped by this instance. */
306 return Equals.INSTANCE;
318 return Identity.INSTANCE;
324 static final Equals INSTANCE = new Equals();
334 return INSTANCE;
342 static final Identity INSTANCE = new Identity();
353 return INSTANCE;
Functions.java 56 return ToStringFunction.INSTANCE;
61 INSTANCE;
80 return (Function<E, E>) IdentityFunction.INSTANCE;
85 INSTANCE;
Suppliers.java 90 * Returns a supplier which caches the instance retrieved during the first
97 * get()} is called on the reserialized instance.
99 * <p>If {@code delegate} is an instance created by an earlier call to {@code
143 * Returns a supplier that caches the instance supplied by the delegate and
152 * get()} is called on the reserialized instance.
216 * Returns a supplier that always supplies {@code instance}.
218 public static <T> Supplier<T> ofInstance(@Nullable T instance) {
219 return new SupplierOfInstance<T>(instance);
224 final T instance; field in class:Suppliers.SupplierOfInstance
226 SupplierOfInstance(@Nullable T instance) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Cut.java 103 * The implementation neither produces nor consumes any non-null instance of type C, so
108 return (Cut<C>) BelowAll.INSTANCE;
114 private static final BelowAll INSTANCE = new BelowAll();
168 return INSTANCE;
174 * The implementation neither produces nor consumes any non-null instance of
179 return (Cut<C>) AboveAll.INSTANCE;
183 private static final AboveAll INSTANCE = new AboveAll();
229 return INSTANCE;
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 91 * {@link StringBuilder} instance. Does not close the {@code Readable}.
184 return NullWriter.INSTANCE;
189 private static final NullWriter INSTANCE = new NullWriter();
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 156 return LexicographicalComparator.INSTANCE;
160 INSTANCE;
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
EquivalenceTest.java 52 INSTANCE;
60 .onResultOf(LengthFunction.INSTANCE);
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 55 INSTANCE;
63 .onResultOf(LengthFunction.INSTANCE);
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Indexer.java 46 INSTANCE,
124 return new Indexer.IndexedBinding(binding, BindingType.INSTANCE, scope(binding),
  /external/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/
PhoneNumberToTimeZonesMapper.java 93 private static final PhoneNumberToTimeZonesMapper INSTANCE;
97 INSTANCE = new PhoneNumberToTimeZonesMapper(map);
102 * Gets a {@link PhoneNumberToTimeZonesMapper} instance.
105 * this method multiple times will only result in one instance being created.
107 * @return a {@link PhoneNumberToTimeZonesMapper} instance
110 return LazyHolder.INSTANCE;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InvocationHandlerGenerator.java 26 public static final InvocationHandlerGenerator INSTANCE = new InvocationHandlerGenerator();
LazyLoaderGenerator.java 25 public static final LazyLoaderGenerator INSTANCE = new LazyLoaderGenerator();
  /external/mockito/src/org/mockito/internal/creation/jmock/
ClassImposterizer.java 29 public static final ClassImposterizer INSTANCE = new ClassImposterizer();
69 " proxy instance class : '" + proxyInstance.getClass().getCanonicalName() + "', loaded by classloader : '" + proxyInstance.getClass().getClassLoader() + "'",
110 enhancer.setNamingPolicy(MockitoNamingPolicy.INSTANCE);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Huffman.java 77 private static final Huffman INSTANCE = new Huffman();
80 return INSTANCE;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
OkHostnameVerifier.java 39 public static final OkHostnameVerifier INSTANCE = new OkHostnameVerifier();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
OdexedFieldInstructionMapper.java 46 private static final int INSTANCE = 0;
222 [isStatic(fieldOpcode.normalOpcode)?STATIC:INSTANCE]
237 [isStatic(odexedOpcode)?STATIC:INSTANCE]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstructionFactory.java 44 public static final ImmutableInstructionFactory INSTANCE = new ImmutableInstructionFactory();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderEncodedValues.java 100 return BuilderNullEncodedValue.INSTANCE;
205 public static final BuilderNullEncodedValue INSTANCE = new BuilderNullEncodedValue();
  /frameworks/base/core/java/android/text/
TextDirectionHeuristics.java 55 new TextDirectionHeuristicInternal(FirstStrong.INSTANCE, false);
63 new TextDirectionHeuristicInternal(FirstStrong.INSTANCE, true);
75 public static final TextDirectionHeuristic LOCALE = TextDirectionHeuristicLocale.INSTANCE;
229 public static final FirstStrong INSTANCE = new FirstStrong();
300 public static final TextDirectionHeuristicLocale INSTANCE =
  /frameworks/support/v4/java/android/support/v4/text/
TextDirectionHeuristicsCompat.java 48 new TextDirectionHeuristicInternal(FirstStrong.INSTANCE, false);
56 new TextDirectionHeuristicInternal(FirstStrong.INSTANCE, true);
69 TextDirectionHeuristicLocale.INSTANCE;
193 public static final FirstStrong INSTANCE = new FirstStrong();
254 public static final TextDirectionHeuristicLocale INSTANCE =
  /libcore/ojluni/src/main/java/java/lang/
ProcessBuilder.java 41 * <p>Each {@code ProcessBuilder} instance manages a collection
43 * {@link Process} instance with those attributes. The {@link
44 * #start()} method can be invoked repeatedly from the same instance
80 * If multiple threads access a {@code ProcessBuilder} instance
221 * {@code ProcessBuilder} instance or the values returned by
355 static final NullInputStream INSTANCE = new NullInputStream();
365 static final NullOutputStream INSTANCE = new NullOutputStream();
376 * Each {@code Redirect} instance is one of the following:
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 51 private static BluetoothOppPreference INSTANCE;
53 /* Used when obtaining a reference to the singleton instance. */
70 if (INSTANCE == null) {
71 INSTANCE = new BluetoothOppPreference();
73 if (!INSTANCE.init(context)) {
76 return INSTANCE;

Completed in 853 milliseconds

1 2 3 4 56 7 8 91011>>