Searched defs:Element (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
H A DElement.java16 * The <code>Element</code> interface represents an element in an HTML or XML
18 * <code>Element</code> interface inherits from <code>Node</code>, the
21 * methods on the <code>Element</code> interface to retrieve either an
32 public interface Element extends Node { interface in inherits:Node
127 * attribute of another <code>Element</code> object. The DOM user must
159 * @return A list of matching <code>Element</code> nodes.
297 * attribute of another <code>Element</code> object. The DOM user must
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java61 private final Element[] dexElements;
64 private final Element[] nativeLibraryPathElements;
214 private static Element[] makePathElements(List<File> files, File optimizedDirectory,
216 List<Element> elements = new ArrayList<>();
235 elements.add(new Element(file, true, null, null));
265 elements.add(new Element(dir, false, zip, dex));
269 return elements.toArray(new Element[elements.size()]);
334 for (Element element : dexElements) {
359 for (Element element : dexElements) {
377 for (Element elemen
413 /*package*/ static class Element { class in class:DexPathList
422 public Element(File dir, boolean isDirectory, File zip, DexFile dexFile) { method in class:DexPathList.Element
[all...]
/libcore/luni/src/test/java/libcore/java/util/
H A DEnumSetTest.java41 assertTrue(Element.values().length > 64);
51 EnumSet<Element> set = EnumSet.of(Element.H, Element.TB, Element.DY, Element.UUO);
52 new SerializationTester<EnumSet<Element>>(set, s).test();
101 enum Element { enum in class:EnumSetTest
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DArraysTest.java1589 Element[] array = new Element[11];
1590 array[0] = new Element(122);
1591 array[1] = new Element(146);
1592 array[2] = new Element(178);
1593 array[3] = new Element(208);
1594 array[4] = new Element(117);
1595 array[5] = new Element(146);
1596 array[6] = new Element(173);
1597 array[7] = new Element(20
1618 public static class Element { class in class:ArraysTest
1625 public Element(int value) { method in class:ArraysTest.Element
[all...]

Completed in 422 milliseconds