HomeSort by relevance Sort by last modified time
    Searched refs:child3 (Results 1 - 19 of 19) sorted by null

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 35 private ViewGroup child3; field in class:ViewGroupTest
49 child3 = new FrameLayout(context);
55 root.addView(child3);
57 child3.addView(child3a);
58 child3.addView(child3b);
94 assertThat(root.getChildAt(1), sameInstance((View) child3));
104 root.addView(child3, 1);
106 assertThat(root.getChildAt(1), sameInstance((View) child3));
115 child3.setTag("tag3");
118 root.addView(child3, 1)
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGGraph.cpp 78 if (node.child3 != NoNode)
79 printf(", @%u", node.child3);
143 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
149 ASSERT(node.child3 == NoNode);
154 if (node.child3 == NoNode)
156 ref(node.child3);
163 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
169 ASSERT(node.child3 == NoNode);
174 if (node.child3 == NoNode)
176 deref(node.child3);
    [all...]
DFGNode.h 174 Node(NodeType op, ExceptionInfo exceptionInfo, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
179 , child3(child3)
186 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
191 , child3(child3)
199 Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode, NodeIndex child2 = NoNode, NodeIndex child3 = NoNode)
204 , child3(child3)
335 NodeIndex child1, child2, child3; member in struct:JSC::DFG::Node
    [all...]
DFGJITCodeGenerator.cpp 319 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
326 ASSERT(node.child3 == NoNode);
331 NodeIndex child3 = node.child3; local
332 if (child3 == NoNode)
334 use(child3);
DFGByteCodeParser.cpp 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));
    [all...]
DFGSpeculativeJIT.cpp 544 NodeIndex alias = node.child3;
547 JSValueOperand aliasedValue(this, node.child3);
584 JSValueOperand value(this, node.child3);
623 JSValueOperand value(this, node.child3);
DFGNonSpeculativeJIT.cpp 522 JSValueOperand arg3(this, node.child3);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 79 Element child3; local
88 child3 = doc.createElementNS("http://www.w3.org/DOM/Level2", "dom:child");
91 appendedChild = element.appendChild(child3);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 65 Element child3; local
75 child3 = doc.createElementNS("http://www.w3.org/DOM/Level2",
79 element.appendChild(child3);
  /sdk/emulator/qtools/tests/gtrace/
test.c 8 int child3();
118 a += child3();
129 a += child3();
173 int child3() function
  /external/webkit/Source/JavaScriptCore/API/tests/
minidom.js 54 child3 = new Node();
70 node.replaceChild(child3, child2);
  /cts/tests/tests/view/src/android/view/animation/cts/
GridLayoutAnimationControllerTest.java 117 * @param child3
120 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
124 long offsetTime3 = child3.getStartOffset();
133 // child1 has started animation, child2 and child3 haven't started
136 child3.getTransformation(startTime + 500, transformation3);
141 // child1 has finished, child2 and child3 haven't started
144 child3.getTransformation(startTime + 1200, transformation3);
149 // child1 has finished, child2 has started animation, child3 hasn't started.
152 child3.getTransformation(startTime + 2000, transformation3);
157 // child1 and child2 have finished, child3 hasn't starte
    [all...]
LayoutAnimationControllerTest.java 96 // child1 has started animation, child2 and child3 haven't started
104 // child2 has started animation, child1 has finished and child3 hasn't started
112 // child3 has started animation, child1, child2 have finished
137 // child3 has started animation, child1 and child2 haven't started
145 // child2 has started animation, child3 has finished and child1 hasn't started
153 // child1 has started animation, child2 and child3 has finished
188 // child1 has started animation, child2 and child3 haven't started
196 // child1 has finished, child2 and child3 haven't started
204 // child1 has finished, child2 has started animation, child3 hasn't started.
212 // child1 and child2 have finished, child3 hasn't starte
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 395 View child3 = new ListView(mContext); local
396 tableLayout.addView(child3);
399 assertSame(child3, tableLayout.getChildAt(2));
431 View child3 = new ListView(mContext); local
432 tableLayout.addView(child3, -1);
435 assertSame(child3, tableLayout.getChildAt(2));
518 View child3 = new ListView(mContext); local
519 assertNull(child3.getLayoutParams());
520 tableLayout.addView(child3, -1, new ListView.LayoutParams(300, 400));
523 assertSame(child3, tableLayout.getChildAt(2))
    [all...]
LayoutDirectionTest.java 115 ViewGroup child3 = (ViewGroup) getActivity().findViewById(child3Id); local
116 assertEquals(child3ResDir, child3.getLayoutDirection());
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 979 BookmarkNode* child3 = AsMutable(parent->GetChild(3)); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 255 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
256 root.setChildren(Arrays.asList(child1, child2, child3));
311 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
312 root.setChildren(Arrays.asList(child1, child2, child3));
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 127 pref.node("child3");
688 Preferences child3; local
697 child3 = pref.node("mock4/mock5/mock6");
703 child3.removeNode();
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 204 // MockAbstractPreferences child3 = new MockAbstractPreferences(pref,
205 // "child3");
212 pref.node("child3");
530 grandchild = pref.node("child3/grandchild");
533 Preferences child3 = child; local
535 if (childs[i].name().equals("child3")) {
536 child3 = childs[i];
540 assertSame(child3, grandchild.parent());
805 // Preferences child3 = null;
866 // child3 = pref.node("mock4/mock5/mock6")
    [all...]

Completed in 1492 milliseconds