Lines Matching defs:end

91      * Defines if layout should be calculated from end to start.
152 * @param reverseLayout When set to true, layouts from end to start.
336 * Calculates the view layout order. (e.g. from end to start or start to end)
362 * laid out at the end of the UI, second item is laid out before it etc.
460 // 3) fill towards end, stacking from top
499 // at the start. Otherwise, it should be at the end.
559 // fill towards end
567 // end could not consume all. add more items towards start
575 // fill towards end
593 // start could not consume all it should. add more items towards end
605 // because layout from end may be changed by scroll to position
693 + " towards start and " + scrapExtraEnd + " towards end");
740 * start or end that has a valid position (e.g. not removed).
855 // override layout from end values for consistency
1241 * Recycles views that went out of bounds after scrolling towards the end of the layout.
1299 Log.d(TAG, "Called recycle from end with a negative value. This might happen"
1552 * Convenience method to find the child closes to end. Caller should check it has enough
1555 * @return The child closes to end of the layout from user's perspective.
1580 * Convenience method to find the visible child closes to end. Caller should check if it has
1584 * @return The first visible child closest to end of the layout from user's perspective.
1600 * closest to the end of the layout.
1641 int start, int end, int itemCount) {
1647 final int diff = end > start ? 1 : -1;
1648 for (int i = start; i != end; i += diff) {
1753 final int end = mOrientationHelper.getEndAfterPadding();
1760 if (childStart < end && childEnd > start) {
1762 if (childStart >= start && childEnd <= end) {
2243 if (startMargin > 0) { // we have room to fix end as well