HomeSort by relevance Sort by last modified time
    Searched defs:cursorLoader (Results 1 - 8 of 8) sorted by null

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CursorLoaderTest.java 5 import android.support.v4.content.CursorLoader;
22 CursorLoader cursorLoader = new CursorLoader(new Activity(),
29 assertThat(cursorLoader.getUri(), equalTo(uri));
30 assertThat(cursorLoader.getProjection(), equalTo(projection));
31 assertThat(cursorLoader.getSelection(), equalTo(selection));
32 assertThat(cursorLoader.getSelectionArgs(), equalTo(selectionArgs));
33 assertThat(cursorLoader.getSortOrder(), equalTo(sortOrder));
43 CursorLoader cursorLoader = new CursorLoader(new Activity())
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
ViewNumbersToImportFragment.java 21 import android.content.CursorLoader;
92 final CursorLoader cursorLoader =
93 new CursorLoader(
100 return cursorLoader;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
BlockedParticipantsData.java 70 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
71 Assert.isTrue(isBound(cursorLoader.getBindingId()));
78 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
79 Assert.isTrue(isBound(cursorLoader.getBindingId()));
ContactPickerData.java 95 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
96 if (isBound(cursorLoader.getBindingId())) {
133 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
134 if (isBound(cursorLoader.getBindingId())) {
MediaPickerData.java 84 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
85 if (isBound(cursorLoader.getBindingId())) {
106 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
107 if (isBound(cursorLoader.getBindingId())) {
PeopleAndOptionsData.java 103 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
104 if (isBound(cursorLoader.getBindingId())) {
131 final BoundCursorLoader cursorLoader = (BoundCursorLoader) loader;
132 if (isBound(cursorLoader.getBindingId())) {
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/
GalleryComposerFragment.java 34 import android.support.v4.content.CursorLoader;
73 private CursorLoader cursorLoader;
155 return cursorLoader = new GalleryCursorLoader(getContext());
280 public CursorLoader getCursorLoader() {
281 return cursorLoader;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MailAppProvider.java 25 import android.content.CursorLoader;
89 private final Map<Uri, CursorLoader> mCursorLoaderMap = Maps.newHashMap();
91 * When there is more than one {@link CursorLoader} we are considered finished only when all
94 private final Map<CursorLoader, Boolean> mAccountsLoaded = Maps.newHashMap();
186 for (CursorLoader loader : mCursorLoaderMap.values()) {
279 final CursorLoader accountsCursorLoader = new CursorLoader(getContext(), accountsQueryUri,
287 final CursorLoader oldLoader = mCursorLoaderMap.get(accountsQueryUri);
446 final CursorLoader cursorLoader = (CursorLoader)loader
    [all...]

Completed in 368 milliseconds