HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 976 - 1000 of 3822) sorted by null

<<31323334353637383940>>

  /development/scripts/
symbol.py 194 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
199 child.stdin.write("0x%s\n" % addr)
200 child.stdin.flush()
204 symbol = child.stdout.readline().strip()
207 location = child.stdout.readline().strip()
217 child.stdin.write("\n")
220 child.stdin.close()
221 child.stdout.close()
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontree.c 77 // Install a vector factory to create, track and free() any child
165 // whatever put it back on the stack (for instance if it had a child vector,
256 // First close the vector factory that supplied all the child pointer
370 /// Create a new vector for holding child nodes using the inbuilt
458 pANTLR3_BASE_TREE child; local
460 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
461 return child->getLine(child);
478 pANTLR3_BASE_TREE child; local
480 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
TraceDebugEventListener.cs 107 public override void AddChild(object root, object child) {
109 adaptor.GetUniqueID(child));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeAdaptor.cs 155 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
159 * Add a child to the tree t. If child is a flat tree (a list), make all
160 * in list children of t. Warning: if t has no children, but child does
161 * and child isNil then you can decide it is ok to move children to t via
162 * t.children = child.children; i.e., without copying the array. Just
164 * ASTs. Do nothing if t or child is null.
167 void AddChild( object t, object child );
171 * If not a nil root, make oldRoot a child of newRoot.
178 * If newRoot is a nil-rooted single child tree, use the singl
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
TraceDebugEventListener.cs 121 public override void AddChild( object root, object child )
124 adaptor.GetUniqueID( child ) );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 84 public void addChild(Object root, Object child) { listener.addChild(root, child); }
TraceDebugEventListener.java 86 public void addChild(Object root, Object child) {
88 adaptor.getUniqueID(child));
  /external/autotest/client/bin/net/
net_tc.py 102 # setup child classes
103 for child in self._children:
104 child.setup()
108 # restore child classes
111 for child in children_copy:
112 child.restore()
327 # setup child classes
328 for child in self._classes:
329 child.setup(netif)
343 # restore child classe
    [all...]
  /external/autotest/frontend/static/
jsonview.css 67 li:last-child:after {
  /external/deqp/executor/
xeTestCase.cpp 332 const TestNode* child = group->getChild(ndx); local
333 nodeSet.insert(child);
335 if (child->getNodeType() == TESTNODETYPE_GROUP)
336 addChildren(nodeSet, static_cast<const TestGroup*>(child));
344 const TestNode* child = group->getChild(ndx); local
345 nodeSet.erase(child);
347 if (child->getNodeType() == TESTNODETYPE_GROUP)
348 removeChildren(nodeSet, static_cast<const TestGroup*>(child));
  /external/deqp/scripts/
convert_case_list_to_xml.py 61 for child in testCase.children:
62 exportCase(doc, element, child)
  /external/iproute2/tc/
m_ematch.c 189 if (t->child) {
235 if (tree->child) {
237 t->next = tree->child;
238 count += flatten_tree(head, tree->child);
251 if (t->child)
252 t->child_ref = t->child->index;
555 if (t->child) {
557 print_ematch_tree(t->child);
  /external/junit/src/org/junit/runner/
Description.java 107 * Add <code>Description</code> as a child of the receiver.
108 * @param description the soon-to-be child.
142 for (Description child : getChildren())
143 result+= child.testCount();
  /external/junit/src/org/junit/runners/
Suite.java 122 protected Description describeChild(Runner child) {
123 return child.getDescription();
  /external/squashfs-tools/kernel/fs/squashfs/
export.c 111 static struct dentry *squashfs_get_parent(struct dentry *child)
113 struct inode *inode = child->d_inode;
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
Theme.java 60 for (Component child : c.getComponents())
61 apply(child);
  /external/v8/tools/turbolizer/
text-view.js 171 let child = view.textListNode.children[i];
172 if (child.location != undefined && view.sameLocation(l, child.location)) {
173 view.selectCommon(child, selected, makeVisible);
288 let child = view.textListNode.children[i];
289 if (child.location && s(child.location)) {
291 makeContainerPosVisible(view.parentNode, child.offsetTop);
294 view.selection.select(child, selected);
  /external/vogar/src/vogar/
ActionFinder.java 44 for (File child : file.listFiles()) {
45 findActionsRecursive(child, depth + 1);
  /frameworks/base/core/tests/coretests/src/android/view/
ViewCaptureTest.java 80 View child = mViewToCapture.findViewById(id); local
81 Assert.assertEquals(EXPECTED_CHILDREN_VISIBILITY.get(id), child.getVisibility());
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityContainer.java 132 for (int child = 0; child < children; child++) {
133 if (mSecurityViewFlipper.getChildAt(child).getId() == securityViewIdForMode) {
134 view = ((KeyguardSecurityView)mSecurityViewFlipper.getChildAt(child));
384 // Find and show this child.
402 View child = getChildAt(i); local
403 if (child instanceof KeyguardSecurityViewFlipper) {
404 return (KeyguardSecurityViewFlipper) child;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ObservableScrollView.java 62 View child = getChildAt(0); local
64 child.getHeight() - (getHeight() - mPaddingBottom - mPaddingTop));
  /frameworks/base/tools/preload/
Proc.java 43 /** Child processes. */
155 * Prints a child proc to standard out.
159 for (Proc child : children) {
160 child.print(prefix + " ");
  /frameworks/support/compat/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 74 public static boolean removeChild(Object info, View child) {
75 return ((AccessibilityNodeInfo) info).removeChild(child);
  /frameworks/support/core-ui/api21/android/support/v4/widget/
DrawerLayoutCompatApi21.java 45 public static void dispatchChildInsets(View child, Object insets, int gravity) {
54 child.dispatchApplyWindowInsets(wi);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactTileAdapter.java 567 final View child = getChildAt(rtlAdjustedIndex);
570 final int childWidth = child.getMeasuredWidth();
571 child.layout(childLeft, 0, childLeft + childWidth, child.getMeasuredHeight());
599 // = ([total width] - [total whitespace]) / [child count]
617 final View child = getChildAt(i);
618 final int childWidth = imageSize + child.getPaddingRight() + child.getPaddingLeft()
622 child.measure(

Completed in 1489 milliseconds

<<31323334353637383940>>