HomeSort by relevance Sort by last modified time
    Searched refs:child2 (Results 1 - 25 of 50) sorted by null

1 2

  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked1.c 27 pthread_t child1, child2; local
34 if (pthread_create(&child2, NULL, child_fn, (void*)(long)(sw ? 1 : 0))) {
44 if (pthread_join(child2, NULL)) {
locked_vs_unlocked3.c 45 pthread_t child1, child2; local
53 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
57 r= pthread_join(child2, NULL); assert(!r);
locked_vs_unlocked2.c 53 pthread_t child1, child2; local
61 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
65 r= pthread_join(child2, NULL); assert(!r);
tc22_exit_w_lock.c 37 pthread_t child1, child2; local
39 r= pthread_create(&child2, NULL, child_fn2, NULL); assert(!r);
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container_unittest.cc 54 GtkWidget* child2 = gtk_fixed_new(); local
58 gtk_container_add(GTK_CONTAINER(expanded_), child2); local
59 ASSERT_TRUE(FindChild(child2));
64 ASSERT_TRUE(FindChild(child2));
66 gtk_container_remove(GTK_CONTAINER(expanded_), child2); local
67 ASSERT_FALSE(FindChild(child2));
72 GtkWidget* child2 = gtk_fixed_new(); local
75 child2, 10, 20); local
86 EXPECT_EQ(10, child2->allocation.x);
87 EXPECT_EQ(20, child2->allocation.y)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 34 private View child2; field in class:ViewGroupTest
48 child2 = new View(context);
54 root.addView(child2);
96 assertThat(child2.getParent(), nullValue());
103 root.addView(child2);
107 assertThat(root.getChildAt(2), sameInstance(child2));
114 child2.setTag("tag2");
117 root.addView(child2);
120 assertThat(root.findViewWithTag("tag2"), sameInstance(child2));
128 child2.setTag("tag2")
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp 76 if (node.child2 != NoNode)
77 printf(", @%u", node.child2);
143 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
148 if (node.child2 == NoNode) {
152 ref(node.child2);
163 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
168 if (node.child2 == NoNode) {
172 deref(node.child2);
DFGNode.h 174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
178 , child2(child2)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
190 , child2(child2)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
203 , child2(child2)
335 NodeIndex child1, child2, child3 member in struct:JSC::DFG::Node
    [all...]
DFGSpeculativeJIT.cpp 272 SpeculateIntegerOperand op2(this, node.child2);
278 } else if (isInt32Constant(node.child2)) {
282 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID());
287 SpeculateIntegerOperand op2(this, node.child2);
301 if (isInt32Constant(node.child2)) {
305 shiftOp(op, op1.registerID(), valueOfInt32Constant(node.child2) & 0x1f, result.registerID());
311 SpeculateIntegerOperand op2(this, node.child2);
370 SpeculateIntegerOperand op2(this, node.child2);
381 if (isDoubleConstantWithInt32Value(node.child2, imm2)) {
393 SpeculateIntegerOperand op2(this, node.child2);
    [all...]
DFGNonSpeculativeJIT.cpp 219 IntegerOperand op2(this, node.child2);
225 } else if (isInt32Constant(node.child2)) {
229 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID());
234 IntegerOperand op2(this, node.child2);
248 if (isInt32Constant(node.child2)) {
252 int shiftAmount = valueOfInt32Constant(node.child2) & 0x1f;
261 IntegerOperand op2(this, node.child2);
352 JSValueOperand arg2(this, node.child2);
366 DoubleOperand op2(this, node.child2);
379 DoubleOperand op2(this, node.child2);
    [all...]
DFGAliasTracker.h 63 if (possibleAlias.child1 == base && equalIgnoringLaterNumericConversion(possibleAlias.child2, property))
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
removeNamedItemNS03.java 85 Node child2; local
101 child2 = n2List.item(0);
102 assertNotNull("notnull", child2);
103 attributes = child2.getAttributes();
setNamedItemNS04.java 85 Node child2; local
102 child2 = n2List.item(0);
103 assertNotNull("notnull", child2);
104 attributes = child2.getAttributes();
elementgetelementsbytagnamens04.java 78 Element child2; local
87 child2 = doc.createElementNS(nullNS, "child");
90 appendedChild = element.appendChild(child2);
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 29 Preferences child2 = sroot.node("child2"); local
34 assertContains(childNames, "child2");
40 childNames = child2.childrenNames();
46 assertContains(childNames, "child2");
49 child2.removeNode();
52 assertNotContains(childNames, "child2");
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
FilePreferencesImplTest.java 83 Preferences child2 = uroot.node("\u4e2d child2"); local
93 childNames = child2.childrenNames();
100 child2.removeNode();
105 child2 = sroot.node("child2");
115 childNames = child2.childrenNames();
124 child2.removeNode();
  /external/webkit/Source/JavaScriptCore/API/tests/
minidom.js 53 child2 = new Node();
57 node.appendChild(child2);
70 node.replaceChild(child3, child2);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 64 Element child2; local
74 child2 = doc.createElementNS(nullNS, "child");
78 element.appendChild(child2);
  /sdk/emulator/qtools/tests/gtrace/
test.c 7 int child2();
117 a += child2();
163 int child2() function
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManagerTest.java 54 ViewInfo child2 = new ViewInfo("Button2", child2Node, 0, 20, 70, 25); local
55 root.setChildren(Arrays.asList(child1, child2));
105 ViewInfo child2 = new ViewInfo("Button2", child2Node, 0, 20, 70, 25); local
106 root.setChildren(Arrays.asList(child1, child2));
CanvasViewInfoTest.java 86 ViewInfo child2 = new ViewInfo("Button", child2Node, 0, 20, 70, 25); local
87 root.setChildren(Arrays.asList(child1, child2));
129 ViewInfo child2 = new ViewInfo("RelativeLayout", child2Node, 0, 20, 70, 25); local
130 root.setChildren(Arrays.asList(child1, child2));
133 child2.setChildren(Arrays.asList(child21));
169 ViewInfo child2 = new ViewInfo("RelativeLayout", child2Node, 0, 20, 70, 25); local
170 root.setChildren(Arrays.asList(child1, child2));
172 child2.setChildren(Arrays.asList(child21));
211 ViewInfo child2 = new ViewInfo("RelativeLayout", null /* layoutlib 4 */, 0, 20, 70, 25); local
212 root.setChildren(Arrays.asList(child1, child2));
254 ViewInfo child2 = new ViewInfo("RelativeLayout", null, 0, 20, 70, 25); local
310 ViewInfo child2 = new ViewInfo("RelativeLayout", null, 0, 20, 70, 25); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 28 var child2 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 386 View child2 = new RelativeLayout(mContext); local
387 tableLayout.addView(child2);
389 assertSame(child2, tableLayout.getChildAt(1));
398 assertSame(child2, tableLayout.getChildAt(1));
422 View child2 = new RelativeLayout(mContext); local
423 tableLayout.addView(child2, 0);
424 assertSame(child2, tableLayout.getChildAt(0));
433 assertSame(child2, tableLayout.getChildAt(0));
466 View child2 = new TableRow(mContext); local
467 assertNull(child2.getLayoutParams())
504 View child2 = new TableRow(mContext); local
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 116 * @param child2
120 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
123 long offsetTime2 = child2.getStartOffset();
133 // child1 has started animation, child2 and child3 haven't started
135 child2.getTransformation(startTime + 500, transformation2);
141 // child1 has finished, child2 and child3 haven't started
143 child2.getTransformation(startTime + 1200, transformation2);
149 // child1 has finished, child2 has started animation, child3 hasn't started.
151 child2.getTransformation(startTime + 2000, transformation2);
157 // child1 and child2 have finished, child3 hasn't starte
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 357 TreePattern child2 = (TreePattern)tpattern.getChild(i); local
358 if ( !_parse(child1, child2, labels) ) {
368 * (root child1 ... child2).
425 Object child2 = adaptor.getChild(t2, i); local
426 if ( !_equals(child1, child2, adaptor) ) {

Completed in 1045 milliseconds

1 2