Searched defs:child (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/util/prefs/
H A DNodeChangeEvent.java27 * This is the event class to indicate that one child of the preference node has
44 private final Preferences child; field in class:NodeChangeEvent
53 * the child {@code Preferences} instance that was added or deleted.
58 child = c;
71 * Gets the child {@code Preferences} node that was added or removed.
73 * @return the added or removed child {@code Preferences} node.
76 return child;
H A DAbstractPreferences.java107 /** cached child nodes */
166 * Returns an array of all cached child nodes.
168 * @return the array of cached child nodes.
175 * Returns the child node with the specified name or {@code null} if it
182 * the name of the desired child node.
183 * @return the child node with the given name or {@code null} if it doesn't
232 * Returns the names of all of the child nodes of this node or an empty
244 * Returns the child preference node with the given name, creating it
256 * the name of the child preference to be returned.
257 * @return the child preferenc
794 notifyChildAdded(Preferences child) argument
802 notifyChildRemoved(Preferences child) argument
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DInnerNodeImpl.java104 * Inserts {@code newChild} at {@code index}. If it is already child of
204 Node child = getFirstChild();
205 if (child == null) {
209 Node next = child.getNextSibling();
211 return hasTextContent(child) ? child.getTextContent() : "";
220 Node child = getFirstChild();
221 while (child != null) {
222 if (hasTextContent(child)) {
223 ((NodeImpl) child)
229 hasTextContent(Node child) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
H A DXMLFilterImplTest.java55 private XMLFilterImpl child = new XMLFilterImpl(parent); field in class:XMLFilterImplTest
72 child.setContentHandler(handler);
73 child.setDTDHandler(handler);
74 child.setErrorHandler(handler);
91 child.setParent(null);
92 assertEquals(null, child.getParent());
94 child.setParent(parent);
95 assertEquals(parent, child.getParent());
101 child.setFeature("foo", true);
102 assertEquals(true, child
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 279 milliseconds