Home
last modified time | relevance | path

Searched refs:INSTANCE (Results 1 – 25 of 60) sorted by relevance

123

/external/guava/src/com/google/common/collect/
DReverseNaturalOrdering.java29 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering(); field in ReverseNaturalOrdering
49 return NaturalOrdering.INSTANCE.max(a, b); in min()
53 return NaturalOrdering.INSTANCE.max(a, b, c, rest); in min()
57 return NaturalOrdering.INSTANCE.max(iterable); in min()
61 return NaturalOrdering.INSTANCE.min(a, b); in max()
65 return NaturalOrdering.INSTANCE.min(a, b, c, rest); in max()
69 return NaturalOrdering.INSTANCE.min(iterable); in max()
74 return INSTANCE; in readResolve()
DNaturalOrdering.java31 static final NaturalOrdering INSTANCE = new NaturalOrdering(); field in NaturalOrdering
46 return (Ordering) ReverseNaturalOrdering.INSTANCE; in reverse()
66 return INSTANCE; in readResolve()
DEmptyImmutableMultiset.java28 static final EmptyImmutableMultiset INSTANCE = new EmptyImmutableMultiset(); field in EmptyImmutableMultiset
35 return INSTANCE; // preserve singleton property in readResolve()
DEmptyImmutableSetMultimap.java28 static final EmptyImmutableSetMultimap INSTANCE field in EmptyImmutableSetMultimap
36 return INSTANCE; // preserve singleton property in readResolve()
DEmptyImmutableListMultimap.java28 static final EmptyImmutableListMultimap INSTANCE field in EmptyImmutableListMultimap
36 return INSTANCE; // preserve singleton property in readResolve()
DUsingToStringOrdering.java27 static final UsingToStringOrdering INSTANCE = new UsingToStringOrdering(); field in UsingToStringOrdering
35 return INSTANCE; in readResolve()
DEmptyImmutableMap.java33 static final EmptyImmutableMap INSTANCE = new EmptyImmutableMap(); field in EmptyImmutableMap
86 return INSTANCE; // preserve singleton property in readResolve()
DEmptyImmutableSet.java33 static final EmptyImmutableSet INSTANCE = new EmptyImmutableSet(); field in EmptyImmutableSet
91 return INSTANCE; // preserve singleton property in readResolve()
DEmptyImmutableList.java38 static final EmptyImmutableList INSTANCE = new EmptyImmutableList(); field in EmptyImmutableList
120 return INSTANCE; // preserve singleton property in readResolve()
DOrdering.java76 return (Ordering) NaturalOrdering.INSTANCE; in natural()
257 return UsingToStringOrdering.INSTANCE; in usingToString()
/external/guava/src/com/google/common/base/
DPredicates.java54 return (Predicate<T>) AlwaysTruePredicate.INSTANCE; in alwaysTrue()
63 return (Predicate<T>) AlwaysFalsePredicate.INSTANCE; in alwaysFalse()
72 return (Predicate<T>) IsNullPredicate.INSTANCE; in isNull()
81 return (Predicate<T>) NotNullPredicate.INSTANCE; in notNull()
225 INSTANCE; enumConstant
238 INSTANCE; enumConstant
406 INSTANCE; enumConstant
419 INSTANCE; enumConstant
DFunctions.java49 return ToStringFunction.INSTANCE; in toStringFunction()
54 INSTANCE; enumConstant
70 return (Function<E, E>) IdentityFunction.INSTANCE; in identity()
75 INSTANCE; enumConstant
/external/clang/test/Index/
Dcomplete-objc-message-id.m71 // RUN: c-index-test -code-completion-at=%s:46:7 %s | FileCheck -check-prefix=CHECK-INSTANCE-QUAL-I…
72 // RUN: c-index-test -code-completion-at=%s:47:7 %s | FileCheck -check-prefix=CHECK-INSTANCE-QUAL-I…
73 // CHECK-INSTANCE-QUAL-ID: ObjCInstanceMethodDecl:{ResultType int}{TypedText P1_method1} (37)
74 // CHECK-INSTANCE-QUAL-ID: ObjCInstanceMethodDecl:{ResultType int}{TypedText P2_method1} (35)
/external/bouncycastle/src/main/java/org/bouncycastle/jce/
DPKCS10CertificationRequest.java212 …rithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
224 …dentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
229 …dentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
234 …dentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
386 this.sigAlgId = new AlgorithmIdentifier(sigOID, DERNull.INSTANCE); in PKCS10CertificationRequest()
586 if (params != null && !DERNull.INSTANCE.equals(params)) in setSignatureParameters()
618 if (params != null && !DERNull.INSTANCE.equals(params)) in getSignatureName()
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
DX509Util.java135 …rithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
147 …dentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
152 …dentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
157 …dentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
202 return new AlgorithmIdentifier(sigOid, DERNull.INSTANCE); in getSigAlgID()
/external/guava/src/com/google/common/primitives/
DUnsignedBytes.java166 return LexicographicalComparator.INSTANCE; in lexicographicalComparator()
170 INSTANCE; enumConstant
DSignedBytes.java163 return LexicographicalComparator.INSTANCE; in lexicographicalComparator()
167 INSTANCE; enumConstant
DBooleans.java273 return LexicographicalComparator.INSTANCE; in lexicographicalComparator()
277 INSTANCE; enumConstant
DDoubles.java310 return LexicographicalComparator.INSTANCE; in lexicographicalComparator()
314 INSTANCE; enumConstant
DLongs.java362 return LexicographicalComparator.INSTANCE; in lexicographicalComparator()
366 INSTANCE; enumConstant
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DDERNull.java11 public static final DERNull INSTANCE = new DERNull(); field in DERNull
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DDHBasicKeyPairGenerator.java32 DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.INSTANCE; in generateKeyPair()
DDHKeyGeneratorHelper.java11 static final DHKeyGeneratorHelper INSTANCE = new DHKeyGeneratorHelper(); field in DHKeyGeneratorHelper
/external/apache-http/src/org/apache/http/impl/
DDefaultHttpResponseFactory.java80 this(EnglishReasonPhraseCatalog.INSTANCE); in DefaultHttpResponseFactory()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
DAlgorithmIdentifier.java138 v.add(DERNull.INSTANCE); in toASN1Object()

123