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

1 2 34 5 6 7 8 910

  /external/okhttp/src/main/java/libcore/net/http/
HttpConnection.java 46 * may be direct to the origin server or via a proxy. Create an instance using
134 return HttpConnectionPool.INSTANCE.get(address, connectTimeout);
153 return HttpConnectionPool.INSTANCE.get(address, connectTimeout);
164 return HttpConnectionPool.INSTANCE.get(new Address(uri, sslSocketFactory), connectTimeout);
228 HttpConnectionPool.INSTANCE.share(this);
HttpConnectionPool.java 43 public static final HttpConnectionPool INSTANCE = new HttpConnectionPool();
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnectionPool.java 44 public static final HttpConnectionPool INSTANCE = new HttpConnectionPool();
HttpConnection.java 44 * to the origin server or via a proxy. Create an instance using the {@link
98 return HttpConnectionPool.INSTANCE.get(address, connectTimeout);
117 return HttpConnectionPool.INSTANCE.get(address, connectTimeout);
128 return HttpConnectionPool.INSTANCE.get(new Address(uri, sslSocketFactory), connectTimeout);
  /packages/apps/Browser/src/com/android/browser/stub/
NullController.java 20 public static NullController INSTANCE = new NullController();
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountServerBaseFragment.java 61 protected Callback mCallback = EmptyCallback.INSTANCE;
105 public static final Callback INSTANCE = new EmptyCallback();
185 mCallback = EmptyCallback.INSTANCE;
221 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
  /packages/apps/Email/src/com/android/email/view/
RigidWebView.java 51 private final Clock mClock = Clock.INSTANCE;
  /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();
  /packages/apps/Email/src/org/apache/commons/io/
FileSystemUtils.java 51 /** Singleton instance, used mainly for testing. */
52 private static final FileSystemUtils INSTANCE = new FileSystemUtils();
137 return INSTANCE.freeSpaceOS(path, OS, false);
166 return INSTANCE.freeSpaceOS(path, OS, true);
  /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;
  /packages/apps/Email/src/com/android/email/activity/
ThreePaneLayout.java 121 private Callback mCallback = EmptyCallback.INSTANCE;
131 public static final Callback INSTANCE = new EmptyCallback();
254 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;
  /external/apache-http/src/org/apache/http/impl/
EnglishReasonPhraseCatalog.java 57 * The default instance of this catalog.
61 public final static EnglishReasonPhraseCatalog INSTANCE =
67 * If you need an instance of this class, use {@link #INSTANCE INSTANCE}.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAESOAEPparams.java 23 public final static AlgorithmIdentifier DEFAULT_HASH_ALGORITHM = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
RSASSAPSSparams.java 26 public final static AlgorithmIdentifier DEFAULT_HASH_ALGORITHM = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AlgorithmIdentifier.java 167 v.add(DERNull.INSTANCE);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateKey.java 82 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
BCRSAPublicKey.java 93 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPublicKey(getModulus(), getPublicExponent()));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateKey.java 82 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new org.bouncycastle.asn1.pkcs.RSAPrivateKey(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO));
JCERSAPublicKey.java 95 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()));
X509SignatureUtil.java 31 private static final ASN1Null derNull = DERNull.INSTANCE;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
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/guava/guava/src/com/google/common/cache/
CacheBuilder.java 175 INSTANCE;
182 INSTANCE;
228 * Constructs a new {@code CacheBuilder} instance with default settings, including strong keys,
393 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
435 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
666 * Specifies a listener instance, which all caches built using this {@code CacheBuilder} will
678 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
708 return (RemovalListener<K1, V1>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
730 * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SingletonImmutableTableTest.java 74 .addEqualityGroup(EmptyImmutableTable.INSTANCE,
  /packages/apps/Email/src/com/android/email/
Throttle.java 48 /** Name of the instance. Only for logging. */
79 this(name, callback, handler, minTimeout, maxTimeout, Clock.INSTANCE, TIMER);

Completed in 563 milliseconds

1 2 34 5 6 7 8 910