OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnnotatedCallLog
(Results
1 - 12
of
12
) sorted by null
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
AnnotatedCallLogDatabaseHelper.java
23
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
27
/** {@link SQLiteOpenHelper} for the
AnnotatedCallLog
database. */
38
+
AnnotatedCallLog
.TABLE
40
+ (
AnnotatedCallLog
._ID + " integer primary key, ")
41
+ (
AnnotatedCallLog
.TIMESTAMP + " integer, ")
42
+ (
AnnotatedCallLog
.NUMBER + " blob, ")
43
+ (
AnnotatedCallLog
.FORMATTED_NUMBER + " text, ")
44
+ (
AnnotatedCallLog
.NUMBER_PRESENTATION + " integer, ")
45
+ (
AnnotatedCallLog
.DURATION + " integer, ")
46
+ (
AnnotatedCallLog
.DATA_USAGE + " integer, "
[
all
...]
AnnotatedCallLogContentProvider.java
36
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
64
AnnotatedCallLogContract.AUTHORITY,
AnnotatedCallLog
.TABLE, ANNOTATED_CALL_LOG_TABLE_CODE);
67
AnnotatedCallLog
.TABLE + "/#",
71
AnnotatedCallLog
.DISTINCT_PHONE_NUMBERS,
111
queryBuilder.setTables(
AnnotatedCallLog
.TABLE);
115
queryBuilder.appendWhere(
AnnotatedCallLog
._ID + "=" + ContentUris.parseId(uri));
120
getContext().getContentResolver(),
AnnotatedCallLog
.CONTENT_URI);
130
getContext().getContentResolver(),
AnnotatedCallLog
.CONTENT_URI);
137
Arrays.equals(projection, new String[] {
AnnotatedCallLog
.NUMBER}),
145
getContext().getContentResolver(),
AnnotatedCallLog
.CONTENT_URI)
[
all
...]
Coalescer.java
26
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
58
* Reads the entire {@link
AnnotatedCallLog
} database into memory from the provided {@code
62
* @param allAnnotatedCallLogRowsSortedByTimestampDesc all {@link
AnnotatedCallLog
} rows, sorted
140
* @param row1 a row from {@link
AnnotatedCallLog
}
141
* @param row2 a row from {@link
AnnotatedCallLog
}
148
row1.getAsString(
AnnotatedCallLog
.PHONE_ACCOUNT_COMPONENT_NAME),
149
row1.getAsString(
AnnotatedCallLog
.PHONE_ACCOUNT_ID));
152
row2.getAsString(
AnnotatedCallLog
.PHONE_ACCOUNT_COMPONENT_NAME),
153
row2.getAsString(
AnnotatedCallLog
.PHONE_ACCOUNT_ID));
159
if (!row1.getAsInteger(
AnnotatedCallLog
.NUMBER_PRESENTATION
[
all
...]
MutationApplier.java
27
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
79
ContentUris.withAppendedId(
AnnotatedCallLog
.CONTENT_URI, id))
93
ContentUris.withAppendedId(
AnnotatedCallLog
.CONTENT_URI, id))
110
(
AnnotatedCallLog
._ID + " in (") + TextUtils.join(",", questionMarks) + ")";
119
ContentProviderOperation.newDelete(
AnnotatedCallLog
.CONTENT_URI)
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
VoicemailCursorLoader.java
25
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
37
AnnotatedCallLog
._ID,
38
AnnotatedCallLog
.TIMESTAMP,
39
AnnotatedCallLog
.NUMBER,
40
AnnotatedCallLog
.FORMATTED_NUMBER,
41
AnnotatedCallLog
.DURATION,
42
AnnotatedCallLog
.GEOCODED_LOCATION,
43
AnnotatedCallLog
.CALL_TYPE,
44
AnnotatedCallLog
.TRANSCRIPTION,
45
AnnotatedCallLog
.VOICEMAIL_URI
[
all
...]
NewVoicemailViewHolder.java
39
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
102
* @param cursor the voicemail data from {@link
AnnotatedCallLog
} generated by the {@link
274
* @param voicemailEntry are the voicemail related values from the {@link
AnnotatedCallLog
}
NewVoicemailMediaPlayerView.java
42
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
144
*
AnnotatedCallLog
} converted into {@link VoicemailEntry} format.
/packages/apps/Dialer/java/com/android/dialer/calldetails/
CallDetailsCursorLoader.java
24
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
29
* A {@link CursorLoader} that loads call detail entries from {@link
AnnotatedCallLog
} for {@link
34
// Columns in
AnnotatedCallLog
that are needed to build a CallDetailsEntry proto.
39
AnnotatedCallLog
._ID,
40
AnnotatedCallLog
.CALL_TYPE,
41
AnnotatedCallLog
.FEATURES,
42
AnnotatedCallLog
.TIMESTAMP,
43
AnnotatedCallLog
.DURATION,
44
AnnotatedCallLog
.DATA_USAGE,
45
AnnotatedCallLog
.PHONE_ACCOUNT_COMPONENT_NAM
[
all
...]
CallDetailsActivity.java
46
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
248
* from {@link
AnnotatedCallLog
}.
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java
43
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
198
.useMostRecentLong(
AnnotatedCallLog
.TIMESTAMP)
199
.useMostRecentLong(
AnnotatedCallLog
.NEW)
203
.useMostRecentBlob(
AnnotatedCallLog
.NUMBER)
204
.useMostRecentString(
AnnotatedCallLog
.FORMATTED_NUMBER)
205
.useSingleValueInt(
AnnotatedCallLog
.NUMBER_PRESENTATION)
206
.useMostRecentString(
AnnotatedCallLog
.GEOCODED_LOCATION)
207
.useSingleValueString(
AnnotatedCallLog
.PHONE_ACCOUNT_COMPONENT_NAME)
208
.useSingleValueString(
AnnotatedCallLog
.PHONE_ACCOUNT_ID)
209
.useSingleValueString(
AnnotatedCallLog
.PHONE_ACCOUNT_LABEL
[
all
...]
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/phonelookup/
PhoneLookupDataSource.java
31
import com.android.dialer.calllog.database.contract.AnnotatedCallLogContract.
AnnotatedCallLog
;
114
* DialerPhoneNumbers from the
AnnotatedCallLog
and the pending inserts provided in {@code
125
* <li>Uses all of the numbers from
AnnotatedCallLog
to invoke (composite) {@link
246
// the
AnnotatedCallLog
and PhoneLookupHistory have been successfully updated.
287
.useMostRecentBlob(
AnnotatedCallLog
.NUMBER_ATTRIBUTES)
305
AnnotatedCallLog
.DISTINCT_NUMBERS_CONTENT_URI,
306
new String[] {
AnnotatedCallLog
.NUMBER},
319
int numberColumn = cursor.getColumnIndexOrThrow(
AnnotatedCallLog
.NUMBER);
348
insertedContentValues.getAsByteArray(
AnnotatedCallLog
.NUMBER));
364
AnnotatedCallLog
.CONTENT_URI
[
all
...]
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java
26
/** Contract for the
AnnotatedCallLog
content provider. */
33
* Columns shared by {@link
AnnotatedCallLog
} and {@link CoalescedAnnotatedCallLog}.
163
*
AnnotatedCallLog
table.
167
public static final class
AnnotatedCallLog
implements CommonColumns {
169
public static final String TABLE = "
AnnotatedCallLog
";
176
/** Content URI for selecting the distinct phone numbers from the
AnnotatedCallLog
. */
222
* Coalesced view of the
AnnotatedCallLog
table.
224
* <p>This is an in-memory view of the {@link
AnnotatedCallLog
} with some adjacent entries
242
* IDs of rows in {@link
AnnotatedCallLog
} that are coalesced into one row in {@link
251
*
AnnotatedCallLog
}
[
all
...]
Completed in 673 milliseconds