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

1 2 3

  /external/guava/src/com/google/common/collect/
EmptyImmutableListMultimap.java 28 static final EmptyImmutableListMultimap INSTANCE
36 return INSTANCE; // preserve singleton property
EmptyImmutableMultiset.java 28 static final EmptyImmutableMultiset INSTANCE = new EmptyImmutableMultiset();
35 return INSTANCE; // preserve singleton property
EmptyImmutableSetMultimap.java 28 static final EmptyImmutableSetMultimap INSTANCE
36 return INSTANCE; // preserve singleton property
ReverseNaturalOrdering.java 29 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(iterable);
61 return NaturalOrdering.INSTANCE.min(a, b);
65 return NaturalOrdering.INSTANCE.min(a, b, c, rest);
69 return NaturalOrdering.INSTANCE.min(iterable);
74 return INSTANCE;
UsingToStringOrdering.java 27 static final UsingToStringOrdering INSTANCE = new UsingToStringOrdering();
35 return INSTANCE;
NaturalOrdering.java 31 static final NaturalOrdering INSTANCE = new NaturalOrdering();
46 return (Ordering) ReverseNaturalOrdering.INSTANCE;
66 return INSTANCE;
EmptyImmutableMap.java 33 static final EmptyImmutableMap INSTANCE = new EmptyImmutableMap();
86 return INSTANCE; // preserve singleton property
EmptyImmutableSet.java 33 static final EmptyImmutableSet INSTANCE = new EmptyImmutableSet();
91 return INSTANCE; // preserve singleton property
EmptyImmutableList.java 38 static final EmptyImmutableList INSTANCE = new EmptyImmutableList();
120 return INSTANCE; // preserve singleton property
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
DirectoryFileFilter.java 30 * String[] files = dir.list( DirectoryFileFilter.INSTANCE );
45 * Singleton instance of directory filter.
50 * Singleton instance of directory filter.
55 public static final IOFileFilter INSTANCE = DIRECTORY;
FalseFileFilter.java 33 * Singleton instance of false filter.
38 * Singleton instance of false filter.
43 public static final IOFileFilter INSTANCE = FALSE;
TrueFileFilter.java 33 * Singleton instance of true filter.
38 * Singleton instance of true filter.
43 public static final IOFileFilter INSTANCE = TRUE;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 52 private static BluetoothOppPreference INSTANCE;
54 /* Used when obtaining a reference to the singleton instance. */
71 if (INSTANCE == null) {
72 INSTANCE = new BluetoothOppPreference();
74 if (!INSTANCE.init(context)) {
77 return INSTANCE;
BluetoothOppManager.java 61 private static BluetoothOppManager INSTANCE;
63 /** Used when obtaining a reference to the singleton instance. */
109 * Get singleton instance.
113 if (INSTANCE == null) {
114 INSTANCE = new BluetoothOppManager();
116 INSTANCE.init(context);
118 return INSTANCE;
  /external/guava/src/com/google/common/primitives/
SignedBytes.java 163 return LexicographicalComparator.INSTANCE;
167 INSTANCE;
UnsignedBytes.java 166 return LexicographicalComparator.INSTANCE;
170 INSTANCE;
  /packages/apps/Email/src/com/android/email/
ExchangeUtils.java 59 ret = NullEmailService.INSTANCE;
83 public static final NullEmailService INSTANCE = new NullEmailService();
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothManager.java 48 private static LocalBluetoothManager INSTANCE;
49 /** Used when obtaining a reference to the singleton instance. */
90 if (INSTANCE == null) {
91 INSTANCE = new LocalBluetoothManager();
94 if (!INSTANCE.init(context)) {
98 LocalBluetoothProfileManager.init(INSTANCE);
100 return INSTANCE;
  /packages/apps/Email/src/com/android/exchange/
SyncManager.java 215 protected static SyncManager INSTANCE;
244 * The proxy wraps checking for existence of a SyncManager instance and an active callback.
252 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
260 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
268 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
276 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback
    [all...]
  /external/guava/src/com/google/common/base/
Predicates.java 54 return (Predicate<T>) AlwaysTruePredicate.INSTANCE;
63 return (Predicate<T>) AlwaysFalsePredicate.INSTANCE;
72 return (Predicate<T>) IsNullPredicate.INSTANCE;
81 return (Predicate<T>) NotNullPredicate.INSTANCE;
183 * tested is an instance of the given class. If the object being tested
225 INSTANCE;
238 INSTANCE;
406 INSTANCE;
419 INSTANCE;
Functions.java 49 return ToStringFunction.INSTANCE;
54 INSTANCE;
70 return (Function<E, E>) IdentityFunction.INSTANCE;
75 INSTANCE;
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/generators/
DHBasicKeyPairGenerator.java 22 private DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.INSTANCE;
DHKeyGeneratorHelper.java 10 static final DHKeyGeneratorHelper INSTANCE = new DHKeyGeneratorHelper();
DHKeyPairGenerator.java 22 private DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.INSTANCE;
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpResponseFactory.java 80 this(EnglishReasonPhraseCatalog.INSTANCE);

Completed in 1480 milliseconds

1 2 3