HomeSort by relevance Sort by last modified time
    Searched refs:INSTANCE (Results 51 - 75 of 239) sorted by null

1 23 4 5 6 7 8 910

  /external/guava/guava/src/com/google/common/collect/
GenericMapMaker.java 45 INSTANCE;
146 return (RemovalListener<K, V>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 201 return LexicographicalComparatorHolder.PureJavaComparator.INSTANCE;
222 // INSTANCE;
335 INSTANCE;
UnsignedInts.java 150 return LexicographicalComparator.INSTANCE;
154 INSTANCE;
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpResponseFactory.java 80 this(EnglishReasonPhraseCatalog.INSTANCE);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHKeyGeneratorHelper.java 11 static final DHKeyGeneratorHelper INSTANCE = new DHKeyGeneratorHelper();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java 59 DERNull.INSTANCE);
65 new AlgorithmIdentifier(DigestFactory.getOID(mgfSpec.getDigestAlgorithm()), DERNull.INSTANCE));
178 DERNull.INSTANCE);
184 new AlgorithmIdentifier(DigestFactory.getOID(mgfSpec.getDigestAlgorithm()), DERNull.INSTANCE));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
CharacterPropertyEditor.java 29 // Instance
32 public static final PropertyEditor INSTANCE = new CharacterPropertyEditor();
DoubleObjectPropertyEditor.java 29 // Instance
32 public static final DoubleObjectPropertyEditor INSTANCE = new DoubleObjectPropertyEditor();
DoublePropertyEditor.java 29 // Instance
32 public static final PropertyEditor INSTANCE = new DoublePropertyEditor();
FloatPropertyEditor.java 29 // Instance
32 public static final PropertyEditor INSTANCE = new FloatPropertyEditor();
IntegerObjectPropertyEditor.java 29 // Instance
32 public static final IntegerObjectPropertyEditor INSTANCE = new IntegerObjectPropertyEditor();
IntegerPropertyEditor.java 29 // Instance
32 public static final IntegerPropertyEditor INSTANCE = new IntegerPropertyEditor();
LongObjectPropertyEditor.java 29 // Instance
32 public static final LongObjectPropertyEditor INSTANCE = new LongObjectPropertyEditor();
LongPropertyEditor.java 29 // Instance
32 public static final PropertyEditor INSTANCE = new LongPropertyEditor();
ShortObjectPropertyEditor.java 29 // Instance
32 public static final ShortObjectPropertyEditor INSTANCE = new ShortObjectPropertyEditor();
ShortPropertyEditor.java 29 // Instance
32 public static final PropertyEditor INSTANCE = new ShortPropertyEditor();
StringArrayPropertyEditor.java 30 // Instance
33 public static final PropertyEditor INSTANCE = new StringArrayPropertyEditor();
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatReceiverFactory.java 32 /** Singleton instance. */
33 public static final LogCatReceiverFactory INSTANCE = new LogCatReceiverFactory();
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/ui/view/
SaveStateManager.java 38 private static SaveStateManager instance; field in class:SaveStateManager
50 prefNode = InstanceScope.INSTANCE.getNode(DbCoreActivator.PLUGIN_ID);
54 * @return the single instance of {@link SaveStateManager}
58 if (instance == null)
60 instance = new SaveStateManager();
63 return instance;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 217 AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
223 // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha224, DERNull.INSTANCE);
229 AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
234 AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
239 AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
391 this.sigAlgId = new AlgorithmIdentifier(sigOID, DERNull.INSTANCE);
591 if (params != null && !DERNull.INSTANCE.equals(params))
623 if (params != null && !DERNull.INSTANCE.equals(params))
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 139 AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
145 // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha224, DERNull.INSTANCE);
151 AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
156 AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
161 AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
206 return new AlgorithmIdentifier(sigOid, DERNull.INSTANCE);
  /external/guava/guava/src/com/google/common/base/
Suppliers.java 73 * Returns a supplier which caches the instance retrieved during the first
80 * get()} is called on the reserialized instance.
82 * <p>If {@code delegate} is an instance created by an earlier call to {@code
123 * Returns a supplier that caches the instance supplied by the delegate and
132 * get()} is called on the reserialized instance.
190 * Returns a supplier that always supplies {@code instance}.
192 public static <T> Supplier<T> ofInstance(@Nullable T instance) {
193 return new SupplierOfInstance<T>(instance);
198 final T instance; field in class:Suppliers.SupplierOfInstance
200 SupplierOfInstance(@Nullable T instance) {
    [all...]
Functions.java 52 return ToStringFunction.INSTANCE;
57 INSTANCE;
75 return (Function<E, E>) IdentityFunction.INSTANCE;
80 INSTANCE;
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 54 INSTANCE;
62 .onResultOf(LengthFunction.INSTANCE);
  /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();

Completed in 423 milliseconds

1 23 4 5 6 7 8 910