Home | History | Annotate | Download | only in widget

Lines Matching refs:start

141         int start = 0;
143 int end = start + mCounts[i];
144 if (position >= start && position < end) {
145 return mAdapters[i].getItem(position - start);
147 start = end;
155 int start = 0;
157 int end = start + mCounts[i];
158 if (position >= start && position < end) {
159 return mAdapters[i].getItemId(position - start);
161 start = end;
176 int start = 0;
179 int end = start + mCounts[i];
180 if (position >= start && position < end) {
181 return viewTypeOffset + mAdapters[i].getItemViewType(position - start);
184 start = end;
192 int start = 0;
194 int end = start + mCounts[i];
195 if (position >= start && position < end) {
196 return mAdapters[i].getView(position - start, convertView, parent);
198 start = end;
213 int start = 0;
215 int end = start + mCounts[i];
216 if (position >= start && position < end) {
218 || mAdapters[i].isEnabled(position - start);
220 start = end;