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

1 2 3 4 5 6 7 891011>>

  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 273 static final DoubleConverter INSTANCE = new DoubleConverter();
291 return INSTANCE;
304 return DoubleConverter.INSTANCE;
385 return LexicographicalComparator.INSTANCE;
389 INSTANCE;
Ints.java 294 * different types), use a shared {@link java.nio.ByteBuffer} instance, or use
340 static final IntConverter INSTANCE = new IntConverter();
358 return INSTANCE;
371 return IntConverter.INSTANCE;
446 return LexicographicalComparator.INSTANCE;
450 INSTANCE;
Longs.java 261 * different types), use a shared {@link java.nio.ByteBuffer} instance, or use
372 static final LongConverter INSTANCE = new LongConverter();
390 return INSTANCE;
403 return LongConverter.INSTANCE;
479 return LexicographicalComparator.INSTANCE;
483 INSTANCE;
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 185 INSTANCE;
192 INSTANCE;
238 * Constructs a new {@code CacheBuilder} instance with default settings, including strong keys,
353 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE);
469 * Specifies a listener instance that caches should notify each time an entry is removed for any
475 * point to the same instance, but only the returned reference has the correct generic type
505 MoreObjects.firstNonNull(removalListener, NullListener.INSTANCE);
535 * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
553 * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
584 * Returns a string representation for this CacheBuilder instance. The exact form of the returne
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Ints.java 288 static final IntConverter INSTANCE = new IntConverter();
306 return INSTANCE;
319 return IntConverter.INSTANCE;
394 return LexicographicalComparator.INSTANCE;
398 INSTANCE;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Norm2AllModes.java 283 // instance cache ---------------------------------------------------------- ***
306 return getInstanceFromSingleton(NFCSingleton.INSTANCE);
309 return getInstanceFromSingleton(NFKCSingleton.INSTANCE);
312 return getInstanceFromSingleton(NFKC_CFSingleton.INSTANCE);
328 singleton=NFCSingleton.INSTANCE;
330 singleton=NFKCSingleton.INSTANCE;
332 singleton=NFKC_CFSingleton.INSTANCE;
381 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfc");
384 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfkc");
387 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfkc_cf")
    [all...]
UBiDiProps.java 334 * public singleton instance
336 public static final UBiDiProps INSTANCE;
342 INSTANCE = new UBiDiProps();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Norm2AllModes.java 279 // instance cache ---------------------------------------------------------- ***
302 return getInstanceFromSingleton(NFCSingleton.INSTANCE);
305 return getInstanceFromSingleton(NFKCSingleton.INSTANCE);
308 return getInstanceFromSingleton(NFKC_CFSingleton.INSTANCE);
324 singleton=NFCSingleton.INSTANCE;
326 singleton=NFKCSingleton.INSTANCE;
328 singleton=NFKC_CFSingleton.INSTANCE;
377 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfc");
380 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfkc");
383 private static final Norm2AllModesSingleton INSTANCE=new Norm2AllModesSingleton("nfkc_cf")
    [all...]
UBiDiProps.java 330 * public singleton instance
332 public static final UBiDiProps INSTANCE;
338 INSTANCE = new UBiDiProps();
  /frameworks/base/services/core/java/com/android/server/webkit/
SystemImpl.java 67 private static final SystemImpl INSTANCE = new SystemImpl();
71 return LazyHolder.INSTANCE;
  /libcore/ojluni/src/main/java/java/lang/
