Home
last modified time | relevance | path

Searched refs:child1 (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium/chrome/browser/ui/gtk/
Dgtk_expanded_container_unittest.cc53 GtkWidget* child1 = gtk_fixed_new(); in TEST_F() local
55 gtk_container_add(GTK_CONTAINER(expanded_), child1); in TEST_F()
56 ASSERT_TRUE(FindChild(child1)); in TEST_F()
60 ASSERT_TRUE(FindChild(child1)); in TEST_F()
62 gtk_container_remove(GTK_CONTAINER(expanded_), child1); in TEST_F()
63 ASSERT_FALSE(FindChild(child1)); in TEST_F()
71 GtkWidget* child1 = gtk_fixed_new(); in TEST_F() local
73 gtk_container_add(GTK_CONTAINER(expanded_), child1); in TEST_F()
81 EXPECT_EQ(0, child1->allocation.x); in TEST_F()
82 EXPECT_EQ(0, child1->allocation.y); in TEST_F()
[all …]
/external/webkit/Source/JavaScriptCore/dfg/
DDFGNonSpeculativeJIT.cpp185 JSValueOperand thisValue(this, node.child1); in compile()
209 JSValueOperand value(this, node.child1); in compile()
218 if (isInt32Constant(node.child1)) { in compile()
222 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID()); in compile()
226 IntegerOperand op1(this, node.child1); in compile()
233 IntegerOperand op1(this, node.child1); in compile()
249 IntegerOperand op1(this, node.child1); in compile()
260 IntegerOperand op1(this, node.child1); in compile()
273 IntegerOperand op1(this, node.child1); in compile()
286 IntegerOperand op1(this, node.child1); in compile()
[all …]
DDFGSpeculativeJIT.cpp262 JSValueOperand value(this, node.child1); in compile()
271 if (isInt32Constant(node.child1)) { in compile()
275 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID()); in compile()
279 SpeculateIntegerOperand op1(this, node.child1); in compile()
286 SpeculateIntegerOperand op1(this, node.child1); in compile()
302 SpeculateIntegerOperand op1(this, node.child1); in compile()
310 SpeculateIntegerOperand op1(this, node.child1); in compile()
323 IntegerOperand op1(this, node.child1); in compile()
335 SpeculateIntegerOperand op1(this, node.child1); in compile()
343 SpeculateIntegerOperand op1(this, node.child1); in compile()
[all …]
DDFGNode.h174 …Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNod…
177 , child1(child1) in op()
186 …Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex ch…
189 , child1(child1) in op()
199 …Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode…
202 , child1(child1) in op()
335 NodeIndex child1, child2, child3; member
DDFGGraph.cpp74 if (node.child1 != NoNode) in dump()
75 printf("@%u", node.child1); in dump()
80 bool hasPrinted = node.child1 != NoNode; in dump()
142 if (node.child1 == NoNode) { in refChildren()
146 ref(node.child1); in refChildren()
162 if (node.child1 == NoNode) { in derefChildren()
166 deref(node.child1); in derefChildren()
DDFGAliasTracker.h63 …if (possibleAlias.child1 == base && equalIgnoringLaterNumericConversion(possibleAlias.child2, prop… in lookupGetByVal()
109 … == ValueToNumber || node2.op == ValueToInt32 || node2.op == NumberToInt32) && op1 == node2.child1; in equalIgnoringLaterNumericConversion()
DDFGByteCodeParser.cpp124 return m_graph[setNode].child1; in getVariable()
166 return m_graph[setNode].child1; in getArgument()
226 return node.child1; in toInt32()
432 …NodeIndex addToGraph(NodeType op, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex … in addToGraph() argument
435 m_graph.append(Node(op, m_currentIndex, child1, child2, child3)); in addToGraph()
441 …NodeIndex addToGraph(NodeType op, OpInfo info, NodeIndex child1 = NoNode, NodeIndex child2 = NoNod… in addToGraph() argument
444 m_graph.append(Node(op, m_currentIndex, info, child1, child2, child3)); in addToGraph()
450 …NodeIndex addToGraph(NodeType op, OpInfo info1, OpInfo info2, NodeIndex child1 = NoNode, NodeIndex… in addToGraph() argument
453 m_graph.append(Node(op, m_currentIndex, info1, info2, child1, child2, child3)); in addToGraph()
1043 scoreBoard.use(node.child1); in parse()
DDFGJITCodeGenerator.cpp317 NodeIndex child1 = node.child1; in useChildren() local
318 if (child1 == NoNode) { in useChildren()
322 use(child1); in useChildren()
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
DFilePreferencesImplTest.java82 Preferences child1 = uroot.node("child1"); in testChildNodes() local
84 Preferences grandchild = child1.node("grand"); in testChildNodes()
90 childNames = child1.childrenNames(); in testChildNodes()
96 child1.removeNode(); in testChildNodes()
104 child1 = sroot.node("child1"); in testChildNodes()
106 grandchild = child1.node("grand"); in testChildNodes()
112 childNames = child1.childrenNames(); in testChildNodes()
118 child1.removeNode(); in testChildNodes()
119 assertNotSame(child1, sroot.node("child1")); in testChildNodes()
/external/valgrind/main/helgrind/tests/
Dlocked_vs_unlocked1.c27 pthread_t child1, child2; in main() local
29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) { in main()
39 if (pthread_join(child1, NULL)) { in main()
Dtc22_exit_w_lock.c37 pthread_t child1, child2; in main() local
42 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r); in main()
43 r= pthread_join(child1, NULL); assert(!r); in main()
Dlocked_vs_unlocked3.c45 pthread_t child1, child2; in main() local
54 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r); in main()
56 r= pthread_join(child1, NULL); assert(!r); in main()
Dbar_bad.c12 void* child1 ( void* arg ) in child1() function
53 pthread_create(&thr1, NULL, child1, (void*)bar3); in main()
65 pthread_create(&thr2, NULL, child1, (void*)bar4); in main()
Dlocked_vs_unlocked2.c53 pthread_t child1, child2; in main() local
62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r); in main()
64 r= pthread_join(child1, NULL); assert(!r); in main()
/external/chromium/chrome/browser/accessibility/
Dbrowser_accessibility_mac_unittest.mm55 WebAccessibility child1;
56 child1.name = ASCIIToUTF16("Child1");
57 child1.location.set_width(250);
58 child1.location.set_height(100);
59 child1.role = WebAccessibility::ROLE_BUTTON;
67 root.children.push_back(child1);
/external/webkit/Source/JavaScriptCore/API/tests/
Dminidom.js52 child1 = new Node();
56 node.appendChild(child1);
69 node.removeChild(child1);
/external/bison/tests/
Dcxx-type.at234 new_nterm (char const *form, Node *child0, Node *child1, Node *child2)
243 node->nterm.children[1] = child1;
244 if (child1)
245 child1->nodeInfo.parents += 1;
286 char *child1;
297 child1 = node_to_string (node->nterm.children[1]);
300 + strlen (child1) + strlen (child2) + 1);
301 sprintf (buffer, node->nterm.form, child0, child1, child2);
303 free (child1);
/external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
Dsample.js26 var child1 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java361 private static boolean isNodeAfterSibling(Node parent, Node child1, in isNodeAfterSibling() argument
366 short child1type = child1.getNodeType(); in isNodeAfterSibling()
394 if (child1 == child || isNodeTheSame(child1, child)) in isNodeAfterSibling()
438 if (child1 == child || isNodeTheSame(child1, child)) in isNodeAfterSibling()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeWizard.java356 Object child1 = adaptor.getChild(t1, i); in _parse() local
358 if ( !_parse(child1, child2, labels) ) { in _parse()
424 Object child1 = adaptor.getChild(t1, i); in _equals() local
426 if ( !_equals(child1, child2, adaptor) ) { in _equals()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeWizard.cs507 object child1 = adaptor.GetChild( t1, i ); in ParseCore()
509 if ( !ParseCore( child1, child2, labels ) ) in ParseCore()
596 object child1 = adaptor.GetChild( t1, i ); in EqualsCore()
598 if ( !EqualsCore( child1, child2, adaptor ) ) in EqualsCore()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeWizard.cs441 object child1 = adaptor.GetChild(t1, i); in ParseCore()
443 if (!ParseCore(child1, child2, labels)) { in ParseCore()
520 object child1 = adaptor.GetChild(t1, i); in EqualsCore()
522 if (!EqualsCore(child1, child2, adaptor)) { in EqualsCore()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtreewizard.py573 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/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/
DANTLRCommonTreeTest.m485 ANTLRCommonTree *child1 = [ANTLRCommonTree newTreeWithTokenType:ANTLRTokenTypeUP];
486 [parent1 addChild:child1];
494 STAssertEquals([parent2 getChild:0], child1, @"Child for parent 2 should have been from parent 1");
516 ANTLRCommonTree *child1 = [ANTLRCommonTree newTreeWithTokenType:ANTLRTokenTypeUP];
517 [parent1 addChild:child1];
530 STAssertEquals([parent2 getChild:0], child1, @"Child for parent 2 should have been from parent 1");
537 ANTLRCommonTree *child1 = [ANTLRCommonTree newTreeWithTokenType:ANTLRTokenTypeUP];
538 [parent1 addChild:child1];
550 STAssertEquals([parent2 getChild:0], child1, @"Child for parent 2 should have been from parent 1");
/external/chromium/chrome/browser/profiles/
Dprofile_dependency_manager_unittest.cc85 TestService child1("child1", shutdown_order(), manager()); in TEST_F() local
87 DependOn(&child1, &parent); in TEST_F()

12