Home | History | Annotate | Download | only in providers

Lines Matching defs:mUris

46     private final List<Uri> mUris = new ArrayList<Uri>();
91 final List<Uri> uriCopy = Collections.unmodifiableList(Lists.newArrayList(mUris));
99 if (!mUris.contains(fresh)) {
122 * Locates the next empty position in {@link #mUris} and inserts the URI there, returning the
129 for (int size = mUris.size(), i = 0; i < size; i++) {
130 uri = mUris.get(i);
140 location = mUris.size();
141 mUris.add(location, newElement);
143 mUris.set(location, newElement);
149 * Returns the loader ID for a position inside the {@link #mUris} table.
150 * @param position position in the {@link #mUris} list
167 final int id = mUris.indexOf(uri);
176 mUris.set(id, null);