/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
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();
|
nodereplacechild.java | 70 Node child; local 80 child = childList.item(0); 81 childName = child.getNodeName();
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getElementsByTagNameNS03.java | 77 Node child; local 100 child = (Node) elementList.item(indexN10076); 101 childName = child.getNodeName();
|
getElementsByTagNameNS04.java | 77 Node child; local 91 child = (Node) elementList.item(indexN10059); 92 childName = child.getNodeName();
|
getElementsByTagNameNS10.java | 79 Node child; local 103 child = (Node) elementList.item(indexN1007E); 104 childName = child.getNodeName();
|
getElementsByTagNameNS11.java | 78 Node child; local 93 child = (Node) elementList.item(indexN1005E); 94 childName = child.getNodeName();
|
importNode06.java | 76 Node child; local 89 child = aNode.getFirstChild(); 90 value = child.getNodeValue();
|
normalize01.java | 38 * Retrieve the third employee and access its second child. 39 * This child contains a block of text that is spread 40 * across multiple lines. The content of the "name" child
|
/dalvik/libcore/luni/src/main/java/java/util/ |
Timer.java | 115 int child = 2 * current + 1; local 117 while (child < size && size > 0) { 119 if (child + 1 < size 120 && timers[child + 1].when < timers[child].when) { 121 child++; 124 // compare selected child with parent 125 if (timers[current].when < timers[child].when) { 131 timers[current] = timers[child]; 132 timers[child] = tmp [all...] |
/dalvik/libcore/xml/src/main/java/org/kxml2/kdom/ |
Document.java | 60 /** Adds a child at the given index position. Throws 63 public void addChild(int index, int type, Object child) { 73 super.addChild(index, type, child);
|
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
Normalize.java | 43 * Retrieve the third employee and access its second child. 44 * This child contains a block of text that is spread 45 * across multiple lines. The content of the "name" child
|
SetNamedItemNS.java | 186 // Node child; 197 // child = nList.item(0); 198 // nodeType = (int) child.getNodeType(); 201 // child = doc.createEntityReference("ent4"); 202 // assertNotNull("createdEntRefNotNull", child); 204 // n2List = child.getChildNodes();
|
/dalvik/vm/ |
Sync.c | 1855 const Object* child = expandBufGetEntry(pList, i); local 2108 Object* child = expandBufGetEntry(pList, i); local [all...] |
/development/simulator/app/ |
Pipe.h | 83 * Modify inheritance, i.e. whether or not a child process will get 85 * the descriptors before launching the child process, but Win32 93 * a child process.
|
/external/gtest/test/ |
gtest_help_test.py | 86 child = gtest_test_utils.Subprocess(command) 87 return child.exit_code, child.output
|
gtest_test_utils.py | 131 terminated_by_sygnal True iff the child process has been terminated 133 signal Sygnal that terminated the child process. 134 exited True iff the child process exited normally. 135 exit_code The code with which the child proces exited. 136 output Child process's stdout and stderr output 155 # communicate returns a tuple with the file obect for the child's
|
/external/webkit/WebCore/inspector/front-end/ |
TopDownProfileDataGridTree.js | 60 var child = this.childrenByCallUID[aCallUID]; 62 if (child) 63 this._merge(child, true);
|
/external/webkit/WebCore/mathml/ |
RenderMathMLBlock.cpp | 47 bool RenderMathMLBlock::isChildAllowed(RenderObject* child, RenderStyle*) const 49 return child->node() && child->node()->nodeType() == Node::ELEMENT_NODE;
|
/external/webkit/WebCore/platform/ |
ScrollView.h | 70 // Methods for child manipulation and inspection. 79 bool isScrollViewScrollbar(const Widget* child) const { return horizontalScrollbar() == child || verticalScrollbar() == child; } 195 IntPoint convertChildToSelf(const Widget* child, const IntPoint& point) const 198 if (!isScrollViewScrollbar(child)) 200 newPoint.move(child->x(), child->y()); 204 IntPoint convertSelfToChild(const Widget* child, const IntPoint& point) const 207 if (!isScrollViewScrollbar(child)) [all...] |
/frameworks/base/docs/html/guide/tutorials/views/ |
hello-linearlayout.jd | 6 <p>A {@link android.widget.LinearLayout} is a GroupView that will lay child View elements 101 its child elements vertically. The first child is another LinearLayout that uses a horizontal layout
|
/packages/apps/Contacts/src/com/android/contacts/ |
TabStripView.java | 85 public void childDrawableStateChanged(View child) { 86 if (child == getChildAt(mSelectedTabIndex)) { 90 super.childDrawableStateChanged(child);
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
tree-dump.h | 81 /* Dump the CHILD and its children. */ 82 #define dump_child(field, child) \ 83 queue_and_dump_index (di, field, child, DUMP_NONE)
|
/cts/tests/src/android/widget/cts/ |
MyGallery.java | 48 protected boolean getChildStaticTransformation(View child, Transformation t) { 49 return super.getChildStaticTransformation(child, t);
|
/cts/tests/src/android/widget/cts/util/ |
ExpandableListScenario.java | 209 final int child = ExpandableListView.getPackedPositionChild(packedPosition); local 210 if (child >= mGroups.get(group).children.size() || child < 0) { 245 * Create a view for a group or child position. 247 * @param packedPosition The packed position (has type, group pos, and optionally child pos). 269 * least one child. 273 * @param atLeastOneChild The group must have at least one child, or false 373 name = "Child " + id;
|