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/src/com/android/dialer/filterednumber/
ViewNumbersToImportFragment.java 21 import android.content.CursorLoader;
97 final CursorLoader cursorLoader = new CursorLoader(
104 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/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
PhoneBook.java 25 import android.content.CursorLoader;
177 CursorLoader cursorLoader = new CursorLoader(mContext);
178 cursorLoader.setUri(Uri.withAppendedPath(
181 cursorLoader.setProjection(CONTACT_ID_PROJECTION);
182 cursorLoader.registerListener(0, new LoadCompleteListener(this, number, listener));
183 cursorLoader.startLoading();
  /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 166 milliseconds