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

12

  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 348 * Figure out if child2 is after child1 in document order.
356 * @param parent Must be the parent of both child1 and child2.
357 * @param child1 Must be the child of parent and not equal to child2.
358 * @param child2 Must be the child of parent and not equal to child1.
362 Node child2)
367 short child2type = child2.getNodeType();
405 else if (child2 == child || isNodeTheSame(child2, child))
449 else if (child2 == child || isNodeTheSame(child2, child)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TabHostTest.java 295 TextView child2 = (TextView) tabHost.getTabContentView().getChildAt(2); local
297 assertEquals(TabHostStubActivity.INITIAL_VIEW_TEXT, child2.getText().toString());
311 child2 = (TextView) tabHost.getTabContentView().getChildAt(2);
313 assertEquals(TabHostStubActivity.INITIAL_VIEW_TEXT, child2.getText().toString());
LayoutDirectionTest.java 112 ViewGroup child2 = (ViewGroup) getActivity().findViewById(child2Id); local
113 assertEquals(child2ResDir, child2.getLayoutDirection());
GridViewTest.java 529 View child2 = mGridView.getChildAt(2);
531 assertEquals(child0.getLeft(), child2.getLeft());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeWizard.cs 442 TreePattern child2 = (TreePattern)tpattern.GetChild(i);
443 if (!ParseCore(child1, child2, labels)) {
454 * (root child1 ... child2).
521 object child2 = adaptor.GetChild(t2, i);
522 if (!EqualsCore(child1, child2, adaptor)) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeWizard.cs 508 TreePattern child2 = (TreePattern)tpattern.GetChild( i );
509 if ( !ParseCore( child1, child2, labels ) )
521 * (root child1 ... child2).
597 object child2 = adaptor.GetChild( t2, i );
598 if ( !EqualsCore( child1, child2, adaptor ) )
  /external/chromium/chrome/browser/profiles/
profile_dependency_manager_unittest.cc 86 TestService child2("child2", shutdown_order(), manager());
88 DependOn(&child2, &parent);
93 EXPECT_STREQ("child2", (*shutdown_order())[0].c_str());
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.cpp 319 ASSERT(node.child2 == NoNode && node.child3 == NoNode);
324 NodeIndex child2 = node.child2; local
325 if (child2 == NoNode) {
329 use(child2);
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...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 353 (root child1 ... child2).
574 child2 = tpattern.getChild(i)
575 if not self._parse(child1, child2, labels):
615 child2 = adaptor.getChild(t2, i)
616 if not self._equals(child1, child2, adaptor):
  /cts/tests/tests/view/src/android/view/animation/cts/
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...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 176 .publicChildSpi("child2");
202 // MockAbstractPreferences child2 = new MockAbstractPreferences(pref,
203 // "child2");
211 pref.node("child2");
520 Preferences child2 = pref.node("child2"); local
521 assertSame(child2, ((MockAbstractPreferences) pref)
522 .publicChildSpi("child2"));
578 assertFalse(pref.nodeExists("child2/grandchild"));
579 pref.node("child2/grandchild")
963 MockAbstractPreferences child2 = new MockAbstractPreferences(p, local
1002 MockAbstractPreferences child2 = new MockAbstractPreferences(p, local
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable_unittest.cc 928 MutableEntry child2(&wtrans, CREATE, parent2.Get(ID), "Pete");
929 ASSERT_TRUE(child2.good());
930 child2.Put(IS_DIR, true);
931 child2.Put(ID, id_factory.NewServerId());
932 child2.Put(BASE_VERSION, 1);
933 MutableEntry grandchild2(&wtrans, CREATE, child2.Get(ID), "Pete");
942 // child child2
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.cpp 2258 Node* child2 = chain2[--index2]; local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_unittest.cc     [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 809 Logger child2 = Logger.getLogger("testGetParent_NormalNamed.a.b.c"); local
810 assertSame(child2.getParent(), log);
    [all...]
  /prebuilts/devtools/tools/lib/
sdk-common.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /external/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 

Completed in 1399 milliseconds

12