Searched defs:childrenLeft (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java1319 * @param childrenLeft Left edge where children should be positioned
1324 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
1334 setupChild(child, position, y, flow, childrenLeft, selected, true, where);
1344 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where);
1358 * @param childrenLeft Left edge where children should be positioned
1365 private void setupChild(View child, int position, int y, boolean flow, int childrenLeft, argument
1432 childLeft = childrenLeft;
1435 childLeft = childrenLeft + ((mColumnWidth - w) / 2);
1438 childLeft = childrenLeft + mColumnWidth - w;
1441 childLeft = childrenLeft;
[all...]
H A DListView.java1809 * @param childrenLeft Left edge where children should be positioned
1813 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
1824 setupChild(child, position, y, flow, childrenLeft, selected, true);
1834 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]);
1848 * @param childrenLeft Left edge where children should be positioned
1853 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument
1919 final int childRight = childrenLeft + w;
1921 child.layout(childrenLeft, childTop, childRight, childBottom);
1923 child.offsetLeftAndRight(childrenLeft - child.getLeft());

Completed in 41 milliseconds