/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
test_step-expected.txt | 1 PASS ancestor::* 2 PASS ancestor-or-self::*
|
test_step.html | 13 result = DOM.evaluate("ancestor::*", CHILD1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 14 checkSnapshot("ancestor::*", result, [ROOT]); 16 result = DOM.evaluate("ancestor-or-self::*", CHILD1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 17 checkSnapshot("ancestor-or-self::*", result, [ROOT, CHILD1]);
|
/external/webkit/Source/WebCore/svg/ |
SVGFontFaceFormatElement.cpp | 49 ContainerNode* ancestor = parentNode()->parentNode(); 50 if (!ancestor || !ancestor->hasTagName(font_face_srcTag)) 53 ancestor = ancestor->parentNode(); 54 if (ancestor && ancestor->hasTagName(font_faceTag)) 55 static_cast<SVGFontFaceElement*>(ancestor)->rebuildFontFace();
|
/external/webkit/LayoutTests/fast/xpath/ |
union-context-node-expected.txt | 12 Query "ancestor::xhtml:span" from span#B 17 Query ".|ancestor::xhtml:span" from span#B 22 Query "ancestor::xhtml:span|." from span#B 27 Query "ancestor::xhtml:*[local-name()='span']" from span#B 32 Query ".|ancestor::xhtml:*[local-name()='span']" from span#B 37 Query "ancestor::xhtml:*[local-name()='span']|." from span#B 42 Query "(ancestor::xhtml:*[local-name()='span'])|." from span#B
|
document-order-expected.txt | 1 PASS ancestor::* (context = attr1) 2 PASS ancestor::* (context = GCHILD11) 3 PASS ancestor::node() (context = attr1) 4 PASS ancestor::node() (context = GCHILD11) 27 PASS ancestor-or-self::node() (context = attr1)
|
text-nodes-expected.txt | 7 ancestor-or-self::node(), b: "null null null b" 8 ancestor-or-self::*, b: "null null" 9 ancestor-or-self::node(), a: "null null null a" 10 ancestor-or-self::*, a: "null null"
|
union-context-node.xhtml | 41 query(document.getElementById("B"), "ancestor::xhtml:span", "span#A"); 42 query(document.getElementById("B"), ".|ancestor::xhtml:span", "span#A span#B"); 43 query(document.getElementById("B"), "ancestor::xhtml:span|.", "span#A span#B"); 45 query(document.getElementById("B"), "ancestor::xhtml:*[local-name()='span']", "span#A"); 46 query(document.getElementById("B"), ".|ancestor::xhtml:*[local-name()='span']", "span#A span#B"); 47 query(document.getElementById("B"), "ancestor::xhtml:*[local-name()='span']|.", "span#A span#B"); 48 query(document.getElementById("B"), "(ancestor::xhtml:*[local-name()='span'])|.", "span#A span#B");
|
xpath-functional-test-expected.txt | 6 [ok].//blockquote/ancestor::* 7 [ok].//blockquote/ancestor-or-self::* 20 [ok].//*[ancestor::blockquote] 21 [ok].//*[ancestor-or-self::blockquote] 39 [ok].//blockquote/ancestor::* | .//blockquote/descendant::* 53 [ok].//blockquote/ancestor::*[2] 54 [ok].//blockquote/ancestor-or-self::*[2] 79 [ok].//*[sum(ancestor::*/@title) < sum(descendant::*/@title)]
|
text-nodes.html | 33 test("ancestor-or-self::node()", bText); 34 test("ancestor-or-self::*", bText); 35 test("ancestor-or-self::node()", aText); 36 test("ancestor-or-self::*", aText);
|
position-expected.txt | 14 PASS ancestor::node()[2] 15 PASS ancestor-or-self::node()[2] 16 PASS ancestor-or-self::node()[3]
|
document-order.html | 36 result = doc.evaluate("ancestor::*", attr1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 37 checkSnapshot("ancestor::* (context = attr1)", 41 result = doc.evaluate("ancestor::*", GCHILD11, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 42 checkSnapshot("ancestor::* (context = GCHILD11)", 46 result = doc.evaluate("ancestor::node()", attr1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 47 checkSnapshot("ancestor::node() (context = attr1)", 51 result = doc.evaluate("ancestor::node()", GCHILD11, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 52 checkSnapshot("ancestor::node() (context = GCHILD11)", 163 result = doc.evaluate("ancestor-or-self::node()", attr1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 164 checkSnapshot("ancestor-or-self::node() (context = attr1)", [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorExsltFuncResult.java | 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); local 53 while (ancestor != null && !(ancestor instanceof ElemExsltFunction)) 55 if (ancestor instanceof ElemVariable 56 || ancestor instanceof ElemParam 57 || ancestor instanceof ElemExsltFuncResult) 62 ancestor = ancestor.getParentElem(); 64 if (ancestor == null)
|
/external/skia/src/core/ |
SkPictureStateTree.cpp | 120 // Trace back up to a common ancestor, restoring to get our current state to match that 121 // of the ancestor, and saving a list of nodes whose state we need to apply to get to 122 // the target (we can restore up to the ancestor immediately, but we'll need to return 126 Node* ancestor = targetNode; local 127 while (tmp != ancestor) { 129 uint16_t targetLevel = ancestor->fLevel; 136 fNodes.push(ancestor); 137 ancestor = ancestor->fParent; 141 if (ancestor->fFlags & Node::kSave_Flag) [all...] |
/external/linux-tools-perf/Documentation/ |
manpage-suppress-sp.xsl | 15 <xsl:if test="not(ancestor::authorblurb) and 16 not(ancestor::personblurb)">
|
/external/webkit/LayoutTests/fast/xpath/py-dom-xpath/ |
predicates-expected.txt | 3 PASS //group[@id="g2"]/ancestor::*[1] 9 PASS //group[@id="g2"]/ancestor-or-self::*[1]
|
axes-expected.txt | 3 PASS //*[@id="2.2"]/ancestor::* 11 PASS //*[@id="2.2"]/ancestor-or-self::* 12 Test that the ancestor, descendant, following, preceding, and self axes partition the document
|
/external/guava/guava-tests/test/com/google/common/collect/ |
FauxveridesTest.java | 108 private void doHasAllFauxveridesTest(Class<?> descendant, Class<?> ancestor) { 110 getAllRequiredToFauxveride(descendant, ancestor); 111 Set<MethodSignature> found = getAllFauxveridden(descendant, ancestor); 114 assertEquals("Must hide public static methods from ancestor classes", 119 Class<?> descendant, Class<?> ancestor) { 120 return getPublicStaticMethodsBetween(ancestor, Object.class); 124 Class<?> descendant, Class<?> ancestor) { 125 return getPublicStaticMethodsBetween(descendant, ancestor); 129 Class<?> descendant, Class<?> ancestor) { 131 for (Class<?> clazz : getClassesBetween(descendant, ancestor)) { [all...] |
/sdk/eclipse/sites/external/web/ |
site.xsl | 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/> 29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/> 41 <xsl:when test="ancestor::feature//@label"> 42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a> 45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>) 49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a [all...] |
/sdk/eclipse/sites/internal/web/ |
site.xsl | 28 <xsl:sort select="ancestor::feature//@version" order="ascending"/> 29 <xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/> 41 <xsl:when test="ancestor::feature//@label"> 42 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a> 45 (<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>) 49 <a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
BottomUpProfileDataGridTree.js | 30 // because a root node can represent itself AND an ancestor. 99 var ancestor = nodeInfo.ancestor; 101 var child = this.findChild(ancestor); 113 // If not, add it as a true ancestor. 114 // In heavy mode, we take our visual identity from ancestor node... 115 var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree); 117 if (ancestor !== focusNode) { 127 var parent = ancestor.parent; 129 nodeInfo.ancestor = parent [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
Dominators.java | 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()]; 119 if (ancestorbbInfo.ancestor != null) { 128 SsaBasicBlock vAncestor = vbbInfo.ancestor; 131 // Make sure we process our ancestor before ourselves. 132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) { 138 // Update based on ancestor info. 139 if (vabbInfo.ancestor == null) { 148 vbbInfo.ancestor = vabbInfo.ancestor; 156 if (bbInfo.ancestor == null) 278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
Axis.java | 25 * <p>The ancestor, descendant, following, preceding and self axes partition a 34 * The ancestor axis contains the ancestors of the context node; 36 * node and the parent's parent and so on; thus, the ancestor axis will 39 public static final int ANCESTOR = 0; 42 * the ancestor-or-self axis contains the context node and the ancestors of 43 * the context node; thus, the ancestor axis will always include the 126 * A non-xpath axis, traversing the the preceding and the ancestor nodes, 166 true, // ancestor 167 true, // ancestor-or-self 185 "ancestor", // [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
context_menu_button.js | 14 * Helper function for ContextMenuButton to find the first ancestor of the 28 * ancestor that has a {@code contextMenu} property. 39 * Override to return the contextMenu for the ancestor.
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
Dominators.java | 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()]; 119 if (ancestorbbInfo.ancestor != null) { 128 SsaBasicBlock vAncestor = vbbInfo.ancestor; 131 // Make sure we process our ancestor before ourselves. 132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) { 138 // Update based on ancestor info. 139 if (vabbInfo.ancestor == null) { 148 vbbInfo.ancestor = vabbInfo.ancestor; 156 if (bbInfo.ancestor == null) 278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo [all...] |
/external/webkit/Source/WebCore/editing/ |
BreakBlockquoteCommand.cpp | 138 // On exiting this loop, clonedAncestor is the lowest ancestor 169 // Split the tree up the ancestor chain until the topBlockquote 170 // Throughout this loop, clonedParent is the clone of ancestor's parent. 171 // This is so we can clone ancestor's siblings and place the clones 172 // into the clone corresponding to the ancestor's parent. 173 Element* ancestor; local 175 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement(); 176 ancestor && ancestor != topBlockquote; 177 ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement()) [all...] |