OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:superPrimary
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DataItem.java
128
Integer
superPrimary
= mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
129
return
superPrimary
!= null &&
superPrimary
!= 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) {
Completed in 1948 milliseconds