Searched defs:child (Results 51 - 75 of 568) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DADecNumberVariable.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._decNumber_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DADecimalExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAExistsExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAHexExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAHexNumberVariable.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._hexNumber_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAMultipleCommand.java66 void removeChild(@SuppressWarnings("unused") Node child) argument
68 // Remove child
69 if(this._command_.remove(child))
74 throw new RuntimeException("Not a child.");
80 // Replace child
99 throw new RuntimeException("Not a child.");
H A DANameVariable.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._word_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DANegativeExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DANotExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DANumericExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAOptimizedMultipleCommand.java35 void removeChild(Node child) { argument
44 // Replace child
53 throw new RuntimeException("Not a child.");
H A DASequenceExpression.java66 void removeChild(@SuppressWarnings("unused") Node child) argument
68 // Remove child
69 if(this._args_.remove(child))
74 throw new RuntimeException("Not a child.");
80 // Replace child
99 throw new RuntimeException("Not a child.");
H A DAStringExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DAVariableExpression.java70 void removeChild(@SuppressWarnings("unused") Node child) argument
72 // Remove child
73 if(this._variable_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
H A DNode.java25 abstract void removeChild(Node child); argument
/external/junit/src/org/junit/runners/
H A DSuite.java122 protected Description describeChild(Runner child) { argument
123 return child.getDescription();
/external/qemu/elff/
H A Ddwarf_die.h139 /* Gets last child object in the list of this DIE's childs. NOTE: for better
147 /* Links next child to the list of this DIE childs. */
148 void link_child(DIEObject* child) { argument
149 last_child_ = child;
192 /* Last child object in the list of this DIE's childs. NOTE: for better
/external/valgrind/main/helgrind/tests/
H A Dtc08_hbl2.c5 child: new value 6
6 child: new value 10
11 child: new value 10
21 whilst child reads it. When counter reaches a prearranged value,
22 child joins back to parent. Parent (writer) uses hardware bus lock;
23 child is only reading and so does not need to use a bus lock. */
127 printf("child: new value %d\n", oldx);
138 pthread_t child; local
141 if (pthread_create(&child, NULL, child_fn, NULL)) {
148 if (i == 5) sleep(1); /* make sure child does
[all...]
H A Dtc20_verifywrap.c69 create a child thread, generate a race error, and join with it
75 { pthread_t child; local
76 r= pthread_create( &child, NULL, racy_child, NULL ); assert(!r);
77 sleep(1); /* just to ensure parent thread reports race, not child */
79 r= pthread_join( child, NULL ); assert(!r);
/external/valgrind/main/memcheck/tests/
H A Datomic_incs.c467 pid_t child, p2; local
496 child = fork();
497 if (child == -1) {
502 if (child == 0) {
504 printf("child\n");
527 p2 = waitpid(child, &status, 0);
528 assert(p2 == child);
530 /* assert that child finished normally */
/external/valgrind/main/none/tests/
H A Dpth_atfork1.c65 child (void) function
80 pthread_atfork (prepare, parent, child);
104 /* We check whether the `prepare' and `child' function ran. */
111 error (EXIT_FAILURE, errno, "wrong child");
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGScoreBoard.h87 // Increment the usecount for the VirtualRegsiter associated with 'child',
89 void use(NodeIndex child) argument
91 if (child == NoNode)
94 // Find the virtual register number for this child, increment its use count.
95 Node& node = m_graph[child];
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuListPopup.cpp111 AccessibilityObject* child = m_children[i - 1].get(); local
112 if (child->actionElement() && !child->actionElement()->attached()) {
113 m_menuList->renderer()->document()->axObjectCache()->remove(child->axObjectID());
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h49 bool removeChild(Node* child, ExceptionCode&);
96 friend void appendChildToContainer(GenericNode* child, GenericNodeContainer* container);
101 void setFirstChild(Node* child) { m_firstChild = child; } argument
102 void setLastChild(Node* child) { m_lastChild = child; } argument
H A DContainerNodeAlgorithms.h69 void appendChildToContainer(GenericNode* child, GenericNodeContainer* container) argument
71 child->setParent(container);
75 child->setPreviousSibling(lastChild);
76 lastChild->setNextSibling(child);
78 container->setFirstChild(child);
80 container->setLastChild(child);

Completed in 396 milliseconds

1234567891011>>