OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:superPrimary
(Results
1 - 5
of
5
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java
125
Integer
superPrimary
= mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
126
return
superPrimary
!= null &&
superPrimary
!= 0;
/packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java
164
public void setSuperPrimary(boolean
superPrimary
) {
165
mEntry.put(Photo.IS_SUPER_PRIMARY,
superPrimary
? 1 : 0);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java
114
final Integer
superPrimary
= values.getAsInteger(Data.IS_SUPER_PRIMARY);
115
if ((primary != null && primary != 0) || (
superPrimary
!= null &&
superPrimary
!= 0)) {
121
if (
superPrimary
!= null) {
122
if (
superPrimary
!= 0) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
[
all
...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java
269
boolean
superPrimary
) {
270
return insertEmail(rawContactId, email, primary,
superPrimary
, Email.TYPE_HOME, null);
279
boolean
superPrimary
, int type, String label) {
289
if (
superPrimary
) {
[
all
...]
Completed in 8043 milliseconds