/frameworks/base/core/java/android/widget/ |
ViewAnimator.java | 97 * Sets which child view will be displayed. 99 * @param whichChild the index of the child view to display 119 * Returns the index of the currently displayed child view. 126 * Manually shows the next child. 134 * Manually shows the previous child. 142 * Shows only the specified child. The other displays Views exit the screen, 144 * the specified child enters the screen, optionally with the 147 * @param childIndex The index of the child to be shown. 154 final View child = getChildAt(i); local 157 child.startAnimation(mInAnimation) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
cdatasectiongetdata.java | 32 * second child of the second employee and examine its 71 Node child; local 77 child = nameList.item(1); 78 lastChild = child.getLastChild();
|
characterdataindexsizeerrdeletedatacountnegative.java | 35 * Retrieve the character data of the last child of the 76 CharacterData child; local 80 child = (CharacterData) nameNode.getFirstChild(); 85 child.deleteData(10, -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);
|
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");
|
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);
|
elementgetelementsbytagnamespecialvalue.java | 68 Node child; local 85 child = (Node) lastempList.item(indexN1006A); 86 childName = child.getNodeName();
|
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_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_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_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_elementgetelementsbytagnamespecialvalue.java | 67 Node child; local 84 child = (Node) lastempList.item(indexN10067); 85 childName = child.getNodeName();
|
hc_namednodemapreturnfirstitem.java | 69 Node child; local 87 child = (Node) attributes.item(indexN10070); 88 nodeName = child.getNodeName();
|
hc_namednodemapreturnlastitem.java | 71 Node child; local 89 child = (Node) attributes.item(indexN10070); 90 nodeName = child.getNodeName();
|
hc_nodeinsertbeforerefchildnull.java | 74 Node child; local 83 child = employeeNode.getLastChild(); 84 childName = child.getNodeName();
|
hc_nodelistindexequalzero.java | 32 * employee and access its first child by using an index 68 Node child; local 76 child = employeeList.item(0); 77 childName = child.getNodeName();
|
hc_nodelistreturnlastitem.java | 32 * employee and access its last child by invoking the 65 Node child; local 74 child = employeeList.item(((int) /*int */index)); 75 childName = child.getNodeName();
|
hc_nodereplacechild.java | 70 Node child; local 80 child = childList.item(0); 81 childName = child.getNodeName();
|
nodeinsertbeforerefchildnull.java | 74 Node child; local 83 child = employeeNode.getLastChild(); 84 childName = child.getNodeName();
|