/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
test_predicate_list-expected.txt | 3 PASS //element[descendant::y[.='z']] 4 PASS //element[descendant::y[.='z']][1] 5 PASS //element[descendant::y[.='z']][2]
|
test_step-expected.txt | 3 PASS descendant-or-self::*
|
test_predicate_list.html | 35 result = dom2.evaluate("//element[descendant::y[.='z']]", dom2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); 36 checkSnapshot("//element[descendant::y[.='z']]", result, [dom2.getElementsByTagName("element")[1]]); 38 result = dom2.evaluate("//element[descendant::y[.='z']][1]", dom2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); 39 checkSnapshot("//element[descendant::y[.='z']][1]", result, [dom2.getElementsByTagName("element")[1]]); 41 result = dom2.evaluate("//element[descendant::y[.='z']][2]", dom2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); 42 checkSnapshot("//element[descendant::y[.='z']][2]", result, []);
|
test_step.html | 19 result = DOM.evaluate("descendant-or-self::GCHILD", CHILD1, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 20 checkSnapshot("descendant-or-self::*", result, GCHILDREN1);
|
test_parser-expected.txt | 15 PASS descendant::GCHILD[3] 16 PASS descendant::GCHILD[parent::CHILD1] 17 PASS descendant::GCHILD[position() > 1]
|
test_parser.html | 61 result = DOM.evaluate("descendant::GCHILD[3]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 62 checkSnapshot("descendant::GCHILD[3]", result, [GCHILD21]); 64 result = DOM.evaluate("descendant::GCHILD[parent::CHILD1]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 65 checkSnapshot("descendant::GCHILD[parent::CHILD1]", result, GCHILDREN1); 67 result = DOM.evaluate("descendant::GCHILD[position() > 1]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); 68 checkSnapshot("descendant::GCHILD[position() > 1]", result, [GCHILD12].concat(GCHILDREN2));
|
/external/webkit/LayoutTests/fast/xpath/py-dom-xpath/ |
nodetests-expected.txt | 1 PASS /descendant::item 2 PASS /descendant::a:item 3 PASS /descendant::b:*
|
paths-expected.txt | 7 PASS descendant::para 10 PASS descendant-or-self::para 13 PASS child::chapter/descendant::para 16 PASS /descendant::para 17 PASS /descendant::olist/child::item 24 PASS /descendant::figure[position()=42]
|
predicates-expected.txt | 8 PASS //group[@id="g1"]/descendant-or-self::item[1] 10 PASS //group/descendant::item[number(//choice/@index)*2]
|
axes-expected.txt | 10 PASS //*[@id="1"]/descendant-or-self::* 12 Test that the ancestor, descendant, following, preceding, and self axes partition the document
|
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
bmm.js | 11 * @param {!BookmarkTreeNode} descendant 12 * @return {boolean} Whether the parent contains the descendant. 14 function contains(parent, descendant) { 15 if (descendant.parentId == parent.id) 18 var parentTreeItem = bmm.treeLookup[descendant.parentId];
|
/external/webkit/LayoutTests/fast/xpath/ |
xpath-functional-test-expected.txt | 4 [ok].//blockquote/descendant::* 5 [ok].//blockquote/descendant-or-self::* 18 [ok].//*[descendant::blockquote] 19 [ok].//*[descendant-or-self::blockquote] 39 [ok].//blockquote/ancestor::* | .//blockquote/descendant::* 46 [ok].//blockquote/descendant::*[position() < 4] 51 [ok].//blockquote/descendant::*[4] 52 [ok].//blockquote/descendant-or-self::*[4] 79 [ok].//*[sum(ancestor::*/@title) < sum(descendant::*/@title)]
|
text-nodes-expected.txt | 4 descendant::*, [object Element]: "" 5 descendant::node(), [object Element]: "a b c" 6 descendant::node()[2], [object Element]: "b"
|
text-nodes.html | 30 test("descendant::*", elem); 31 test("descendant::node()", elem); 32 test("descendant::node()[2]", elem);
|
document-order-expected.txt | 18 PASS descendant::node() (context = attr1) 26 PASS descendant-or-self::node() (context = attr1)
|
position-expected.txt | 7 PASS ./descendant-or-self::node()/child::*[position() = 2] 8 PASS descendant-or-self::node()/child::*[position() = 2]
|
/external/webkit/Source/WebCore/rendering/ |
RenderQuote.cpp | 283 for (RenderObject* descendant = renderer; descendant; descendant = descendant->nextInPreOrder(renderer)) 284 if (descendant->isQuote()) { 285 toRenderQuote(descendant)->placeQuote(); 294 for (RenderObject* descendant = subtreeRoot; descendant; descendant = descendant->nextInPreOrder(subtreeRoot) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/ |
ButtonsWithTallTextViewInBetweenTest.java | 54 private int getTopWithinScrollView(View descendant) { 55 descendant.getDrawingRect(mTempRect); 56 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect); 60 private int getBottomWithinScrollView(View descendant) { 61 descendant.getDrawingRect(mTempRect); 62 mScrollView.offsetDescendantRectToMyCoords(descendant, mTempRect);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
Axis.java | 25 * <p>The ancestor, descendant, following, preceding and self axes partition a 58 * The descendant axis contains the descendants of the context node; 59 * a descendant is a child or a child of a child and so on; thus the 60 * descendant axis never contains attribute or namespace nodes. 62 public static final int DESCENDANT = 4; 65 * The descendant-or-self axis contains the context node and the 170 false, // descendant 171 false, // descendant-or-self 189 "descendant", // 4 190 "descendant-or-self", // [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragLayer.java | 173 * Determine the rect of the descendant in this DragLayer's coordinates 175 * @param descendant The descendant whose coordinates we want to find. 177 * @return The factor by which this descendant is scaled relative to this DragLayer. 179 public float getDescendantRectRelativeToSelf(View descendant, Rect r) { 182 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY); 184 mTmpXY[0] + descendant.getWidth(), mTmpXY[1] + descendant.getHeight()); 195 * Given a coordinate relative to the descendant, find the coordinate in this DragLayer's 198 * @param descendant The descendant to which the passed coordinate is relative [all...] |
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_elementgetelementsbytagname.js | 79 of all descendant Elements with the given tag name. 82 Create a NodeList of all the descendant elements 85 "0" since there are not any descendant elements
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_elementgetelementsbytagname.js | 79 of all descendant Elements with the given tag name. 82 Create a NodeList of all the descendant elements 85 "0" since there are not any descendant elements
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
elementgetelementsbytagname.java | 32 * of all descendant Elements with the given tag name. 34 * Create a NodeList of all the descendant elements 37 * "0" since there are not any descendant elements
|
hc_elementgetelementsbytagname.java | 32 * of all descendant Elements with the given tag name. 34 * Create a NodeList of all the descendant elements 37 * "0" since there are not any descendant elements
|
/sdk/layoutopt/libs/uix/src/resources/rules/ |
NestedScrollingWidgets.rule | 7 // - The node has a descendant who is also a scrolling widget
|