Home | History | Annotate | Download | only in calllog

Lines Matching defs:presentation

366             int presentation = getPhoneNumberPresentationForListEntry(i);
367 if (presentation == Calls.PRESENTATION_RESTRICTED ||
368 presentation == Calls.PRESENTATION_UNKNOWN) {
425 /** Returns the number presentation associated with the given entry in {{@link #mList}. */
490 * @param presentation Number representing display rules for "allowed",
496 private void insert(String number, int presentation, long date, int duration, int type) {
497 insertValues(getValuesToInsert(number, presentation, date, duration, type));
510 * @param presentation Number representing display rules for "allowed",
516 private Object[] getValuesToInsert(String number, int presentation,
521 values[CallLogQuery.NUMBER_PRESENTATION] = presentation;
535 * @param presentation Number representing display rules for "allowed",
540 private void insertVoicemail(String number, int presentation, long date, int duration) {
541 Object[] values = getValuesToInsert(number, presentation, date, duration, Calls.VOICEMAIL_TYPE);