Home
last modified time | relevance | path

Searched defs:elements (Results 1 – 25 of 107) sorted by relevance

12345

/libcore/ojluni/src/main/java/sun/security/util/
DAlgorithmDecomposer.java44 Set<String> elements = new HashSet<>(); in decomposeImpl() local
87 Set<String> elements = decomposeImpl(algorithm); in decompose() local
156 private static void hasLoop(Set<String> elements, String find, String replace) { in hasLoop()
174 Set<String> elements = decomposeImpl(algorithm); in decomposeOneHash() local
DAbstractAlgorithmConstraints.java83 Set<String> elements = null; in checkAlgorithm() local
/libcore/dalvik/src/main/java/dalvik/system/
DDexFile.java99 DexFile(File file, ClassLoader loader, DexPathList.Element[] elements) in DexFile()
126 DexFile(String fileName, ClassLoader loader, DexPathList.Element[] elements) in DexFile()
134 DexFile(ByteBuffer[] bufs, ClassLoader loader, DexPathList.Element[] elements) in DexFile()
157 DexPathList.Element[] elements) throws IOException { in DexFile()
222 int flags, ClassLoader loader, DexPathList.Element[] elements) throws IOException { in loadDex()
404 ClassLoader loader, DexPathList.Element[] elements) throws IOException { in openDexFile()
416 DexPathList.Element[] elements) throws IOException { in openInMemoryDexFiles()
432 int[] starts, int[] ends, ClassLoader loader, DexPathList.Element[] elements); in openInMemoryDexFilesNative()
478 ClassLoader loader, DexPathList.Element[] elements); in openDexFileNative()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUtil.java99 static <E> Set<E> newSet(E... elements) { in newSet()
112 static <E> Set<E> newSet(Set<E> other, E... elements) { in newSet()
/libcore/jsr166-tests/src/test/java/jsr166/
DCopyOnWriteArraySetTest.java44 static CopyOnWriteArraySet populatedSet(Integer[] elements) { in populatedSet()
229 Integer[] elements = new Integer[SIZE]; in testIterator() local
316 Integer[] elements = new Integer[SIZE]; in testToArray() local
344 Integer[] elements = new Integer[SIZE]; in testToArray2() local
DLinkedBlockingQueueTest.java105 Collection<Integer> elements = Arrays.asList(new Integer[SIZE]); in testConstructor4() local
120 Collection<Integer> elements = Arrays.asList(ints); in testConstructor5() local
214 Collection<Integer> elements = Arrays.asList(ints); in testAddAll3() local
229 Collection<Integer> elements = Arrays.asList(ints); in testAddAll4() local
DCopyOnWriteArrayListTest.java47 static CopyOnWriteArrayList<Integer> populatedArray(Integer[] elements) { in populatedArray()
268 Integer[] elements = new Integer[SIZE]; in testIterator() local
436 Integer[] elements = new Integer[SIZE]; in testToArray() local
464 Integer[] elements = new Integer[SIZE]; in testToArray2() local
DArrayBlockingQueueTest.java102 Collection<Integer> elements = Arrays.asList(new Integer[SIZE]); in testConstructor4() local
116 Collection<Integer> elements = Arrays.asList(ints); in testConstructor5() local
130 Collection<Integer> elements = Arrays.asList(ints); in testConstructor6() local
144 Collection<Integer> elements = Arrays.asList(ints); in testConstructor7() local
/libcore/luni/src/test/java/libcore/java/util/
DSpliteratorsTest.java216 int[] elements = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in test_spliterator_int() local
253 int[] elements = { 123123, 131321312, 1, 2, 3, 4, 32323232, 45454}; in test_spliterator_intOffsetBasic() local
266 long[] elements = { 123123, 131321312, 1, 2, 3, 4, 32323232, 45454}; in test_spliterator_longOffsetBasic() local
279 double[] elements = { 123123, 131321312, 1, 2, 3, 4, 32323232, 45454}; in test_spliterator_doubleOffsetBasic() local
292 long[] elements = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in test_spliterator_long() local
329 double[] elements = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; in test_spliterator_double() local
366 final int[] elements = { 1, 2, 3, 4, 5, 6}; in test_primitive_spliterators_NPE() local
587 PrimitiveIterator.OfInt elements = new CannedIntPrimitiveIterator(data); in test_spliterator_intPrimitiveIterator() local
624 PrimitiveIterator.OfInt elements = new CannedIntPrimitiveIterator(data); in test_spliterator_intPrimitiveIterator_unsized() local
658 PrimitiveIterator.OfLong elements = new CannedLongPrimitiveIterator(data); in test_spliterator_longPrimitiveIterator() local
[all …]
/libcore/ojluni/src/test/java/util/concurrent/tck/
DCopyOnWriteArraySetTest.java66 static CopyOnWriteArraySet populatedSet(Integer[] elements) { in populatedSet()
251 Integer[] elements = new Integer[SIZE]; in testIterator() local
338 Integer[] elements = new Integer[SIZE]; in testToArray() local
366 Integer[] elements = new Integer[SIZE]; in testToArray2() local
DLinkedBlockingQueueTest.java135 Collection<Integer> elements = Arrays.asList(new Integer[SIZE]); in testConstructor4() local
150 Collection<Integer> elements = Arrays.asList(ints); in testConstructor5() local
244 Collection<Integer> elements = Arrays.asList(ints); in testAddAll3() local
259 Collection<Integer> elements = Arrays.asList(ints); in testAddAll4() local
DCopyOnWriteArrayListTest.java85 static CopyOnWriteArrayList<Integer> populatedArray(Integer[] elements) { in populatedArray()
306 Integer[] elements = new Integer[SIZE]; in testIterator() local
474 Integer[] elements = new Integer[SIZE]; in testToArray() local
502 Integer[] elements = new Integer[SIZE]; in testToArray2() local
/libcore/ojluni/src/main/java/java/security/
DPermissions.java47 public Enumeration<Permission> elements() { return null; } in elements() method in Permissions
DPermissionCollection.java69 public abstract Enumeration<Permission> elements(); in elements() method in PermissionCollection
/libcore/luni/src/test/java/libcore/java/security/
DPermissionCollectionTest.java44 public Enumeration<Permission> elements() { in elements() method in PermissionCollectionTest.TestPermissionCollection
DProtectionDomainTest.java119 public Enumeration<Permission> elements() { in elements() method in ProtectionDomainTest.TestPermissionCollection
/libcore/ojluni/src/main/java/java/util/
DDictionary.java96 public abstract Enumeration<V> elements(); in elements() method in Dictionary
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationFactory.java93 AnnotationMember[] elements) { in createAnnotation()
100 private AnnotationMember[] elements; field in AnnotationFactory
/libcore/ojluni/src/main/java/javax/crypto/
DCryptoPermissions.java55 public Enumeration elements() { return null; } in elements() method in CryptoPermissions
/libcore/support/src/test/java/tests/support/
DSupport_Exec.java66 public static String createPath(String... elements) { in createPath()
/libcore/ojluni/src/main/java/sun/security/x509/
DCertificateIssuerExtension.java198 AttributeNameEnumeration elements = new AttributeNameEnumeration(); in getElements() local
DCertificateX509Key.java151 AttributeNameEnumeration elements = new AttributeNameEnumeration(); in getElements() local
DCertificateAlgorithmId.java159 AttributeNameEnumeration elements = new AttributeNameEnumeration(); in getElements() local
DSubjectKeyIdentifierExtension.java186 AttributeNameEnumeration elements = new AttributeNameEnumeration(); in getElements() local
DCertificateSubjectName.java168 AttributeNameEnumeration elements = new AttributeNameEnumeration(); in getElements() local

12345