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

  /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 161 * @param child3
164 private void assertChildrenDelay(Animation child1, Animation child2, Animation child3) {
168 long offsetTime3 = child3.getStartOffset();
177 // child1 has started animation, child2 and child3 haven't started
180 child3.getTransformation(startTime + 500, transformation3);
185 // child1 has finished, child2 and child3 haven't started
188 child3.getTransformation(startTime + 1200, transformation3);
193 // child1 has finished, child2 has started animation, child3 hasn't started.
196 child3.getTransformation(startTime + 2000, transformation3);
201 // child1 and child2 have finished, child3 hasn't starte
    [all...]
LayoutAnimationControllerTest.java 114 // child1 has started animation, child2 and child3 haven't started
122 // child2 has started animation, child1 has finished and child3 hasn't started
130 // child3 has started animation, child1, child2 have finished
155 // child3 has started animation, child1 and child2 haven't started
163 // child2 has started animation, child3 has finished and child1 hasn't started
171 // child1 has started animation, child2 and child3 has finished
218 // child1 has started animation, child2 and child3 haven't started
226 // child1 has finished, child2 and child3 haven't started
234 // child1 has finished, child2 has started animation, child3 hasn't started.
242 // child1 and child2 have finished, child3 hasn't starte
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 520 View child3 = new ListView(mContext); local
521 tableLayout.addView(child3);
524 assertSame(child3, tableLayout.getChildAt(2));
564 View child3 = new ListView(mContext); local
565 tableLayout.addView(child3, -1);
568 assertSame(child3, tableLayout.getChildAt(2));
666 View child3 = new ListView(mContext); local
667 assertNull(child3.getLayoutParams());
668 tableLayout.addView(child3, -1, new ListView.LayoutParams(300, 400));
671 assertSame(child3, tableLayout.getChildAt(2))
    [all...]
  /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 254 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
255 root.setChildren(Arrays.asList(child1, child2, child3));
310 ViewInfo child3 = new ViewInfo("AbsoluteLayout", null, 10, 40, 50, 15); local
311 root.setChildren(Arrays.asList(child1, child2, child3));
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 125 pref.node("child3");
692 Preferences child3; local
701 child3 = pref.node("mock4/mock5/mock6");
706 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 1061 milliseconds