HomeSort by relevance Sort by last modified time
    Searched full:child2 (Results 76 - 100 of 148) sorted by null

1 2 34 5 6

  /cts/tests/tests/widget/src/android/widget/cts/
LayoutDirectionTest.java 112 ViewGroup child2 = (ViewGroup) getActivity().findViewById(child2Id); local
113 assertEquals(child2ResDir, child2.getLayoutDirection());
LinearLayoutTest.java 433 final View child2 = new View(mActivity); local
434 child2.setBackgroundColor(Color.RED);
436 child2.setLayoutParams(childParams);
445 parent.addView(child2);
447 checkBounds(viewGroup, child2, countDownLatch1,
457 checkBounds(viewGroup, child2, countDownLatch2, 0, 0, childWidth, childHeight);
467 checkBounds(viewGroup, child2, countDownLatch3,
CursorTreeAdapterTest.java 86 mDatabase.execSQL("CREATE TABLE child2 (_id INTEGER PRIMARY KEY, value TEXT);");
87 mDatabase.execSQL("INSERT INTO child2 (value) VALUES ('" + CHILD_VALUE_THREE + "');");
92 return mDatabase.query("child2", VALUE_PROJECTION, null, null, null, null, null);
GridViewTest.java 553 View child2 = mGridView.getChildAt(2);
555 assertEquals(child0.getLeft(), child2.getLeft());
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageNodeImplTest.java 93 ICoverageNode child2 = new CoverageNodeImpl(ElementType.GROUP, "sample") { local
98 parent.increment(Arrays.asList(child1, child2));
  /packages/experimental/MultiPackageApk/
AndroidManifest.xml 58 <!-- In foo.bar.multi.parent up to API 23. From API 24 in foo.bar.multi.child2. -->
98 package="foo.bar.multi.child2">
  /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/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 100 final ObjectAnimator child2 = (ObjectAnimator) set.getChildAnimations().get(1); local
105 for (ObjectAnimator animator : new ObjectAnimator[]{child1, child2}) {
  /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/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) ) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.m 553 ANTLRCommonTree *child2 = (ANTLRCommonTree *)[tpattern getChild:i];
554 if ( ![self _parse:child1 Pattern:child2 Map:labels] ) {
564 * (root child1 ... child2).
625 ANTLRCommonTree * child2 = [anAdaptor getChild:t2 At:i];
626 if ( ![self _equals:child1 O2:child2 Adaptor:anAdaptor] ) {
  /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/cts/
ViewGroupTest.java 1160 MockViewGroup child2 = new MockViewGroup(mContext); local
1240 MockViewGroup child2 = new MockViewGroup(mContext); local
1275 MockViewGroup child2 = new MockViewGroup(mContext); local
1345 MockView child2 = new MockView(mContext); local
    [all...]
  /external/libxml2/doc/examples/
Makefile.am 132 $(CHECKER) ./xpath1 test3.xml '//child2' > xpath1.tmp && diff xpath1.tmp $(srcdir)/xpath1.res
xpath1.c 7 * test: xpath1 test3.xml '//child2' > xpath1.tmp && diff xpath1.tmp $(srcdir)/xpath1.res
  /external/tinyxml/docs/
classTiXmlHandle.html 90 TiXmlElement* child2 = child-&gt;NextSiblingElement( "Child" );
91 if ( child2 )
97 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).Element();
98 if ( child2 )
index.html 126 TiXmlElement* child2 = child-&gt;NextSiblingElement( "Child" );
127 if ( child2 )
133 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).Element();
134 if ( child2 )
  /external/tinyxml/
readme.txt 285 TiXmlElement* child2 = child->NextSiblingElement( "Child" );
286 if ( child2 )
296 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).Element();
297 if ( child2 )
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 140 pref.node("child2");
404 assertFalse(pref.nodeExists("child2/grandchild"));
405 pref.node("child2/grandchild");
406 assertTrue(pref.nodeExists("child2/grandchild"));
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 70 * <p>The <code>/root/child1/child2</code> pattern will for instance match all nodes named
71 * <code>child2</code> which are children of a node named <code>child1</code> which are themselves
  /external/testng/src/test/resources/
testng.yaml 152 - test.triangle.Child2
  /external/tinyxml2/
tinyxml2.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 235 TestDragElement.create("a.w.B").id("@+id/child2").set("uri", "childprop2a",
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h     [all...]

Completed in 1422 milliseconds

1 2 34 5 6