OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CoalescedAnnotatedCallLog
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/
CoalescedAnnotatedCallLogCursorLoader.java
25
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
CoalescedAnnotatedCallLog
;
32
// Indexes for
CoalescedAnnotatedCallLog
.ALL_COLUMNS
51
//
CoalescedAnnotatedCallLog
requires that PROJECTION be ALL_COLUMNS and the following params be
55
CoalescedAnnotatedCallLog
.CONTENT_URI,
56
CoalescedAnnotatedCallLog
.ALL_COLUMNS,
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
Coalescer.java
27
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
CoalescedAnnotatedCallLog
;
64
* @return a new {@link MatrixCursor} containing the {@link
CoalescedAnnotatedCallLog
} rows to
80
CoalescedAnnotatedCallLog
.ALL_COLUMNS,
110
CoalescedAnnotatedCallLog
.COALESCED_IDS, getCoalescedIds(currentRowGroup).toByteArray());
208
* @return a {@link
CoalescedAnnotatedCallLog
} row
220
* that are coalesced into one row in {@link
CoalescedAnnotatedCallLog
}.
236
* @param contentValues a {@link
CoalescedAnnotatedCallLog
} row
237
* @param matrixCursor represents {@link
CoalescedAnnotatedCallLog
}
242
rowBuilder.add(
CoalescedAnnotatedCallLog
._ID, rowId);
AnnotatedCallLogContentProvider.java
37
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
CoalescedAnnotatedCallLog
;
75
CoalescedAnnotatedCallLog
.TABLE,
152
projection ==
CoalescedAnnotatedCallLog
.ALL_COLUMNS,
163
String.format("%s != ?",
CoalescedAnnotatedCallLog
.CALL_TYPE),
173
getContext().getContentResolver(),
CoalescedAnnotatedCallLog
.CONTENT_URI);
390
//
CoalescedAnnotatedCallLog
, since that is just a massaged in-memory view of the real annotated
392
getContext().getContentResolver().notifyChange(
CoalescedAnnotatedCallLog
.CONTENT_URI, null);
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java
33
* Columns shared by {@link AnnotatedCallLog} and {@link
CoalescedAnnotatedCallLog
}.
229
public static final class
CoalescedAnnotatedCallLog
implements CommonColumns {
231
public static final String TABLE = "
CoalescedAnnotatedCallLog
";
243
*
CoalescedAnnotatedCallLog
}, encoded as a {@link com.android.dialer.CoalescedIds} proto.
250
* Columns that are only in the {@link
CoalescedAnnotatedCallLog
} but not the {@link
255
/** All columns in the {@link
CoalescedAnnotatedCallLog
}. */
Completed in 928 milliseconds