/external/tinyxml/docs/ |
classTiXmlHandle.html | 27 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the first child node. <br></td></tr> 31 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the first child node with the given name. <br></td></tr> 35 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the first child element. <br></td></tr> 39 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the first child element with the given name. <br></td></tr> 40 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classTiXmlHandle.html">TiXmlHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlHandle.html#a7">Child</a> (const char *value, int index) const </td></tr> 42 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the "index" child with the given name. <a href="#a7"></a><br></td></tr> 43 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classTiXmlHandle.html">TiXmlHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlHandle.html#a8">Child</a> (int index) const </td></tr> 45 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the "index" child. <a href="#a8"></a><br></td></tr> 48 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the "index" child element with the given name. <a href="#a9"></a><br></td></tr> 51 <tr><td class="mdescLeft"> </td><td class="mdescRight">Return a handle to the "index" child element. <a href="#a10"></a><br></td></tr [all...] |
/external/webkit/WebCore/rendering/ |
InlineFlowBox.cpp | 49 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) 50 child->setHasBadParent(); 65 void InlineFlowBox::addToLine(InlineBox* child) 67 ASSERT(!child->parent()); 68 ASSERT(!child->nextOnLine()); 69 ASSERT(!child->prevOnLine()); 72 child->setParent(this) 115 InlineBox* child = firstChild(); local [all...] |
/frameworks/base/test-runner/src/android/test/ |
ViewAsserts.java | 319 * child should be non-null. 325 assertTrue("child count should be >= 0", count >= 0); 334 * Assert that the specified group contains a specific child once and only once. 337 * @param child The child that should belong to group 339 static public void assertGroupContains(ViewGroup parent, View child) { 341 assertTrue("Child count should be >= 0", count >= 0); 345 if (parent.getChildAt(i) == child) { 349 assertTrue("child " + child + " is duplicated in parent", false) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/ |
android.widget.RelativeLayout.groovy | 28 * Display some relation layout information on a selected child. 100 [ "child": null, // INode: Current child under cursor 101 "index": 0, // int: Index of child in the parent children list 102 "zones": null, // Valid "anchor" zones for the current child 117 // Only look for a new child if cursor is no longer under the current rect 126 for(child in layoutNode.getChildren()) { 128 if (child.getBounds().contains(p)) { 129 childNode = child; 134 // If there is a selected child and it changed, recompute child drop zone [all...] |
/frameworks/base/core/java/android/widget/ |
ScrollView.java | 40 * is a {@link FrameLayout}, meaning you should place one child in it 41 * containing the entire contents to scroll; this child may itself be a layout 42 * manager with a complex hierarchy of objects. A child that is often used 83 * The child to give focus to in the event that a child has requested focus while the 84 * layout is dirty. This prevents the scroll from being wrong if the child has not been 102 * When set to true, the scroll view measure its child to make it fill the currently 199 public void addView(View child) { 201 throw new IllegalStateException("ScrollView can host only one direct child"); 204 super.addView(child); 238 View child = getChildAt(0); local 298 final View child = getChildAt(0); local 374 final View child = getChildAt(0); local 572 View child = getChildAt(0); local 1017 View child = getChildAt(0); local 1290 View child = getChildAt(0); local [all...] |
TableLayout.java | 56 * <code>layout_height</code> attribute can be defined by a child; default value 57 * is {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}. If the child 63 * a child cell, it will autoincrement to the next available column. If you skip 67 * <p>Although the typical child of a TableLayout is a TableRow, you can 68 * actually use any View subclass as a direct child of TableLayout. The View 361 * upon child insertion.</p> 366 * @param child the newly added child 368 private void trackCollapsedColumns(View child) { 369 if (child instanceof TableRow) 486 final View child = getChildAt(i); local 582 View child = getChildAt(i); local [all...] |
RadioGroup.java | 126 public void addView(View child, int index, ViewGroup.LayoutParams params) { 127 if (child instanceof RadioButton) { 128 final RadioButton button = (RadioButton) child; 139 super.addView(child, index, params); 246 * for a list of all child view attributes that this class supports.</p> 286 * <p>Fixes the child's width to 287 * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT} and the child's 358 public void onChildViewAdded(View parent, View child) { 359 if (parent == RadioGroup.this && child instanceof RadioButton) { 360 int id = child.getId() [all...] |
HorizontalScrollView.java | 38 * is a {@link FrameLayout}, meaning you should place one child in it 39 * containing the entire contents to scroll; this child may itself be a layout 40 * manager with a complex hierarchy of objects. A child that is often used 87 * The child to give focus to in the event that a child has requested focus while the 88 * layout is dirty. This prevents the scroll from being wrong if the child has not been 106 * When set to true, the scroll view measure its child to make it fill the currently 203 public void addView(View child) { 205 throw new IllegalStateException("HorizontalScrollView can host only one direct child"); 208 super.addView(child); 242 View child = getChildAt(0); local 302 final View child = getChildAt(0); local 376 final View child = getChildAt(0); local 575 View child = getChildAt(0); local 1016 View child = getChildAt(0); local 1288 View child = getChildAt(0); local [all...] |
/external/webkit/WebCore/html/ |
HTMLObjectElement.cpp | 275 Node* child = firstChild(); local 276 while (child && isNamedItem) { 277 if (child->isElementNode()) { 278 Element* element = static_cast<Element*>(child); 281 } else if (child->isTextNode()) { 282 if (!static_cast<Text*>(child)->containsOnlyWhitespace()) 286 child = child->nextSibling(); 336 for (Element* child = firstElementChild(); child; child = child->nextElementSibling()) [all...] |
/frameworks/base/cmds/runtime/ |
SignalHandler.h | 23 typedef void (*child_callback_t)(pid_t child, void* userData); 26 * Set a handler for when a child process exits. By calling 27 * this, a waitpid() will be done when the child exits to remove 29 * handler to be called when the child exits. 31 * If there is already a handler for this child process, it is 35 * @param childPid Process ID of child to watch. 36 * @param childTag User-defined tag for this child. Must be 39 * child exits. It may be called in either a 41 * immediately if the child has already exited. 52 * Kill all of the child processes for which we have a waitin [all...] |
/frameworks/base/docs/html/guide/topics/ui/ |
how-android-draws.jd | 48 its children. For example, the parent may measure each child once with 78 the ability to center child Views horizontally and vertically. 83 child. A MeasureSpec can be in one of three modes:</p> 86 of a child View. For example, a LinearLayout may call <code>measure()</code> on its child 88 tall the child View wants to be given a width of 240 pixels.</li> 90 child. The child must use this size, and guarantee that all of its 93 child. The child must guarantee that it and all of its descendants will fi [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ScrollViewTest.java | 139 + "ScrollView#addView(View) when there is already one child in the view.") 150 fail("ScrollView can host only one direct child"); 164 + "ScrollView#addView(View, int) when there is already one child in the view.") 175 fail("ScrollView can host only one direct child"); 190 fail("ScrollView can host only one direct child"); 200 fail("ScrollView can host only one direct child"); 214 + " one child in the view or the layoutparams is null") 227 fail("ScrollView can host only one direct child"); 252 + " one child in the view or the layoutparams is null") 265 fail("ScrollView can host only one direct child"); 405 MyView child = new MyView(mActivity); local 431 MyView child = new MyView(mActivity); local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
ElemForEach.java | 317 * Perform a query if needed, and call transformNode for each child. 360 int child; local 362 while (DTM.NULL != (child = sourceNodes.nextNode())) 364 currentNodes.setTop(child); 365 currentExpressionNodes.setTop(child); 367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID) 369 dtm = xctxt.getDTM(child); 370 docID = child & DTMManager.IDENT_DTM_DEFAULT; 373 //final int exNodeType = dtm.getExpandedTypeID(child); 374 final int nodeType = dtm.getNodeType(child); [all...] |
/cts/tools/host/src/com/android/cts/ |
XMLResourceHandler.java | 70 * Get child by attribute. 75 * @return The child node. 83 Node child = children.item(i); local 84 if (child.getNodeType() == Node.ELEMENT_NODE) { 85 if (attrValue.equals(getStringAttributeValue(child, attrName))) { 86 return child;
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
characterdatadeletedatagetlengthanddata.java | 35 * Retrieve the character data from the last child of the 74 CharacterData child; local 82 child = (CharacterData) nameNode.getFirstChild(); 83 child.deleteData(30, 5); 84 childData = child.getData(); 86 childLength = (int) child.getLength();
|
characterdatasetnodevalue.java | 33 * Retrieve the character data from the second child 64 CharacterData child; local 70 child = (CharacterData) nameNode.getFirstChild(); 71 child.setNodeValue("Marilyn Martin"); 72 childData = child.getData(); 74 childValue = child.getNodeValue();
|
documentcreateentityreferenceknown.java | 33 * is known, the child list of the "EntityReference" node 39 * given name. The referenced entity is known, therefore the child 71 Node child; local 79 child = newEntRefNode.getFirstChild(); 80 name = child.getNodeName(); 82 value = child.getNodeValue();
|
hc_characterdatadeletedatagetlengthanddata.java | 35 * Retrieve the character data from the last child of the 73 CharacterData child; local 81 child = (CharacterData) nameNode.getFirstChild(); 82 child.deleteData(30, 5); 83 childData = child.getData(); 85 childLength = (int) child.getLength();
|
hc_characterdatasetnodevalue.java | 33 * Retrieve the character data from the second child 64 CharacterData child; local 70 child = (CharacterData) nameNode.getFirstChild(); 71 child.setNodeValue("Marilyn Martin"); 72 childData = child.getData(); 74 childValue = child.getNodeValue();
|
hc_nodeinsertbeforedocfragment.java | 38 * fourth child. The second employee should now have two 75 Node child; local 90 child = childList.item(3); 91 childName = child.getNodeName(); 93 child = childList.item(4); 94 childName = child.getNodeName();
|
nodecdatasectionnodevalue.java | 34 * Retrieve the CDATASection node inside the second child 76 Node child; local 82 child = childList.item(1); 84 if ((child == null)) { 85 child = doc.createCDATASection("This is a CDATASection with EntityReference number 2 &ent2;"); 87 cdataNodeValue = child.getNodeValue();
|
nodeinsertbeforedocfragment.java | 38 * fourth child. The second employee should now have two 75 Node child; local 90 child = childList.item(3); 91 childName = child.getNodeName(); 93 child = childList.item(4); 94 childName = child.getNodeName();
|
nodelistreturnlastitem.java | 31 * Get this last child of the third employee using NodeList.item(NodeList.length - 1) 63 Node child; local 73 child = employeeList.item(5); 74 childName = child.getNodeName(); 77 child = employeeList.item(12); 78 childName = child.getNodeName();
|
noderemovechildnode.java | 31 * Retrieve the second employee and remove its first child. 33 * children and the first child should now be the child 66 Node child; local 78 child = childList.item(0); 79 childName = child.getNodeName();
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode11.java | 43 * Method should return a node of type Entity_Reference whose first child's value is "Texas" as defined 77 Node child; local 86 child = aNode.getFirstChild(); 87 assertNotNull("child", child); 88 childValue = child.getNodeValue();
|