HomeSort by relevance Sort by last modified time
    Searched full:child (Results 426 - 450 of 1967) sorted by null

<<11121314151617181920>>

  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataindexsizeerrdeletedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
73 CharacterData child; local
77 child = (CharacterData) nameNode.getFirstChild();
82 child.deleteData(40, 3);
characterdataindexsizeerrdeletedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
77 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 child.deleteData(-5, 3);
characterdataindexsizeerrinsertdataoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 child.insertData(40, "ABC");
characterdataindexsizeerrinsertdataoffsetnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 child.insertData(-5, "ABC");
characterdataindexsizeerrreplacedatacountnegative.java 35 * Retrieve the character data of the last child of the
77 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 child.replaceData(10, -3, "ABC");
characterdataindexsizeerrreplacedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
73 CharacterData child; local
77 child = (CharacterData) nameNode.getFirstChild();
82 child.replaceData(40, 3, "ABC");
characterdataindexsizeerrreplacedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
78 CharacterData child; local
82 child = (CharacterData) nameNode.getFirstChild();
87 child.replaceData(-5, 3, "ABC");
characterdataindexsizeerrsubstringcountnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 badSubstring = child.substringData(10, -3);
characterdataindexsizeerrsubstringnegativeoffset.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 badString = child.substringData(-5, 3);
characterdataindexsizeerrsubstringoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
77 child = (CharacterData) nameNode.getFirstChild();
82 badString = child.substringData(40, 3);
hc_characterdataindexsizeerrdeletedatacountnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 childSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrdeletedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 child.deleteData(40, 3);
hc_characterdataindexsizeerrdeletedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 child.deleteData(-5, 3);
hc_characterdataindexsizeerrinsertdataoffsetgreater.java 35 * Retrieve the character data of the last child of the
71 CharacterData child; local
75 child = (CharacterData) nameNode.getFirstChild();
80 child.deleteData(40, 3);
hc_characterdataindexsizeerrinsertdataoffsetnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
79 child = (CharacterData) nameNode.getFirstChild();
84 child.replaceData(-5, 3, "ABC");
hc_characterdataindexsizeerrreplacedatacountnegative.java 35 * Retrieve the character data of the last child of the
76 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 badString = child.substringData(10, -3);
hc_characterdataindexsizeerrreplacedataoffsetgreater.java 35 * Retrieve the character data of the last child of the
72 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 child.deleteData(40, 3);
hc_characterdataindexsizeerrreplacedataoffsetnegative.java 35 * Retrieve the character data of the last child of the
77 CharacterData child; local
81 child = (CharacterData) nameNode.getFirstChild();
86 child.replaceData(-5, 3, "ABC");
hc_characterdataindexsizeerrsubstringcountnegative.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 badSubstring = child.substringData(10, -3);
hc_characterdataindexsizeerrsubstringnegativeoffset.java 35 * Retrieve the character data of the last child of the
75 CharacterData child; local
80 child = (CharacterData) nameNode.getFirstChild();
85 badString = child.substringData(-5, 3);
hc_characterdataindexsizeerrsubstringoffsetgreater.java 35 * Retrieve the character data of the last child of the
71 CharacterData child; local
76 child = (CharacterData) nameNode.getFirstChild();
81 badString = child.substringData(40, 3);
hc_nodeinsertbefore.java 71 Node child; local
94 child = (Node) childList.item(indexN10091);
95 nodeType = (int) child.getNodeType();
98 childName = child.getNodeName();
hc_nodeinsertbeforerefchildnonexistent.java 32 * NOT_FOUND_ERR DOMException if the reference child is
33 * not a child of this node.
36 * new node before a reference node that is not a child
37 * of this node. An attempt to insert before a non child
nodeinsertbefore.java 35 * child of the second employee and check the "newChild"
69 Node child; local
119 child = (Node) childList.item(indexN100DC);
120 childName = child.getNodeName();
nodeinsertbeforerefchildnonexistent.java 32 * NOT_FOUND_ERR DOMException if the reference child is
33 * not a child of this node.
36 * new node before a reference node that is not a child
37 * of this node. An attempt to insert before a non child

Completed in 85 milliseconds

<<11121314151617181920>>