OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isSuperPrimary
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java
192
if (entry.
isSuperPrimary
()) {
660
public boolean
isSuperPrimary
() {
661
final Long
isSuperPrimary
= getAsLong(Data.IS_SUPER_PRIMARY);
662
return
isSuperPrimary
== null ? false :
isSuperPrimary
!= 0;
[
all
...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java
184
if (entry.
isSuperPrimary
()) {
604
public boolean
isSuperPrimary
() {
605
final Long
isSuperPrimary
= getAsLong(Data.IS_SUPER_PRIMARY);
606
return
isSuperPrimary
== null ? false :
isSuperPrimary
!= 0;
/frameworks/opt/vcard/java/com/android/vcard/
VCardBuilder.java
267
Integer
isSuperPrimary
= contentValues.getAsInteger(StructuredName.IS_SUPER_PRIMARY);
268
if (
isSuperPrimary
!= null &&
isSuperPrimary
> 0) {
[
all
...]
Completed in 39 milliseconds