HomeSort by relevance Sort by last modified time
    Searched defs:childIndex (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/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/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;
  /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;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontree.h 74 ANTLR3_INT32 childIndex;
  /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;
  /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;
  /external/owasp/sanitizer/src/main/org/owasp/html/
Trie.java 99 int childIndex = 0;
104 childMap[childIndex] = lastCh;
105 children[childIndex++] = new Trie(
111 childMap[childIndex] = lastCh;
112 children[childIndex++] = new Trie(elements, depth + 1, childStart, end);
  /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;
  /external/skia/src/core/
SkRTree.cpp 134 int childIndex = this->chooseSubtree(root, branch);
135 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level);
136 root->child(childIndex)->fBounds = this->computeBounds(
137 root->child(childIndex)->fChild.subtree);
  /frameworks/base/core/java/com/android/internal/view/menu/
BaseMenuPresenter.java 85 int childIndex = 0;
92 if (shouldIncludeItem(childIndex, item)) {
93 final View convertView = parent.getChildAt(childIndex);
103 addItemView(itemView, childIndex);
105 childIndex++;
111 while (childIndex < parent.getChildCount()) {
112 if (!filterLeftoverView(parent, childIndex)) {
113 childIndex++;
122 * @param childIndex Index within the parent to insert at
124 protected void addItemView(View itemView, int childIndex) {
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 72 final int childIndex = row * mColumnCount + col;
74 if (childIndex >= childCount) {
78 View child = getChildAt(childIndex);
137 final int childIndex = row * mColumnCount + col;
139 if (childIndex >= childCount) {
143 View child = getChildAt(childIndex);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
BaseMenuPresenter.java 89 int childIndex = 0;
96 if (shouldIncludeItem(childIndex, item)) {
97 final View convertView = parent.getChildAt(childIndex);
107 addItemView(itemView, childIndex);
109 childIndex++;
115 while (childIndex < parent.getChildCount()) {
116 if (!filterLeftoverView(parent, childIndex)) {
117 childIndex++;
126 * @param childIndex Index within the parent to insert at
128 protected void addItemView(View itemView, int childIndex) {
    [all...]
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 360 private void siftUp(int childIndex) {
361 E target = elements[childIndex];
363 while (childIndex > 0) {
364 parentIndex = (childIndex - 1) / 2;
369 elements[childIndex] = parent;
370 childIndex = parentIndex;
372 elements[childIndex] = target;
377 int childIndex;
378 while ((childIndex = rootIndex * 2 + 1) < size) {
379 if (childIndex + 1 < siz
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRTree.cpp 141 int childIndex = this->chooseSubtree(root, branch);
142 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level);
143 root->child(childIndex)->fBounds = this->computeBounds(
144 root->child(childIndex)->fChild.subtree);
  /frameworks/base/core/java/android/view/
GhostView.java 333 int childIndex = customOrder ? parent.getChildDrawingOrder(childrenCount, i) : i;
335 ? parent.getChildAt(childIndex) : preorderedList.get(childIndex);
ViewGroup.java     [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 518 int childIndex = mDisplayListData->addChild(op);
522 chunk.endChildIndex = childIndex + 1;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 294 int childIndex = algorithmState.visibleChildren.indexOf(draggedView);
295 if (childIndex >= 0 && childIndex < algorithmState.visibleChildren.size() - 1) {
296 View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BreadCrumbView.java 244 int childIndex = 1;
251 getChildAt(childIndex).setVisibility(View.GONE);
252 childIndex++;
255 if (getChildAt(childIndex) != null) {
256 getChildAt(childIndex).setVisibility(View.GONE);
258 childIndex++;
265 while (childIndex < childCount) {
266 getChildAt(childIndex).setVisibility(View.VISIBLE);
267 childIndex++;
271 for (int i = childIndex; i < count ; i++)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGrid.cpp     [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 622 * @param childIndex Index of child to check for preceding divider
623 * @return true if there should be a divider before the child at childIndex
626 protected boolean hasDividerBeforeChildAt(int childIndex) {
627 if (childIndex == 0) {
629 } else if (childIndex == getChildCount()) {
633 for (int i = childIndex - 1; i >= 0; i--) {
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 594 final int childIndex = scrollParent.indexOfChild(mScrollView);
595 scrollParent.removeViewAt(childIndex);
596 scrollParent.addView(mListView, childIndex,
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 556 * @param childIndex Index of child to check for preceding divider
557 * @return true if there should be a divider before the child at childIndex
560 protected boolean hasDividerBeforeChildAt(int childIndex) {
561 if (childIndex == 0) {
563 } else if (childIndex == getChildCount()) {
567 for (int i = childIndex - 1; i >= 0; i--) {
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.cpp     [all...]

Completed in 948 milliseconds

1 2 3