OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cursorLoader
(Results
1 - 2
of
2
) sorted by null
/external/robolectric/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/UnifiedEmail/src/com/android/mail/providers/
MailAppProvider.java
25
import android.content.
CursorLoader
;
84
private final Map<Uri,
CursorLoader
> mCursorLoaderMap = Maps.newHashMap();
165
for (
CursorLoader
loader : mCursorLoaderMap.values()) {
253
final
CursorLoader
accountsCursorLoader = new
CursorLoader
(getContext(), accountsQueryUri,
261
final
CursorLoader
oldLoader = mCursorLoaderMap.get(accountsQueryUri);
419
final
CursorLoader
cursorLoader
= (
CursorLoader
)loader;
420
final Uri accountsQueryUri =
cursorLoader
.getUri()
[
all
...]
Completed in 420 milliseconds