OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:superprimary
(Results
1 - 5
of
5
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java
113
final Integer
superPrimary
= values.getAsInteger(Data.IS_SUPER_PRIMARY);
114
if ((primary != null && primary != 0) || (
superPrimary
!= null &&
superPrimary
!= 0)) {
120
if (
superPrimary
!= null) {
121
if (
superPrimary
!= 0) {
ContactAggregator.java
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java
404
int
superprimary
= mDataCursor.getInt(DataQuery.IS_SUPERPRIMARY);
local
406
&& (
superprimary
!= 0 || suggestion.phoneNumber == null)) {
411
int
superprimary
= mDataCursor.getInt(DataQuery.IS_SUPERPRIMARY);
local
413
&& (
superprimary
!= 0 || suggestion.emailAddress == null)) {
PhotoEditorView.java
159
public void setSuperPrimary(boolean
superPrimary
) {
160
mEntry.put(Photo.IS_SUPER_PRIMARY,
superPrimary
? 1 : 0);
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java
579
Integer
superPrimary
= entryValues.getAsInteger(Data.IS_SUPER_PRIMARY);
580
final boolean isSuperPrimary =
superPrimary
!= null &&
superPrimary
!= 0;
[
all
...]
Completed in 546 milliseconds