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/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java
133
Integer
superPrimary
= mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
134
return
superPrimary
!= null &&
superPrimary
!= 0;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java
120
final Integer
superPrimary
= values.getAsInteger(Data.IS_SUPER_PRIMARY);
121
if ((primary != null && primary != 0) || (
superPrimary
!= null &&
superPrimary
!= 0)) {
128
if (
superPrimary
!= null) {
129
if (
superPrimary
!= 0) {
Completed in 225 milliseconds