Lines Matching refs:values
676 // Update the primary values in the data record.
677 ContentValues values = new ContentValues(1);
678 values.put(Data.IS_SUPER_PRIMARY, 1);
680 values, null, null);
745 ContentValues values = new ContentValues(3);
748 values.put(AggregationExceptions.RAW_CONTACT_ID1, aRawContactId);
749 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
750 values.put(AggregationExceptions.TYPE, exceptionType);
751 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
904 final ContentValues entryValues = subValue.values;
1063 static String buildActionString(DataKind kind, ContentValues values, boolean lowerCase,
1068 CharSequence actionHeader = kind.actionHeader.inflateUsing(context, values);
1075 static String buildDataString(DataKind kind, ContentValues values, Context context) {
1079 CharSequence actionBody = kind.actionBody.inflateUsing(context, values);
1106 * Build new {@link ViewEntry} and populate from the given values.
1109 long rawContactId, long dataId, ContentValues values) {
1116 entry.label = buildActionString(kind, values, false, context);
1117 entry.data = buildDataString(kind, values, context);
1119 if (kind.typeColumn != null && values.containsKey(kind.typeColumn)) {
1120 entry.type = values.getAsInteger(kind.typeColumn);
1131 * Apply given {@link DataStatus} values over this {@link ViewEntry}
1160 // Choose the max of the maxLines and maxLabelLines values.