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

1 2 3 4 56 7 8 910

  /external/guava/guava/src/com/google/common/primitives/
Shorts.java 282 * different types), use a shared {@link java.nio.ByteBuffer} instance, or use
397 return LexicographicalComparator.INSTANCE;
401 INSTANCE;
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 341 return LexicographicalComparator.INSTANCE;
345 INSTANCE;
Ints.java 343 return LexicographicalComparator.INSTANCE;
347 INSTANCE;
Longs.java 317 return LexicographicalComparator.INSTANCE;
321 INSTANCE;
Shorts.java 345 return LexicographicalComparator.INSTANCE;
349 INSTANCE;
  /packages/apps/Email/src/org/apache/commons/io/
FileUtils.java 285 * search. Use TrueFileFilter.INSTANCE to match all directories.
302 FileFilterUtils.notFileFilter(DirectoryFileFilter.INSTANCE));
307 effDirFilter = FalseFileFilter.INSTANCE;
310 DirectoryFileFilter.INSTANCE);
331 * search. Use TrueFileFilter.INSTANCE to match all directories.
373 filter = TrueFileFilter.INSTANCE;
379 (recursive ? TrueFileFilter.INSTANCE : FalseFileFilter.INSTANCE));
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedDataGenerator.java 99 String digestName = CMSSignedHelper.INSTANCE.getDigestAlgName(digestOID);
100 String signatureName = digestName + "with" + CMSSignedHelper.INSTANCE.getEncryptionAlgName(encOID);
148 * @param rand instance of SecureRandom to use
654 digestAlgs.add(CMSSignedHelper.INSTANCE.fixAlgID(signer.getDigestAlgorithmID()));
CMSSignedData.java 73 private static final CMSSignedHelper HELPER = CMSSignedHelper.INSTANCE;
566 digestAlgs.add(CMSSignedHelper.INSTANCE.fixAlgID(signer.getDigestAlgorithmID()));
  /libcore/luni/src/main/java/libcore/net/http/
HttpEngine.java 242 HttpConnectionPool.INSTANCE.recycle(connection);
471 HttpConnectionPool.INSTANCE.recycle(connection);
523 HttpConnectionPool.INSTANCE.recycle(connection);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBuilderTest.java 331 assertSame(sb, sb.append(Fixture.INSTANCE));
332 assertEquals(Fixture.INSTANCE.toString(), sb.toString());
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 48 * instance for a pre-existing comparator. You can also skip the comparator step
82 return (Ordering<C>) NaturalOrdering.INSTANCE;
264 return UsingToStringOrdering.INSTANCE;
289 * Constructs a new instance of this class (only invokable by the subclass
389 // Regular instance methods
ImmutableTable.java 48 return (ImmutableTable<R, C, V>) EmptyImmutableTable.INSTANCE;
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 134 Collections.sort(engines, EngineInfoComparator.INSTANCE);
259 static EngineInfoComparator INSTANCE = new EngineInfoComparator();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 443 return DERNull.INSTANCE; // actual content is ignored (enforce 0 length?)
ASN1Set.java 364 return DERNull.INSTANCE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500Name.java 33 private static X500NameStyle defaultStyle = BCStyle.INSTANCE;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateCrtKey.java 131 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
DigestSignatureSpi.java 73 this.algId = new AlgorithmIdentifier(objId, DERNull.INSTANCE);
82 throw new InvalidKeyException("Supplied key (" + getType(publicKey) + ") is not a RSAPublicKey instance");
97 throw new InvalidKeyException("Supplied key (" + getType(privateKey) + ") is not a RSAPrivateKey instance");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateCrtKey.java 131 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
X509CertificateObject.java 806 if (id2.getParameters() != null && !id2.getParameters().equals(DERNull.INSTANCE))
816 if (id1.getParameters() != null && !id1.getParameters().equals(DERNull.INSTANCE))
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSet.java 54 return (ImmutableSet<E>) EmptyImmutableSet.INSTANCE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
LogCatMonitor.java 135 LogCatReceiver r = LogCatReceiverFactory.INSTANCE.newReceiver(device, mPrefStore);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/preferences/
DialogWithToggleUtils.java 63 IScopeContext scope = InstanceScope.INSTANCE;
  /tools/motodev/src/plugins/translation/src/com/motorola/studio/android/localization/translators/preferences/ui/
TranslationPreferencePage.java 68 InstanceScope scope = (InstanceScope) InstanceScope.INSTANCE;
  /packages/apps/Email/src/com/android/email/activity/
MailboxFragmentAdapter.java 79 public static final Callback INSTANCE = new EmptyCallback();
175 mCallback = (callback == null) ? EmptyCallback.INSTANCE : callback;

Completed in 728 milliseconds

1 2 3 4 56 7 8 910