Home | History | Annotate | Download | only in provider

Lines Matching refs:row

117         private Object[] row;
123 row = new Object[projection.size];
143 return row;
149 row[integer] = value;
216 Object[] row;
228 row = new Object[projection.length];
233 row[i] = account.name;
235 row[i] = account.type;
247 row[i] = exchangeName;
256 row[i] = firstLetter + accountName.substring(atIndex + 2);
258 row[i] = account.name;
261 row[i] = Directory.EXPORT_SUPPORT_SAME_ACCOUNT_ONLY;
263 row[i] = Directory.SHORTCUT_SUPPORT_NONE;
266 cursor.addRow(row);
409 // id populates the _ID column and is incremented for each row in the
410 // result set, so each row has a unique id.
414 // than one row with the same contactId if a given contact has multiple
418 final Object[] row = new Object[projection.length];
445 row[displayNameIndex] = displayName;
458 row[alternateDisplayNameIndex] = alternateDisplayName;
462 row[displayNameSourceIndex] = DisplayNameSources.STRUCTURED_NAME;
469 row[hasPhoneNumberIndex] = true;
474 row[contactIdIndex] = contactId;
480 row[lookupIndex] = Uri.encode(galDataRow.toPackedString());
491 row[phoneNumberIndex] = phone.mNumber;
494 row[phoneTypeIndex] = phone.mType;
497 row[idIndex] = id;
499 sortedResultsMap.put(new GalSortKey(sortName, id), row.clone());
505 row[emailIndex] = galDataRow.get(GalData.EMAIL_ADDRESS);
508 row[emailTypeIndex] = Email.TYPE_WORK;
512 row[idIndex] = id;
514 sortedResultsMap.put(new GalSortKey(sortName, id), row.clone());