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

12 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 53 assertEquals(-1, t.childIndex);
63 assertEquals(-1, root_0.childIndex);
64 assertEquals(0, t.childIndex);
65 assertEquals(1, u.childIndex);
76 assertEquals(-1, r0.childIndex);
88 assertEquals(-1, r0.childIndex);
90 assertEquals(0, c0.childIndex);
92 assertEquals(1, c1.childIndex);
94 assertEquals(2, c2.childIndex);
112 assertEquals(-1, root.childIndex);
    [all...]
TestTreeWizard.java 193 public void visit(Object t, Object parent, int childIndex, Map labels) {
196 "["+childIndex+"]");
210 public void visit(Object t, Object parent, int childIndex, Map labels) {
213 "["+childIndex+"]");
242 public void visit(Object t, Object parent, int childIndex, Map labels) {
245 "["+childIndex+"]");
259 public void visit(Object t, Object parent, int childIndex, Map labels) {
262 "["+childIndex+"]"+labels.get("a")+"&"+labels.get("b"));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 100 c.childIndex = children.length-1;
117 childTree.childIndex = children.length-1;
141 t.childIndex = i;
157 * children to set their childindex; could be slow.
185 child.childIndex= i;
227 child.childIndex = c;
240 if ( i!=this.childIndex ) {
241 throw new Error("child indexes don't match; expected "+i+" found "+this.childIndex);
251 public function get childIndex():int {
255 public function set childIndex(index:int):void
    [all...]
CommonTree.as 136 public override function get childIndex():int {
148 public override function set childIndex(index:int):void {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 63 int childIndex = -1;
97 public override int ChildIndex {
99 return childIndex;
102 childIndex = value;
TreeWizard.cs 70 void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels);
74 public virtual void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) {
259 public void Visit(object t, object parent, int childIndex, IDictionary<string, object> labels) {
316 protected virtual void VisitCore(object t, object parent, int childIndex, int ttype, IContextVisitor visitor) {
321 visitor.Visit(t, parent, childIndex, null);
343 public void Visit(object t, object parent, int childIndex, IDictionary<string, object> unusedlabels) {
347 _visitor.Visit(t, parent, childIndex, _labels);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 63 int childIndex = -1;
107 public override int ChildIndex
111 return childIndex;
116 childIndex = value;
TreeWizard.cs 73 void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels );
78 public virtual void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels )
296 public void Visit( object t, object parent, int childIndex, IDictionary<string, object> labels )
362 protected virtual void VisitCore( object t, object parent, int childIndex, int ttype, IContextVisitor visitor )
370 visitor.Visit( t, parent, childIndex, null );
395 public void Visit( object t, object parent, int childIndex, IDictionary<string, object> unusedlabels )
401 _visitor.Visit( t, parent, childIndex, _labels );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTree.java 51 public int childIndex = -1;
158 return childIndex;
170 this.childIndex = index;
TreeWizard.java 59 public void visit(Object t, Object parent, int childIndex, Map labels);
63 public void visit(Object t, Object parent, int childIndex, Map labels) {
227 public void visit(Object t, Object parent, int childIndex, Map labels) {
254 protected void _visit(Object t, Object parent, int childIndex, int ttype, ContextVisitor visitor) {
259 visitor.visit(t, parent, childIndex, null);
289 public void visit(Object t, Object parent, int childIndex, Map unusedlabels) {
293 visitor.visit(t, parent, childIndex, labels);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 15 this.childIndex = -1;
104 return this.childIndex;
116 this.childIndex = index;
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorPadViewPager.java 123 final int childIndex = getChildDrawingOrder(childCount, i);
124 final View child = getChildAt(childIndex);
128 shouldIntercept = (childIndex != getCurrentItem());
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontree.h 74 ANTLR3_INT32 childIndex;
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btCompoundShape.java 124 public void updateChildTransform(int childIndex, Matrix4 newChildTransform, boolean shouldRecalculateLocalAabb) {
125 CollisionJNI.btCompoundShape_updateChildTransform__SWIG_0(swigCPtr, this, childIndex, newChildTransform, shouldRecalculateLocalAabb);
128 public void updateChildTransform(int childIndex, Matrix4 newChildTransform) {
129 CollisionJNI.btCompoundShape_updateChildTransform__SWIG_1(swigCPtr, this, childIndex, newChildTransform);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTree.h 36 NSInteger childIndex;
83 @property (assign, getter=getChildIndex, setter=setChildIndex:) NSInteger childIndex;
90 @property (assign) NSInteger childIndex;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
AbstractMediaItemPresenter.java 528 int childIndex = calculateMediaItemNumberFlipperIndex(vh);
529 if (childIndex != -1 && vh.mMediaItemNumberViewFlipper.getDisplayedChild() != childIndex) {
530 vh.mMediaItemNumberViewFlipper.setDisplayedChild(childIndex);
535 int childIndex = -1;
539 childIndex = (vh.mMediaItemNumberView == null) ? -1 :
543 childIndex = (vh.mMediaItemPausedView == null) ? -1 :
547 childIndex = (vh.mMediaItemPlayingView == null) ? -1 :
550 return childIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTree.h 36 NSInteger childIndex;
43 @property (assign, getter=getChildIndex, setter=setChildIndex) NSInteger childIndex;
ANTLRTreeWizard.h 42 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
56 - (void) visit:(id<ANTLRTree>)t Parent:(id<ANTLRTree>)parent ChildIndex:(NSInteger)childIndex Map:(ANTLRMap *)labels;
121 ChildIndex:(NSInteger)childIndex
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTree.h 36 NSInteger childIndex;
43 @property (assign, getter=getChildIndex, setter=setChildIndex) NSInteger childIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTree.h 36 NSInteger childIndex;
43 @property (assign, getter=getChildIndex, setter=setChildIndex) NSInteger childIndex;
  /frameworks/base/core/java/com/android/internal/app/
MicroAlertController.java 78 final int childIndex = scrollParent.indexOfChild(mScrollView);
79 scrollParent.removeViewAt(childIndex);
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 146 * @param childIndex The index of the child to be shown.
150 void showOnly(int childIndex, boolean animate) {
154 if (i == childIndex) {
174 * @param childIndex The index of the child to be shown.
176 void showOnly(int childIndex) {
178 showOnly(childIndex, animate);
TableRow.java 182 int measureNullChild(int childIndex) {
183 return mConstrainedColumnWidths[childIndex];
190 void measureChildBeforeLayout(View child, int childIndex,
202 columnWidth += constrainedColumnWidths[childIndex + i];
246 super.measureChildBeforeLayout(child, childIndex, widthMeasureSpec,
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtreewizard.py 375 def visitor(node, parent, childIndex, labels):
389 def visitor(node, parent, childIndex, labels):
403 def visitor(node, parent, childIndex, labels):
417 def visitor(node, parent, childIndex, labels):
431 def visitor(node, parent, childIndex, labels):
432 elements.append('%s@%s[%d]' % (node, parent, childIndex))
445 def visitor(node, parent, childIndex, labels):
448 % (node, ['nil', parent][parent is not None], childIndex)
462 def visitor(node, parent, childIndex, labels):
478 def visitor(node, parent, childIndex, labels)
    [all...]
  /external/parameter-framework/upstream/parameter/
ElementHandle.cpp 121 for (size_t childIndex = 0; childIndex < nbChildren; ++childIndex) {
122 auto *child = static_cast<CConfigurableElement *>(mElement.getChild(childIndex));

Completed in 1550 milliseconds

12 3 4 5 6 7 8 9