Searched refs:child (Results 151 - 175 of 175) sorted by relevance

1234567

/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java1214 for (ElemTemplateElement child = included.getFirstChildElem();
1215 child != null; child = child.getNextSiblingElem())
1217 child.runtimeInit(this);
1829 // Do the transformation of the child elements.
1916 // Do the transformation of the child elements.
1953 * @param child The source context node.
1959 ElemTemplate template, int child)
1963 DTM dtm = m_xcontext.getDTM(child);
1958 applyTemplateToNode(ElemTemplateElement xslInstruction, ElemTemplate template, int child) argument
2499 pushPairCurrentMatched(ElemTemplateElement template, int child) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DNodeSet.java356 * The number of nodes in the list. The range of valid child node indices is
584 Node child = (Node) elementAt(i);
586 if (child == node)
593 if (!DOM2Helper.isNodeAfter(node, child))
650 Node child = (Node) elementAt(i);
652 if (child == node)
659 if (!DOM2Helper.isNodeAfter(node, child))
H A DNodeSetDTM.java512 * The number of nodes in the list. The range of valid child node indices is
744 // int child = elementAt(i);
746 // if (child == node)
753 // if (!support.getDOMHelper().isNodeAfter(node, child))
810 int child = elementAt(i);
812 if (child == node)
820 if (!dtm.isNodeAfter(node, child))
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaRenamer.java55 * and used as the initial state for child blocks.<p>
365 for (SsaBasicBlock child : block.getDomChildren()) {
366 if (child != block) {
367 // Don't bother duplicating the array for the first child.
371 startsForBlocks[child.getIndex()] = childStart;
376 // currentMapping is owned by a child now.
H A DSsaBasicBlock.java176 * Adds a basic block as a dom child for this block. Used when constructing
179 * @param child {@code non-null;} new dom child
181 public void addDomChild(SsaBasicBlock child) { argument
182 domChildren.add(child);
H A DSsaMethod.java732 // We push the parent first, then the child on the stack.
783 SsaBasicBlock child = curDomChildren.get(i);
784 stack.add(child);
/dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java736 int child = vec.elementAt(i);
738 if (child == node)
746 if (!dtm.isNodeAfter(node, child))
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DElemExsltFunction.java91 Node child = children.item(i);
H A DStylesheetRoot.java363 for (ElemTemplateElement child = templ.getFirstChildElem();
364 child != null; child = child.getNextSiblingElem())
366 composeTemplates(child);
H A DElemNumber.java575 * Add a child to the child list.
577 * @param newChild Child to add to child list
579 * @return Child just added to child list
871 // dive down to the lowest right-hand (last) child of that sibling.
890 // dive down to the lowest right child.
891 int child = next;
893 while (DTM.NULL != child)
895 child = dtm.getLastChild(next);
897 if (DTM.NULL != child)
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c1354 /* This routine adds the given time to the parent and child methods.
1355 * This is called when the child routine exits, after the child has
1357 * duration of the child routine, including time spent in called routines.
1359 void addInclusiveTime(MethodEntry *parent, MethodEntry *child, argument
1366 if (strcmp(child->className, debugClassName) == 0)
1370 int childIsRecursive = (child->recursiveEntries > 0);
1373 if (child->recursiveEntries == 0) {
1374 child->elapsedInclusive += elapsedTime;
1375 } else if (child
1693 checkThreshold(MethodEntry* parent, MethodEntry* child) argument
1711 TimedMethod* child; local
1725 TimedMethod* child; local
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java753 int child = (k << 1) + 1;
754 ScheduledFutureTask c = queue[child];
755 int right = child + 1;
757 c = queue[child = right];
762 k = child;
/dalvik/libcore/luni/src/main/java/java/util/
H A DProperties.java773 Node child = node.getFirstChild();
774 while (child != null) {
775 result = result + getTextContent(child);
776 child = child.getNextSibling();
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DXMLParser.java231 Preferences child = prefs.node(names[i]);
234 exportEntries(child, out);
235 exportSubTree(child, out);
430 Element child = (Element) children.item(i);
431 String name = child.getAttribute("name"); //$NON-NLS-1$
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DThreadGroupTest.java568 ThreadGroup child = subgroups.elementAt(i);
569 assertEquals("Destroyed child can't have children", 0, child
573 child.destroy();
578 assertTrue("Destroyed child can't be destroyed again", passed);
584 ThreadGroup child = new ThreadGroup(testRoot, "daemon child");
586 // If we destroy the last daemon's child, the daemon should get destroyed
588 child.destroy();
592 child
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClassLoader.java52 * are grouped into a tree where child class loaders delegate all requests to
54 * request, the child class loader itself tries to handle it.
630 * @param child
631 * A child candidate
635 final boolean isAncestorOf(ClassLoader child) { argument
636 for (ClassLoader current = child; current != null;
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DPreferencesTest.java247 // assertFalse(prefs.nodeExists("mock/child/grandson"));
256 assertTrue(prefs.nodeExists("mock/child/grandson"));
1018 Preferences child = pref.node("mock");
1019 assertEquals("mock", child.name());
1076 MockAbstractPreferences child = (MockAbstractPreferences) ((MockAbstractPreferences) pref)
1077 .publicChildSpi("child");
1078 assertSame(child, pref.node("child"));
1084 Preferences grandchild = pref.node("child/grandchild");
1085 assertSame(grandchild, child
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java63 /** First child values, one array element for each node. */
516 * Get the first child for the given node identity.
520 * @return The first child identity, or DTM.NULL.
727 ps.println("First child: DTM.NULL");
729 ps.println("First child: NOTPROCESSED");
731 ps.println("First child: " + firstChild);
868 * Given a node handle, test if it has child nodes.
877 * @return int true if the given node has child nodes.
962 * Given a node handle, get the handle of the node's first child.
967 * @return int DTM node-number of first child, o
[all...]
H A DDTMDefaultBaseIterators.java419 * of a basic child iterator, but a specialised iterator is used
509 * filter on top of a basic child iterator, but a specialised
2009 int child = _firstch(parent);
2014 int type = _type(child);
2019 while ((pos < _pos) && (child = _nextsib(child)) != END);
2021 if (node == child)
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DCertPathValidatorUtilities.java730 PKIXPolicyNode child = new PKIXPolicyNode(new ArrayList(),
737 node.addChild(child);
738 policyNodes[index].add(child);
/dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
H A DXsltXPathConformanceTestSuite.java283 for (String child : directory.list()) {
284 if (child.equalsIgnoreCase(name)) {
285 return new File(directory, child);
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DTestUtils.java256 PolicyNode child = new PolicyNode() {
258 // child
287 s.add(child);
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogManagerTest.java227 Logger child = new MockLogger("testAddGetLogger_Hierachy.foo.child", null);
228 Logger fakeChild = new MockLogger("testAddGetLogger_Hierachy.foo2.child", null);
229 Logger grandson = new MockLogger("testAddGetLogger_Hierachy.foo.child.grandson", null);
230 Logger otherChild = new MockLogger("testAddGetLogger_Hierachy.foo.child", null);
232 assertNull(child.getParent());
238 assertTrue(mockManager.addLogger(child));
239 assertNull(child.getParent());
245 assertSame(child, grandson.getParent());
248 assertSame(foo, child
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java215 * of a basic child iterator, but a specialised iterator is used
279 // %OPT% If the nodeType is element (matching child::*), we only
280 // need to compare the expType with DTM.NTYPES. A child node of
2232 // Pop the context for the last child (the one pushed by startElement)
2329 * @param canHaveFirstChild true if the node can have a first child, false
2366 // Special handling by type: Declare namespaces, attach first child
2976 int child = _firstch2(ROOTNODE);
2977 if (child == DTM.NULL) return EMPTY_STR;
2979 // optimization: only create StringBuffer if > 1 child
2980 if ((_exptype2(child)
[all...]
/dalvik/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/ ...

Completed in 5110 milliseconds

1234567