Math.java 692 private static final Random INSTANCE = new Random();
719 return NoImagePreloadHolder.INSTANCE.nextDouble();
729 NoImagePreloadHolder.INSTANCE.setSeed(seed);
736 return NoImagePreloadHolder.INSTANCE.nextInt();
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
Cache.java 148 return (Cache<K,V>) NullCache.INSTANCE;
205 final static Cache<Object,Object> INSTANCE = new NullCache<>();
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.0-beta-1103/
kotlin-annotation-processing-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.0-beta-4584/
kotlin-annotation-processing-1.0.0-beta-4584.jar 
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ErrorMessages.java 243 return ComponentBuilderMessages.INSTANCE;
245 return SubcomponentBuilderMessages.INSTANCE;
247 return ProductionComponentBuilderMessages.INSTANCE;
254 static final ComponentBuilderMessages INSTANCE = new ComponentBuilderMessages();
364 static final SubcomponentBuilderMessages INSTANCE = new SubcomponentBuilderMessages();
381 static final ProductionComponentBuilderMessages INSTANCE =
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 437 * <p>This instance is equivalent to: <pre> {@code
450 return DirectExecutor.INSTANCE;
455 INSTANCE;
473 * <p>If the delegate executor was already an instance of {@code
501 * <p>If the delegate executor was already an instance of {@code
    [all...]
  /external/guava/guava-testlib/test/com/google/common/testing/
ArbitraryInstancesTest.java 293 assertSame(SomeAbstractClass.INSTANCE, ArbitraryInstances.get(SomeAbstractClass.class));
294 assertSame(WithPrivateConstructor.INSTANCE,
297 assertSame(WithExceptionalConstructor.INSTANCE,
354 assertSame(WithPublicConstant.INSTANCE,
400 Object instance = ArbitraryInstances.get(mutableClass); local
401 assertNotNull("Expected to return non-null for: " + mutableClass, instance);
402 assertNotSame("Expected to return fresh instance for: " + mutableClass,
403 instance, ArbitraryInstances.get(mutableClass));
416 public static final SomeAbstractClass INSTANCE = new SomeAbstractClass() {};
425 public static final WithPrivateConstructor INSTANCE = new WithPrivateConstructor()
485 public static NonFinalFieldIgnored instance = field in class:ArbitraryInstancesTest.NonFinalFieldIgnored
500 public final NonStaticFieldIgnored instance = field in class:ArbitraryInstancesTest.NonStaticFieldIgnored
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
MethodInterceptorGenerator.java 28 public static final MethodInterceptorGenerator INSTANCE = new MethodInterceptorGenerator();
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 173 Collections.sort(engines, EngineInfoComparator.INSTANCE);
298 static EngineInfoComparator INSTANCE = new EngineInfoComparator();
  /libcore/ojluni/src/main/java/java/text/
DateFormat.java 147 * The {@link Calendar} instance used for calculating the date-time fields
285 * occurrence of that time field. For instance, formatting a Date to
319 * occurrence of that time field. For instance, formatting a Date to
338 DontCareFieldPosition.INSTANCE).toString();
571 * <code>get*Instance</code> methods of this class can return
576 * It must contain at least a <code>Locale</code> instance equal to
773 DateFormatGetter.INSTANCE,
830 * @return Field instance representing calendarField.
890 Object instance = instanceMap.get(getName()); local
    [all...]
NumberFormat.java 229 * null or not an instance of <code>Number</code>.
288 DontCareFieldPosition.INSTANCE).toString();
299 DontCareFieldPosition.INSTANCE).toString();
473 * <code>get*Instance</code> methods of this class can return
478 * It must contain at least a <code>Locale</code> instance equal to
737 NumberFormatGetter.INSTANCE,
1054 Object instance = instanceMap.get(getName()); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Arrays.java 104 static final NaturalOrder INSTANCE = new NaturalOrder();
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 64 private static BluetoothOppManager INSTANCE;
66 /** Used when obtaining a reference to the singleton instance. */
121 * Get singleton instance.
125 if (INSTANCE == null) {
126 INSTANCE = new BluetoothOppManager();
128 INSTANCE.init(context);
130 return INSTANCE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 94 public static final XmlPropertyEditor INSTANCE = new XmlPropertyEditor();
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.0.0-alpha9/
compiler-2.0.0-alpha9.jar 

Completed in 698 milliseconds

1 2 3 4 5 6 7 891011>>