OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContactQuery
(Results
1 - 8
of
8
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListAdapter.java
42
protected static class
ContactQuery
{
150
return ((Cursor) getItem(position)).getString(
ContactQuery
.CONTACT_DISPLAY_NAME);
164
long contactId = cursor.getLong(
ContactQuery
.CONTACT_ID);
165
String lookupKey = cursor.getString(
ContactQuery
.CONTACT_LOOKUP_KEY);
188
cursor.getString(
ContactQuery
.CONTACT_LOOKUP_KEY))) {
193
&& getSelectedContactId() == cursor.getLong(
ContactQuery
.CONTACT_ID);
215
if (position == 0 && cursor.getInt(
ContactQuery
.CONTACT_IS_USER_PROFILE) == 1) {
237
if (!cursor.isNull(
ContactQuery
.CONTACT_PHOTO_ID)) {
238
photoId = cursor.getLong(
ContactQuery
.CONTACT_PHOTO_ID);
244
final String photoUriString = cursor.getString(
ContactQuery
.CONTACT_PHOTO_URI)
[
all
...]
DefaultContactListAdapter.java
197
bindQuickContact(view, partition, cursor,
ContactQuery
.CONTACT_PHOTO_ID,
198
ContactQuery
.CONTACT_PHOTO_URI,
ContactQuery
.CONTACT_ID,
199
ContactQuery
.CONTACT_LOOKUP_KEY,
ContactQuery
.CONTACT_DISPLAY_NAME);
ContactEntryListAdapter.java
39
import com.android.contacts.common.list.ContactListAdapter.
ContactQuery
;
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java
114
private static class
ContactQuery
{
450
Cursor cursor = resolver.query(entityUri,
ContactQuery
.COLUMNS, null, null,
475
long rawContactId = cursor.getLong(
ContactQuery
.RAW_CONTACT_ID);
483
if (!cursor.isNull(
ContactQuery
.DATA_ID)) {
487
if (!cursor.isNull(
ContactQuery
.PRESENCE)
488
|| !cursor.isNull(
ContactQuery
.STATUS)) {
490
final long dataId = cursor.getLong(
ContactQuery
.DATA_ID);
606
final long contactId = cursor.getLong(
ContactQuery
.CONTACT_ID);
607
final String lookupKey = cursor.getString(
ContactQuery
.LOOKUP_KEY);
608
final long nameRawContactId = cursor.getLong(
ContactQuery
.NAME_RAW_CONTACT_ID)
[
all
...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java
93
private interface
ContactQuery
{
265
cursor.getLong(
ContactQuery
._ID),
266
cursor.getString(
ContactQuery
.LOOKUP_KEY));
268
final long photoId = cursor.getLong(
ContactQuery
.PHOTO_ID);
591
mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri,
ContactQuery
.COLUMNS,
640
final String displayName = c.getString(
ContactQuery
.DISPLAY_NAME);
641
final String phoneticName = c.getString(
ContactQuery
.PHONETIC_NAME);
645
if (!c.isNull(
ContactQuery
.CONTACT_PRESENCE_STATUS)) {
646
int presence = c.getInt(
ContactQuery
.CONTACT_PRESENCE_STATUS);
654
final String status = c.getString(
ContactQuery
.CONTACT_STATUS)
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListAdapter.java
204
long contactId = cursor.getLong(
ContactQuery
.CONTACT_ID);
205
String lookupKey = cursor.getString(
ContactQuery
.CONTACT_LOOKUP_KEY);
/packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java
148
private interface
ContactQuery
{
314
mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri,
ContactQuery
.COLUMNS,
487
mDisplayName = cursor.getString(
ContactQuery
.DISPLAY_NAME);
488
mLookupKey = cursor.getString(
ContactQuery
.LOOKUP_KEY);
490
final long photoId = cursor.getLong(
ContactQuery
.PHOTO_ID);
496
mContactId = cursor.getLong(
ContactQuery
._ID);
[
all
...]
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java
[
all
...]
Completed in 1298 milliseconds