HomeSort by relevance Sort by last modified time
    Searched defs:cursorLoader (Results 1 - 11 of 11) 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...]
  /external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
ShadowCursorLoaderTest.java 6 import android.support.v4.content.CursorLoader;
21 CursorLoader cursorLoader = new CursorLoader(RuntimeEnvironment.application,
28 assertThat(cursorLoader.getUri()).isEqualTo(uri);
29 assertThat(cursorLoader.getProjection()).isEqualTo(projection);
30 assertThat(cursorLoader.getSelection()).isEqualTo(selection);
31 assertThat(cursorLoader.getSelectionArgs()).isEqualTo(selectionArgs);
32 assertThat(cursorLoader.getSortOrder()).isEqualTo(sortOrder);
42 CursorLoader cursorLoader = new CursorLoader(RuntimeEnvironment.application)
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
InMemoryPhoneBook.java 8 import android.support.v4.content.CursorLoader;
59 CursorLoader cursorLoader = createPhoneBookCursorLoader();
60 cursorLoader.registerListener(0, this);
61 cursorLoader.startLoading();
111 private CursorLoader createPhoneBookCursorLoader() {
112 return new CursorLoader(mContext,
  /packages/apps/Dialer/java/com/android/dialer/app/filterednumber/
ViewNumbersToImportFragment.java 21 import android.content.CursorLoader;
93 final CursorLoader cursorLoader =
94 new CursorLoader(
101 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 33 import android.support.v4.content.CursorLoader;
68 private CursorLoader cursorLoader;
146 return cursorLoader = new GalleryCursorLoader(getContext());
271 public CursorLoader getCursorLoader() {
272 return cursorLoader;
  /packages/apps/Dialer/java/com/android/dialer/contactsfragment/
ContactsFragment.java 238 ContactsCursorLoader cursorLoader = new ContactsCursorLoader(getContext(), hasPhoneNumbers);
239 cursorLoader.setQuery(query);
240 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 809 milliseconds