/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntry.java | 307 // isPrimary is (not final but) changable, only when there's no 312 public PhoneData(String data, int type, String label, boolean isPrimary) { 316 mIsPrimary = isPrimary; 369 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mNumber, 390 public boolean isPrimary() { 402 public EmailData(String data, int type, String label, boolean isPrimary) { 406 mIsPrimary = isPrimary; 459 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mAddress, 480 public boolean isPrimary() { 506 boolean isPrimary, int vcardType) [all...] |
VCardPhoneNumberTranslationCallback.java | 34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary);
|
VCardBuilder.java | 275 final Integer isPrimary = contentValues.getAsInteger(StructuredName.IS_PRIMARY); 276 if (isPrimary != null && isPrimary > 0 && [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 146 values.put(Organizations.ISPRIMARY, 1); 190 values.put(Phones.ISPRIMARY, 1); 241 values.put(ContactMethods.ISPRIMARY, 1); 264 values.put(ContactMethods.ISPRIMARY, 1); 333 values.put(Organizations.ISPRIMARY, 1); 366 values.put(Organizations.ISPRIMARY, 0); 376 values.put(Organizations.ISPRIMARY, 1); 394 values.put(Phones.ISPRIMARY, 1); 436 values.put(Phones.ISPRIMARY, 0); 445 values.put(Phones.ISPRIMARY, 1) [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
Action.java | 48 public Boolean isPrimary();
|
/development/samples/BusinessCard/src/com/example/android/businesscard/ |
ContactAccessorSdk3_4.java | 69 new String[]{Phones.NUMBER}, null, null, Phones.ISPRIMARY + " DESC");
|
/packages/apps/Phone/src/com/android/phone/sip/ |
SipSettings.java | 110 boolean isPrimary = mProfile.getUriString().equals( 112 Log.v(TAG, "profile uid is " + profileUid + " isPrimary:" 113 + isPrimary + " registration:" + registrationStatus 121 } else if (isPrimary) {
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactFragment.java | 390 entry.isPrimary = isSuperPrimary; 404 entry.isPrimary = isSuperPrimary; 532 public boolean isPrimary = false; 613 isPrimary = entry.isPrimary ? true : isPrimary; 738 views.primaryIcon.setVisibility(entry.isPrimary ? View.VISIBLE : View.GONE);
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.provider.Contacts.ContactMethodsColumns.html | 106 <A NAME="android.provider.Contacts.ContactMethodsColumns.ISPRIMARY"></A> 107 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
|
android.provider.Contacts.OrganizationColumns.html | 97 <A NAME="android.provider.Contacts.OrganizationColumns.ISPRIMARY"></A> 98 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
|
android.provider.Contacts.PhonesColumns.html | 88 <A NAME="android.provider.Contacts.PhonesColumns.ISPRIMARY"></A> 89 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
|
/frameworks/base/core/java/android/content/pm/ |
UserInfo.java | 88 public boolean isPrimary() {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ValuesDelta.java | 162 public boolean isPrimary() { 163 final Long isPrimary = getAsLong(ContactsContract.Data.IS_PRIMARY); 164 return isPrimary == null ? false : isPrimary != 0;
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDelta.java | 155 if (entry.isPrimary()) { 186 } else if (entry.isPrimary()) { 591 public boolean isPrimary() { 592 final Long isPrimary = getAsLong(Data.IS_PRIMARY); 593 return isPrimary == null ? false : isPrimary != 0;
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsTest.java | 253 Phones.NUMBER_KEY, Phones.LABEL, Phones.ISPRIMARY}; 277 value.put(Phones.ISPRIMARY, 1); 332 Organizations.ISPRIMARY, Organizations.TYPE, Organizations.LABEL, 360 value.put(Organizations.ISPRIMARY, 1); 511 ContactMethods.LABEL, ContactMethods.ISPRIMARY}; 541 value.put(ContactMethods.ISPRIMARY, 1); 565 value.put(ContactMethods.ISPRIMARY, 1); [all...] |
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailFragment.java | 611 entry.isPrimary = isSuperPrimary; 614 if (entry.isPrimary) { 629 entry.isPrimary = isSuperPrimary; 631 if (entry.isPrimary) { [all...] |
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
StorageVolumePreferenceCategory.java | 168 final boolean showDetails = mVolume == null || mVolume.isPrimary(); 207 final boolean allowFormat = mVolume != null ? mVolume.isPrimary() : false; 322 final boolean showDetails = mVolume == null || mVolume.isPrimary();
|
/packages/providers/ContactsProvider/tests/assets/testUnsynced/ |
legacy_contacts.sql | 11 CREATE TABLE contact_methods (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),kind INTEGER NOT NULL,data TEXT,aux_data TEXT,type INTEGER NOT NULL,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0); 32 CREATE TABLE organizations (_id INTEGER PRIMARY KEY AUTOINCREMENT,company TEXT,title TEXT,isprimary INTEGER NOT NULL DEFAULT 0,type INTEGER NOT NULL,label TEXT,person INTEGER REFERENCES people(_id)); 55 CREATE TABLE phones (_id INTEGER PRIMARY KEY AUTOINCREMENT,person INTEGER REFERENCES people(_id),type INTEGER NOT NULL,number TEXT,number_key TEXT,label TEXT,isprimary INTEGER NOT NULL DEFAULT 0);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandler.java | 209 final boolean isPrimary = c.getInt(0) != 0; 215 if (clearPrimary && isPrimary) {
|
/frameworks/base/core/java/android/os/storage/ |
StorageVolume.java | 113 public boolean isPrimary() {
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
UserManagerTest.java | 66 && !user.isPrimary()) {
|
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/ |
DataItem.java | 122 public boolean isPrimary() {
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
RawContactDelta.java | 160 if (entry.isPrimary()) { 192 } else if (entry.isPrimary()) {
|
/frameworks/base/docs/html/reference/com/google/android/gms/plus/model/people/ |
Person.Emails.html | 896 <span class="sympad"><a href="/reference/com/google/android/gms/plus/model/people/Person.Emails.html#isPrimary()">isPrimary</a></span>()</nobr> 1156 <A NAME="isPrimary()"></A> 1168 <span class="sympad">isPrimary</span>
|
Person.PlacesLived.html | 837 <span class="sympad"><a href="/reference/com/google/android/gms/plus/model/people/Person.PlacesLived.html#isPrimary()">isPrimary</a></span>()</nobr> 1034 <A NAME="isPrimary()"></A> 1046 <span class="sympad">isPrimary</span>
|