HomeSort by relevance Sort by last modified time
    Searched defs:child1 (Results 1 - 25 of 36) sorted by null

1 2

  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked1.c 27 pthread_t child1, child2; local
29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) {
39 if (pthread_join(child1, NULL)) {
locked_vs_unlocked3.c 45 pthread_t child1, child2; local
54 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
56 r= pthread_join(child1, NULL); assert(!r);
bar_bad.c 12 void* child1 ( void* arg ) function
53 pthread_create(&thr1, NULL, child1, (void*)bar3);
65 pthread_create(&thr2, NULL, child1, (void*)bar4);
locked_vs_unlocked2.c 53 pthread_t child1, child2; local
62 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
64 r= pthread_join(child1, NULL); assert(!r);
tc22_exit_w_lock.c 37 pthread_t child1, child2; local
42 r= pthread_create(&child1, NULL, child_fn1, NULL); assert(!r);
43 r= pthread_join(child1, NULL); assert(!r);
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldFilePreferencesImplTest.java 28 Preferences child1 = sroot.node("child1"); local
30 Preferences grandchild = child1.node("grand");
33 assertContains(childNames, "child1");
37 childNames = child1.childrenNames();
43 child1.removeNode();
45 assertNotContains(childNames, "child1");
51 assertNotContains(childNames, "child1");
OldNodeChangeEventTest.java 61 Preferences child1 = pref.node("mock1"); local
66 child1.removeNode();
109 Preferences child1 = pref.node("mock1"); local
114 child1.removeNode();
OldPreferencesTest.java 124 Preferences child1 = pref.node("child1"); local
128 child1.node("subchild1");
130 assertSame(pref, child1.parent());
132 assertEquals("child1", pref.childrenNames()[0]);
133 assertEquals(1, child1.childrenNames().length);
134 assertEquals("subchild1", child1.childrenNames()[0]);
607 Preferences child1 = pref.node("child1"); local
613 assertFalse(child1.nodeExists(""))
626 Preferences child1 = null; local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 26 var child1 = chrome.contextMenus.create( variable
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
  /sdk/emulator/qtools/tests/gtrace/
test.c 6 int child1();
116 a += child1();
153 int child1() function
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
FilePreferencesImplTest.java 82 Preferences child1 = uroot.node("child1"); local
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.removeNode()
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
LayoutDirectionTest.java 109 ViewGroup child1 = (ViewGroup) getActivity().findViewById(child1Id); local
110 assertEquals(child1ResDir, child1.getLayoutDirection());
TableLayoutTest.java 379 View child1 = new TextView(mContext); local
380 tableLayout.addView(child1);
381 assertSame(child1, tableLayout.getChildAt(0));
388 assertSame(child1, tableLayout.getChildAt(0));
397 assertSame(child1, tableLayout.getChildAt(0));
415 View child1 = new TextView(mContext); local
416 tableLayout.addView(child1, 0);
417 assertSame(child1, tableLayout.getChildAt(0));
425 assertSame(child1, tableLayout.getChildAt(1));
434 assertSame(child1, tableLayout.getChildAt(1))
456 View child1 = new TextView(mContext); local
494 View child1 = new TextView(mContext); local
    [all...]
GridViewTest.java 254 View child1 = mGridView.getChildAt(1); local
255 assertEquals(0, child1.getLeft() - child0.getRight());
265 child1 = mGridView.getChildAt(1);
266 assertEquals(5, child1.getLeft() - child0.getRight());
282 View child1 = mGridView.getChildAt(1); local
283 assertEquals(0, child1.getTop() - child0.getBottom());
293 child1 = mGridView.getChildAt(1);
294 assertEquals(5, child1.getTop() - child0.getBottom());
528 View child1 = mGridView.getChildAt(1);
530 assertEquals(child0.getBottom(), child1.getBottom())
    [all...]
HorizontalScrollViewTest.java 92 TextView child1 = new TextView(mActivity); local
94 scrollView.addView(child1);
109 TextView child1 = new TextView(mActivity); local
111 scrollView.addView(child1, 1);
124 child1 = new TextView(mActivity);
126 scrollView.addView(child1, -1);
152 TextView child1 = new TextView(mActivity); local
154 scrollView.addView(child1, new ViewGroup.LayoutParams(200, 100));
181 TextView child1 = new TextView(mActivity); local
183 scrollView.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
ScrollViewTest.java 111 TextView child1 = new TextView(mActivity); local
113 scrollView.addView(child1);
128 TextView child1 = new TextView(mActivity); local
130 scrollView.addView(child1, 1);
143 child1 = new TextView(mActivity);
145 scrollView.addView(child1, -1);
171 TextView child1 = new TextView(mActivity); local
173 scrollView.addView(child1, new ViewGroup.LayoutParams(200, 100));
200 TextView child1 = new TextView(mActivity); local
202 scrollView.addView(child1, 0, new ViewGroup.LayoutParams(200, 100))
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container_unittest.cc 53 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->allocation.y)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 33 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.setTag("tag1")
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 77 Element child1; local
86 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1", "dom:child");
89 appendedChild = element.appendChild(child1);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 63 Element child1; local
72 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1",
77 element.appendChild(child1);
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.cpp 317 NodeIndex child1 = node.child1; local
318 if (child1 == NoNode) {
322 use(child1);
DFGNode.h 174 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, child2, child3 member in struct:JSC::DFG::Node
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManagerTest.java 51 ViewInfo child1 = new ViewInfo("Button1", child1Node, 0, 0, 50, 20); local
55 root.setChildren(Arrays.asList(child1, child2));
102 ViewInfo child1 = new ViewInfo("Button1", child1Node, 0, 0, 50, 20); local
106 root.setChildren(Arrays.asList(child1, child2));
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 356 Object child1 = adaptor.getChild(t1, i); local
358 if ( !_parse(child1, child2, labels) ) {
368 * (root child1 ... child2).
424 Object child1 = adaptor.getChild(t1, i); local
426 if ( !_equals(child1, child2, adaptor) ) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 976 BookmarkNode* child1 = AsMutable(parent->GetChild(1)); local
    [all...]

Completed in 744 milliseconds

1 2