Lines Matching defs:end

2629         int end;
2634 end = count;
2638 end = -1;
2641 for (int i = index; i != end; i += increment) {
3236 final Runnable end = new Runnable() {
3241 post(end);
3314 // add next child (in child order) to end of list
3334 final Runnable end = new Runnable() {
3339 post(end);
3882 * If index is negative, it means put it at the end of the list.
3897 * If index is negative, it means put it at the end of the list.
4060 final int end = Math.min(childrenCount, start + count);
4062 if (start == end) {
4066 if (end == childrenCount) {
4067 for (int i = start; i < end; i++) {
4072 for (int i = start; i < end; i++) {
4078 System.arraycopy(children, end, children, start, childrenCount - end);
4080 for (int i = childrenCount - (end - start); i < childrenCount; i++) {
4085 mChildrenCount -= (end - start);
4290 final int end = start + count;
4292 for (int i = start; i < end; i++) {
6581 * The end margin in pixels of the child. Margin values should be positive.
6589 * The default start and end margin.
6796 * @param end the right margin size
6806 public void setMarginsRelative(int start, int top, int end, int bottom) {
6809 endMargin = end;
6848 * Sets the relative end margin. Margin values should be positive.
6850 * @param end the end margin size
6854 public void setMarginEnd(int end) {
6855 endMargin = end;
6860 * Returns the end margin in pixels.
6864 * @return the end margin in pixels.
6941 // if left or right margins are not defined and if we have some start or end margin
6942 // defined then use those start and end margins.
6952 // We have some relative margins (either the start one or the end one or both). So use
6954 // or end margin is not defined, just set it to default "0".
7107 * to end based on how they are laid out and the layout direction.