Home
last modified time | relevance | path

Searched refs:candidate (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/text/
DAttributedCharacterIterator.java132 Attribute candidate = (Attribute) field.get(null); in readResolve() local
133 if (name.equals(candidate.name)) { in readResolve()
134 return candidate; in readResolve()
/libcore/luni/src/main/java/java/lang/
DRuntime.java381 String candidate = directory + filename; in loadLibrary() local
382 candidates.add(candidate); in loadLibrary()
384 if (IoUtils.canOpenReadOnly(candidate)) { in loadLibrary()
385 String error = doLoad(candidate, loader); in loadLibrary()
/libcore/luni/src/main/java/java/math/
DBigInteger.java169 int candidate; in BigInteger() local
171 candidate = random.nextInt() & ((1 << bitLength) - 1); in BigInteger()
172 candidate |= (1 << (bitLength - 1)); // Set top bit. in BigInteger()
174 candidate |= 1; // Any prime longer than 2 bits must have the bottom bit set. in BigInteger()
176 } while (!isSmallPrime(candidate)); in BigInteger()
178 prime.putULongInt(candidate, false); in BigInteger()
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationAccess.java200 com.android.dex.Annotation candidate = annotationIn.readAnnotation(); in getAnnotation() local
201 String candidateInternalName = dex.typeNames().get(candidate.getTypeIndex()); in getAnnotation()
203 return candidate; in getAnnotation()
541 com.android.dex.Annotation candidate = annotationIn.readAnnotation(); in getAnnotationReader() local
542 String candidateAnnotationName = dex.typeNames().get(candidate.getTypeIndex()); in getAnnotationReader()
544 annotation = candidate; in getAnnotationReader()