Lines Matching defs:start

162                 final int start, end, inBetweenOffset;
164 start = from;
168 start = to;
173 if (holder == null || holder.mPosition < start || holder.mPosition > end) {
848 final int start = nextInt(random, count - 1);
849 final int layoutCount = Math.max(1, nextInt(random, count - start));
850 setupBasic(count, start, layoutCount);
940 final int start = mViewHolders.get(0).getLayoutPosition();
943 start + i, mViewHolders.get(i).getLayoutPosition());
964 AdapterHelper.UpdateOp op(int cmd, int start, int count) {
965 return new AdapterHelper.UpdateOp(cmd, start, count, null);
968 AdapterHelper.UpdateOp op(int cmd, int start, int count, Object payload) {
969 return new AdapterHelper.UpdateOp(cmd, start, count, payload);
972 AdapterHelper.UpdateOp addOp(int start, int count) {
973 return op(AdapterHelper.UpdateOp.ADD, start, count);
976 AdapterHelper.UpdateOp rmOp(int start, int count) {
977 return op(AdapterHelper.UpdateOp.REMOVE, start, count);
980 AdapterHelper.UpdateOp upOp(int start, int count, Object payload) {
981 return op(AdapterHelper.UpdateOp.UPDATE, start, count, payload);
984 void add(int start, int count) {
986 log("add(" + start + "," + count + ");");
988 mTestAdapter.add(start, count);
1007 void rm(int start, int count) {
1009 log("rm(" + start + "," + count + ");");
1011 for (int i = start; i < start + count; i++) {
1017 mTestAdapter.remove(start, count);
1020 void up(int start, int count) {
1022 log("up(" + start + "," + count + ");");
1024 mTestAdapter.update(start, count);
1027 void up(int start, int count, Object payload) {
1029 log("up(" + start + "," + count + "," + payload + ");");
1031 mTestAdapter.update(start, count, payload);