Home | History | Annotate | Download | only in data

Lines Matching defs:mCurrent

65     private ArrayList<Deletion> mCurrent = new ArrayList<Deletion>();
85 return mBaseSet.getMediaItemCount() - mCurrent.size();
117 int n = mCurrent.size();
122 Deletion d = mCurrent.get(i);
128 Deletion d = mCurrent.get(j);
137 Deletion d = mCurrent.get(m);
144 // We apply the pending requests in the mRequests to construct mCurrent in reload().
156 // Add the path into mCurrent if there is no duplicate.
157 int n = mCurrent.size();
160 if (mCurrent.get(j).path == r.path) break;
163 mCurrent.add(new Deletion(r.path, r.indexHint));
168 // Remove the path from mCurrent.
169 int n = mCurrent.size();
171 if (mCurrent.get(j).path == r.path) {
172 mCurrent.remove(j);
179 mCurrent.clear();
187 if (!mCurrent.isEmpty()) {
188 // See if the elements in mCurrent can be found in the MediaSet. We
191 int minIndex = mCurrent.get(0).index;
193 for (int i = 1; i < mCurrent.size(); i++) {
194 Deletion d = mCurrent.get(i);
208 // Find the matching path in mCurrent, if found move it to result
209 for (int j = 0; j < mCurrent.size(); j++) {
210 Deletion d = mCurrent.get(j);
214 mCurrent.remove(j);
219 mCurrent = result;
254 return mCurrent.size();