/external/chromium_org/third_party/sqlite/src/test/ |
tkt2640.test | 38 CREATE TABLE persons(person_id, name); 44 CREATE TABLE directors(person_id); 47 CREATE TABLE writers(person_id); 53 WHERE d.person_id=p.person_id 55 SELECT person_id FROM directors d1 WHERE d1.person_id=p.person_id 57 SELECT person_id FROM writers w 65 WHERE d.person_id=p.person_i [all...] |
autoindex1.test | 185 owner_person_id INTEGER NOT NULL REFERENCES person (person_id),
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 149 values.put(Organizations.PERSON_ID, personId); 156 values.put(Organizations.PERSON_ID, personId); 192 values.put(Phones.PERSON_ID, personId); 199 values.put(Phones.PERSON_ID, personId); 237 values.put(ContactMethods.PERSON_ID, personId); 260 values.put(ContactMethods.PERSON_ID, personId); 269 values.put(ContactMethods.PERSON_ID, personId); 329 values.put(Organizations.PERSON_ID, personId); 343 assertTypeAndLabelConstraints(Organizations.CONTENT_URI, Organizations.PERSON_ID, personId, 362 values.put(Organizations.PERSON_ID, personId) [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsTest.java | 207 Photos._ID, Photos.EXISTS_ON_SERVER, Photos.PERSON_ID, 230 value.put(Photos.PERSON_ID, 1); 252 Phones._ID, Phones.PERSON_ID, Phones.TYPE, Phones.NUMBER, 274 value.put(Phones.PERSON_ID, peopleId); 281 PHONES_PROJECTION, Phones.PERSON_ID + " = " + peopleId, 316 Phones.PERSON_ID + " = " + peopleId, null, null, null); 333 Organizations.PERSON_ID}; 359 value.put(Organizations.PERSON_ID, peopleId); 365 Organizations.PERSON_ID + " = " + peopleId, 399 Organizations.PERSON_ID + " = " + peopleId, null, null, null) [all...] |
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
PhoneQuery.java | 36 public static final int PERSON_ID = 0;
|
ContactInfoHelper.java | 157 long contactId = phonesCursor.getLong(PhoneQuery.PERSON_ID);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfo.java | 96 public long person_id; field in class:CallerInfo 206 // Look for the person_id. 209 info.person_id = cursor.getLong(columnIndex); 210 if (VDBG) Rlog.v(TAG, "==> got info.person_id: " + info.person_id); 212 // No valid columnIndex, so we can't look up person_id. 213 Rlog.w(TAG, "Couldn't find person_id column for " + contactRef); 215 // person_id will be broken (like contact photo lookups in 432 * Returns the column index to use to find the "person_id" field in 437 * a Cursor. Looking up the person_id is nontrivial (compared to al [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
CallerInfo.java | 94 public long person_id; field in class:CallerInfo 204 // Look for the person_id. 207 info.person_id = cursor.getLong(columnIndex); 208 Log.v(TAG, "==> got info.person_id: " + info.person_id); 210 // No valid columnIndex, so we can't look up person_id. 211 Log.v(TAG, "Couldn't find person_id column for " + contactRef); 213 // person_id will be broken (like contact photo lookups in 429 * Returns the column index to use to find the "person_id" field in 434 * a Cursor. Looking up the person_id is nontrivial (compared to al [all...] |
ContactInfoCache.java | 323 } else if (info.person_id == 0) { 326 Uri personUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, info.person_id); 327 Log.d(TAG, "- got personUri: '" + personUri + "', based on info.person_id: " + 328 info.person_id);
|
ContactsAsyncHelper.java | 153 mCurrentCallerInfo.person_id);
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.provider.Contacts.Extensions.html | 124 <A NAME="android.provider.Contacts.Extensions.PERSON_ID"></A> 125 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.People.Extensions.html | 106 <A NAME="android.provider.Contacts.People.Extensions.PERSON_ID"></A> 107 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Extensions.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.OrganizationColumns.html | 115 <A NAME="android.provider.Contacts.OrganizationColumns.PERSON_ID"></A> 116 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.Phones.html | 161 <A NAME="android.provider.Contacts.Phones.PERSON_ID"></A> 162 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.PhotosColumns.html | 124 <A NAME="android.provider.Contacts.PhotosColumns.PERSON_ID"></A> 125 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.GroupMembership.html | 175 <A NAME="android.provider.Contacts.GroupMembership.PERSON_ID"></A> 176 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
android.provider.Contacts.ContactMethods.html | 227 <A NAME="android.provider.Contacts.ContactMethods.PERSON_ID"></A> 228 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
|
alldiffs_index_changes.html | [all...] |
fields_index_changes.html | [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 406 sOrganizationProjectionMap.put(android.provider.Contacts.Organizations.PERSON_ID, 407 android.provider.Contacts.Organizations.PERSON_ID); 421 sContactMethodProjectionMap.put(ContactMethods.PERSON_ID, ContactMethods.PERSON_ID); 432 sPhoneProjectionMap.put(android.provider.Contacts.Phones.PERSON_ID, 433 android.provider.Contacts.Phones.PERSON_ID); 448 sExtensionProjectionMap.put(android.provider.Contacts.Extensions.PERSON_ID, 449 android.provider.Contacts.Extensions.PERSON_ID); 468 sGroupMembershipProjectionMap.put(android.provider.Contacts.GroupMembership.PERSON_ID, 469 android.provider.Contacts.GroupMembership.PERSON_ID); [all...] |
/frameworks/base/core/java/android/provider/ |
CallLog.java | 347 if ((ci != null) && (ci.person_id > 0)) { 361 new String[] { String.valueOf(ci.person_id), normalizedPhoneNumber}, 370 new String[] { String.valueOf(ci.person_id) },
|
Contacts.java | 541 values.put(GroupMembership.PERSON_ID, personId); 744 public static final String PERSON_ID = "person"; [all...] |
/packages/services/Telephony/src/com/android/phone/ |
NotificationMgr.java | 375 long person_id = cursor.getLong( local 379 + ". id : " + person_id); 381 personUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, person_id); [all...] |
ContactsAsyncHelper.java | 180 mCurrentCallerInfo.person_id);
|
/frameworks/base/docs/html/sdk/api_diff/5/ |
user_comments_for_4_to_5.xml | [all...] |