Home | History | Annotate | Download | only in statusbar

Lines Matching refs:xPos

50         int xPos = getPaddingLeft();
70 if (xPos + childWidth > width) {
71 xPos = getPaddingLeft();
74 xPos += childWidth + layoutParams.mHorizontalSpacing;
110 int xPos = isRTL()
126 ? xPos - getPaddingLeft() - currentChildWidth < 0
127 : xPos + currentChildWidth > fullRowWidth;
131 layoutChildrenOnRow(rowStartIdx, i, fullRowWidth, xPos, yPos,
134 xPos = isRTL()
141 xPos = isRTL()
142 ? xPos - currentChildWidth - lp.mHorizontalSpacing
143 : xPos + currentChildWidth + lp.mHorizontalSpacing;
150 layoutChildrenOnRow(rowStartIdx, childCount, fullRowWidth, xPos, yPos,
161 private void layoutChildrenOnRow(int startIndex, int endIndex, int fullRowWidth, int xPos,
164 xPos = getPaddingLeft() + fullRowWidth - xPos + lastHorizontalSpacing;
172 xPos = fullRowWidth - xPos - getPaddingRight() - currentChildWidth
177 xPos,
179 xPos + currentChildWidth,
186 xPos -= nextChildWidth + lp.mHorizontalSpacing;
188 xPos += currentChildWidth + lp.mHorizontalSpacing;