OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:individualRowsSortedByTimestampDesc
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/util/
RowCombiner.java
26
private final List<ContentValues>
individualRowsSortedByTimestampDesc
;
29
public RowCombiner(List<ContentValues>
individualRowsSortedByTimestampDesc
) {
30
Assert.checkArgument(!
individualRowsSortedByTimestampDesc
.isEmpty());
31
this.
individualRowsSortedByTimestampDesc
=
individualRowsSortedByTimestampDesc
;
37
columnName,
individualRowsSortedByTimestampDesc
.get(0).getAsInteger(columnName));
43
combinedRow.put(columnName,
individualRowsSortedByTimestampDesc
.get(0).getAsLong(columnName));
49
combinedRow.put(columnName,
individualRowsSortedByTimestampDesc
.get(0).getAsString(columnName));
55
columnName,
individualRowsSortedByTimestampDesc
.get(0).getAsByteArray(columnName));
61
Iterator<ContentValues> iterator =
individualRowsSortedByTimestampDesc
.iterator()
[
all
...]
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/
CallLogDataSource.java
96
* @param
individualRowsSortedByTimestampDesc
group of fully populated rows from {@link
101
* {@code
individualRowsSortedByTimestampDesc
}.
104
ContentValues coalesce(List<ContentValues>
individualRowsSortedByTimestampDesc
);
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java
194
public ContentValues coalesce(List<ContentValues>
individualRowsSortedByTimestampDesc
) {
195
assertNoVoicemailsInRows(
individualRowsSortedByTimestampDesc
);
197
return new RowCombiner(
individualRowsSortedByTimestampDesc
)
218
private void assertNoVoicemailsInRows(List<ContentValues>
individualRowsSortedByTimestampDesc
) {
219
for (ContentValues contentValue :
individualRowsSortedByTimestampDesc
) {
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/phonelookup/
PhoneLookupDataSource.java
285
public ContentValues coalesce(List<ContentValues>
individualRowsSortedByTimestampDesc
) {
286
return new RowCombiner(
individualRowsSortedByTimestampDesc
)
Completed in 188 milliseconds