HomeSort by relevance Sort by last modified time
    Searched refs:childIndex (Results 1 - 21 of 21) sorted by null

  /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...]
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListTester.java 102 for (int childIndex = 0; childIndex < childrenCount; childIndex++) {
105 menuListener.expectChildContextMenu(groupIndex, childIndex);
179 for (int childIndex = 0; childIndex < childrenCount; childIndex++) {
180 int expectedFlatPosition = headerCount + groupIndex + 1 + childIndex;
181 long childPos = ExpandableListView.getPackedPositionForChild(groupIndex, childIndex);
233 for (int childIndex = 0; childIndex < childrenCount; childIndex++)
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 157 for (var childIndex = 0; childIndex < childCount; ++childIndex)
158 children[childIndex]._recalculateSiblings(childIndex);
treeoutline.js 139 TreeOutline._removeChildAtIndex = function(childIndex)
141 if (childIndex < 0 || childIndex >= this.children.length)
142 throw("childIndex out of range");
144 var child = this.children[childIndex];
145 this.children.splice(childIndex, 1);
179 var childIndex = this.children.indexOf(child);
180 if (childIndex === -1)
183 TreeOutline._removeChildAtIndex.call(this, childIndex);
  /frameworks/base/core/java/android/widget/
TableRow.java 181 int measureNullChild(int childIndex) {
182 return mConstrainedColumnWidths[childIndex];
189 void measureChildBeforeLayout(View child, int childIndex,
201 columnWidth += constrainedColumnWidths[childIndex + i];
243 super.measureChildBeforeLayout(child, childIndex, widthMeasureSpec,
ViewAnimator.java 135 * @param childIndex The index of the child to be shown.
137 void showOnly(int childIndex) {
142 if (i == childIndex) {
GridView.java     [all...]
TableLayout.java 447 void measureChildBeforeLayout(View child, int childIndex,
456 super.measureChildBeforeLayout(child, childIndex,
ExpandableListView.java 386 void drawDivider(Canvas canvas, Rect bounds, int childIndex) {
387 int flatListPosition = childIndex + mFirstPosition;
    [all...]
LinearLayout.java     [all...]
ListView.java     [all...]
AbsListView.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 137 def childIndex = -1;
139 childIndex++;
175 data.index = childIndex;
  /external/webkit/WebKit/chromium/src/js/
HeapProfilerPanel.js 627 for (var childIndex = 0; childIndex < childCount; ++childIndex)
628 this.children[childIndex]._recalculateSiblings(childIndex);
    [all...]
  /external/webkit/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();
  /cts/tests/src/android/widget/cts/util/
ListScenario.java 568 * @param childIndex The index into the viewgroup children (i.e the children that are
572 public void requestRectangleOnScreen(int childIndex, final Rect rect) {
573 final View child = getListView().getChildAt(childIndex);
  /frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java 570 * @param childIndex The index into the viewgroup children (i.e the children that are
574 public void requestRectangleOnScreen(int childIndex, final Rect rect) {
575 final View child = getListView().getChildAt(childIndex);
  /frameworks/base/libs/ui/
InputReader.cpp     [all...]
  /external/webkit/WebCore/css/
CSSStyleSelector.cpp 252 size_t childIndex = 0; \
257 if (childIndex <= list->size()) \
259 mapAnimation##Prop(list->animation(childIndex), valueList->itemWithoutBoundsCheck(i)); \
260 ++childIndex; \
265 mapAnimation##Prop(list->animation(childIndex), value); \
266 childIndex = 1; \
268 for ( ; childIndex < list->size(); ++childIndex) { \
270 list->animation(childIndex)->clear##Prop(); \
302 size_t childIndex = 0;
    [all...]
  /external/webkit/WebCore/dom/
Node.cpp 320 if (ch == NoChange && s1->childIndex() != s2->childIndex())
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.h     [all...]

Completed in 502 milliseconds