HomeSort by relevance Sort by last modified time
    Searched refs:ContactStatusLoader (Results 1 - 4 of 4) sorted by null

  /packages/apps/Email/tests/src/com/android/email/activity/
ContactStatusLoaderTest.java 19 import com.android.email.activity.ContactStatusLoader.Result;
40 * Test for {@link ContactStatusLoader}
42 * Unfortunately this doesn't check {@link ContactStatusLoader.Result#mLookupUri}, because we don't
66 new MatrixCursor(ContactStatusLoader.PROJECTION_PHOTO_ID_PRESENCE));
69 ContactStatusLoader l = new ContactStatusLoader(getMockContext(), EMAIL);
79 assertEquals(ContactStatusLoader.PRESENCE_UNKNOWN_RESOURCE_ID, r.mPresenceResId);
87 ContactStatusLoader l = new ContactStatusLoader(getMockContext(), EMAIL);
92 assertEquals(ContactStatusLoader.PRESENCE_UNKNOWN_RESOURCE_ID, r.mPresenceResId)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
ContactStatusLoader.java 40 public class ContactStatusLoader extends AsyncTaskLoader<ContactStatusLoader.Result> {
87 public ContactStatusLoader(Context context, String emailAddress) {
MessageViewFragmentBase.java 701 implements LoaderCallbacks<ContactStatusLoader.Result> {
716 public Loader<ContactStatusLoader.Result> onCreateLoader(int id, Bundle args) {
717 return new ContactStatusLoader(mFragment.mContext,
722 public void onLoadFinished(Loader<ContactStatusLoader.Result> loader,
723 ContactStatusLoader.Result result) {
744 public void onLoaderReset(Loader<ContactStatusLoader.Result> loader) {
    [all...]
  /packages/apps/Email/src/com/android/email/
NotificationController.java 41 import com.android.email.activity.ContactStatusLoader;
403 return ContactStatusLoader.getContactInfo(mContext, email).mPhoto;
    [all...]

Completed in 2959 milliseconds