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

1 2

  /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/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;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
LinearLayoutICS.java 78 final int childIndex = indexOfChild(child);
85 if (hasDividerBeforeChildAt(childIndex)) {
87 } else if (childIndex == count - 1 && hasDividerBeforeChildAt(count)) {
91 if (hasDividerBeforeChildAt(childIndex)) {
93 } else if (childIndex == count - 1 && hasDividerBeforeChildAt(count)) {
162 * @param childIndex Index of child to check for preceding divider
163 * @return true if there should be a divider before the child at childIndex
166 protected boolean hasDividerBeforeChildAt(int childIndex) {
167 if (childIndex == 0) {
169 } else if (childIndex == getChildCount())
    [all...]
  /external/skia/src/core/
SkRTree.cpp 136 int childIndex = this->chooseSubtree(root, branch);
137 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level);
138 root->child(childIndex)->fBounds = this->computeBounds(
139 root->child(childIndex)->fChild.subtree);
  /external/webkit/Source/WebKit/win/
AccessibleBase.cpp 701 size_t childIndex = static_cast<size_t>(vChild.lVal - 1);
703 if (childIndex >= m_object->children().size())
705 childObj = m_object->children().at(childIndex).get();
  /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/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);
108 addItemView(itemView, childIndex);
110 childIndex++;
116 while (childIndex < parent.getChildCount()) {
117 if (!filterLeftoverView(parent, childIndex)) {
118 childIndex++;
127 * @param childIndex Index within the parent to insert at
129 protected void addItemView(View itemView, int childIndex) {
    [all...]
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 356 private void siftUp(int childIndex) {
357 E target = elements[childIndex];
359 while (childIndex > 0) {
360 parentIndex = (childIndex - 1) / 2;
365 elements[childIndex] = parent;
366 childIndex = parentIndex;
368 elements[childIndex] = target;
373 int childIndex;
374 while ((childIndex = rootIndex * 2 + 1) < size) {
375 if (childIndex + 1 < siz
    [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/webkit/Source/WebKit/android/nav/
WebView.cpp 698 int childIndex = 0;
699 while (LayerAndroid* child = layer->getChild(childIndex++))
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 597 * @param childIndex Index of child to check for preceding divider
598 * @return true if there should be a divider before the child at childIndex
601 protected boolean hasDividerBeforeChildAt(int childIndex) {
602 if (childIndex == 0) {
604 } else if (childIndex == getChildCount()) {
608 for (int i = childIndex - 1; i >= 0; i--) {
    [all...]
AbsListView.java     [all...]
  /frameworks/base/services/input/
InputReader.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h     [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 872 milliseconds

1 2