Home | History | Annotate | Download | only in pbap

Lines Matching refs:_ID

76             Data._ID, // 0
88 Contacts._ID, // 0
97 // most recently one should be the first handle. In table "calls", _id and
98 // date are consistent in ordering, to implement simply, we sort by _id
100 static final String CALLLOG_SORT_ORDER = Calls._ID + " DESC";
257 null, Contacts._ID);
296 null, Contacts._ID);
328 CallLog.Calls._ID, // 0
336 // Need test to see if order by _ID is ok here, or by date?
359 recordSelection = Calls._ID + "=" + startPointId;
361 // The query to call table is by "_id DESC" order, so change
363 recordSelection = Calls._ID + ">=" + endPointId + " AND " + Calls._ID + "<="
392 Contacts._ID);
413 selection = Contacts._ID
415 selection = Contacts._ID + ">=" + startPointId + " AND " + Contacts._ID + "<="
437 null, Contacts._ID);
466 selection = Contacts._ID + "=" + contactId;
514 if (!composer.init(Contacts.CONTENT_URI, selection, null, Contacts._ID) ||