Searched refs:child1 (Results 1 - 25 of 31) sorted by relevance

12

/external/valgrind/main/helgrind/tests/
H A Dlocked_vs_unlocked1.c27 pthread_t child1, child2; local
29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) {
39 if (pthread_join(child1, NULL)) {
H A Dbar_bad.c12 void* child1 ( void* arg ) function
53 pthread_create(&thr1, NULL, child1, (void*)bar3);
65 pthread_create(&thr2, NULL, child1, (void*)bar4);
H A Dlocked_vs_unlocked3.c45 pthread_t child1, child2; local
54 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
56 r= pthread_join(child1, NULL); assert(!r);
H A Dtc22_exit_w_lock.c37 pthread_t child1, child2; local
42 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
43 r= pthread_join(child1, NULL); assert(!r);
H A Dlocked_vs_unlocked2.c53 pthread_t child1, child2; local
62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
64 r= pthread_join(child1, NULL); assert(!r);
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_expanded_container_unittest.cc53 GtkWidget* child1 = gtk_fixed_new(); local
55 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
56 ASSERT_TRUE(FindChild(child1));
60 ASSERT_TRUE(FindChild(child1));
62 gtk_container_remove(GTK_CONTAINER(expanded_), child1); local
63 ASSERT_FALSE(FindChild(child1));
71 GtkWidget* child1 = gtk_fixed_new(); local
73 gtk_container_add(GTK_CONTAINER(expanded_), child1); local
81 EXPECT_EQ(0, child1->allocation.x);
82 EXPECT_EQ(0, child1
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DViewGroupTest.java33 private View child1; field in class:ViewGroupTest
47 child1 = new View(context);
53 root.addView(child1);
93 assertThat(root.getChildAt(0), sameInstance(child1));
102 root.addView(child1);
105 assertThat(root.getChildAt(0), sameInstance(child1));
113 child1.setTag("tag1");
116 root.addView(child1);
119 assertThat(root.findViewWithTag("tag1"), sameInstance(child1));
127 child1
[all...]
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DFilePreferencesImplTest.java82 Preferences child1 = uroot.node("child1");
84 Preferences grandchild = child1.node("grand");
90 childNames = child1.childrenNames();
96 child1.removeNode();
104 child1 = sroot.node("child1");
106 grandchild = child1.node("grand");
112 childNames = child1.childrenNames();
118 child1
[all...]
H A DAbstractPreferencesTest.java200 // MockAbstractPreferences child1 = new MockAbstractPreferences(pref,
201 // "child1");
207 // MockAbstractPreferences(child1,
209 Preferences child1 = pref.node("child1");
213 child1.node("subchild1");
215 assertSame(pref, child1.parent());
604 AbstractPreferences child1 = new MockAbstractPreferences(pref, "child1");
605 assertSame(pref, child1
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGGraph.cpp74 if (node.child1 != NoNode)
75 printf("@%u", node.child1);
80 bool hasPrinted = node.child1 != NoNode;
142 if (node.child1 == NoNode) {
146 ref(node.child1);
162 if (node.child1 == NoNode) {
166 deref(node.child1);
H A DDFGNonSpeculativeJIT.cpp185 JSValueOperand thisValue(this, node.child1);
209 JSValueOperand value(this, node.child1);
218 if (isInt32Constant(node.child1)) {
222 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID());
226 IntegerOperand op1(this, node.child1);
233 IntegerOperand op1(this, node.child1);
249 IntegerOperand op1(this, node.child1);
260 IntegerOperand op1(this, node.child1);
273 IntegerOperand op1(this, node.child1);
286 IntegerOperand op1(this, node.child1);
[all...]
H A DDFGNode.h174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
177 , child1(child1)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
189 , child1(child1)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
202 , child1(child1)
335 NodeIndex child1, child member in struct:JSC::DFG::Node
[all...]
H A DDFGSpeculativeJIT.cpp262 JSValueOperand value(this, node.child1);
271 if (isInt32Constant(node.child1)) {
275 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID());
279 SpeculateIntegerOperand op1(this, node.child1);
286 SpeculateIntegerOperand op1(this, node.child1);
302 SpeculateIntegerOperand op1(this, node.child1);
310 SpeculateIntegerOperand op1(this, node.child1);
323 IntegerOperand op1(this, node.child1);
335 SpeculateIntegerOperand op1(this, node.child1);
343 SpeculateIntegerOperand op1(this, node.child1);
[all...]
H A DDFGAliasTracker.h63 if (possibleAlias.child1 == base && equalIgnoringLaterNumericConversion(possibleAlias.child2, property))
109 return (node2.op == ValueToNumber || node2.op == ValueToInt32 || node2.op == NumberToInt32) && op1 == node2.child1;
H A DDFGByteCodeParser.cpp124 return m_graph[setNode].child1;
166 return m_graph[setNode].child1;
226 return node.child1;
432 NodeIndex addToGraph(NodeType op, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
435 m_graph.append(Node(op, m_currentIndex, child1, child2, child3));
441 NodeIndex addToGraph(NodeType op, OpInfo info, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
444 m_graph.append(Node(op, m_currentIndex, info, child1, child2, child3));
450 NodeIndex addToGraph(NodeType op, OpInfo info1, OpInfo info2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
453 m_graph.append(Node(op, m_currentIndex, info1, info2, child1, child2, child3));
1043 scoreBoard.use(node.child1);
[all...]
H A DDFGJITCodeGenerator.cpp317 NodeIndex child1 = node.child1; local
318 if (child1 == NoNode) {
322 use(child1);
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dminidom.js52 child1 = new Node();
56 node.appendChild(child1);
69 node.removeChild(child1);
/external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
H A Dsample.js26 var child1 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeWizard.java356 Object child1 = adaptor.getChild(t1, i);
358 if ( !_parse(child1, child2, labels) ) {
368 * (root child1 ... child2).
424 Object child1 = adaptor.getChild(t1, i);
426 if ( !_equals(child1, child2, adaptor) ) {
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMHelper.java348 * Figure out if child2 is after child1 in document order.
356 * @param parent Must be the parent of both child1 and child2.
357 * @param child1 Must be the child of parent and not equal to child2.
358 * @param child2 Must be the child of parent and not equal to child1.
359 * @return true if child 2 is after child1 in document order.
361 private static boolean isNodeAfterSibling(Node parent, Node child1, argument
366 short child1type = child1.getNodeType();
394 if (child1 == child || isNodeTheSame(child1, child))
438 if (child1
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeWizard.cs441 object child1 = adaptor.GetChild(t1, i);
443 if (!ParseCore(child1, child2, labels)) {
454 * (root child1 ... child2).
520 object child1 = adaptor.GetChild(t1, i);
522 if (!EqualsCore(child1, child2, adaptor)) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeWizard.cs507 object child1 = adaptor.GetChild( t1, i );
509 if ( !ParseCore( child1, child2, labels ) )
521 * (root child1 ... child2).
596 object child1 = adaptor.GetChild( t1, i );
598 if ( !EqualsCore( child1, child2, adaptor ) )
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtreewizard.py353 (root child1 ... child2).
573 child1 = self.adaptor.getChild(t1, i)
575 if not self._parse(child1, child2, labels):
614 child1 = adaptor.getChild(t1, i)
616 if not self._equals(child1, child2, adaptor):
/external/chromium/chrome/browser/profiles/
H A Dprofile_dependency_manager_unittest.cc85 TestService child1("child1", shutdown_order(), manager());
87 DependOn(&child1, &parent);
94 EXPECT_STREQ("child1", (*shutdown_order())[1].c_str());
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model_unittest.cc976 BookmarkNode* child1 = AsMutable(parent->GetChild(1)); local
977 child1->set_title(ASCIIToUTF16("a"));
978 delete child1->Remove(child1->GetChild(0));

Completed in 738 milliseconds

12