Home | History | Annotate | Download | only in widget

Lines Matching refs:mObjects

52     private List<T> mObjects;
55 * Lock used to modify the content of {@link #mObjects}. Any write operation
83 * {@link #mObjects} is modified.
89 // A copy of the original mObjects array, initialized from and then used instead as soon as
90 // the mFilter ArrayFilter is used. mObjects will then only contain the filtered values.
179 mObjects.add(object);
195 mObjects.addAll(collection);
211 Collections.addAll(mObjects, items);
228 mObjects.add(index, object);
244 mObjects.remove(object);
258 mObjects.clear();
275 Collections.sort(mObjects, comparator);
312 mObjects = objects;
330 return mObjects.size();
337 return mObjects.get(position);
348 return mObjects.indexOf(item);
456 mOriginalValues = new ArrayList<T>(mObjects);
509 mObjects = (List<T>) results.values;