Searched defs:callType (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallTypeHelper.java52 public CharSequence getCallTypeText(int callType) { argument
53 switch (callType) {
67 throw new IllegalArgumentException("invalid call type: " + callType);
72 public Integer getHighlightedColor(int callType) { argument
73 switch (callType) {
89 throw new IllegalArgumentException("invalid call type: " + callType);
H A DCallTypeIconsView.java59 public void add(int callType) { argument
60 mCallTypes.add(callType);
62 final Drawable drawable = getCallTypeDrawable(callType);
78 private Drawable getCallTypeDrawable(int callType) { argument
79 switch (callType) {
89 throw new IllegalArgumentException("invalid call type: " + callType);
101 for (Integer callType : mCallTypes) {
102 final Drawable drawable = getCallTypeDrawable(callType);
/packages/apps/Contacts/tests/src/com/android/contacts/calllog/
H A DCallLogListItemHelperTest.java129 int callType) {
132 new int[]{ callType }, TEST_DATE, TEST_DURATION),
128 setPhoneCallDetailsWithNumberAndType(String number, String formattedNumber, int callType) argument
/packages/apps/Phone/src/com/android/phone/
H A DCallLogAsync.java65 * @param callType The type of call (e.g INCOMING_TYPE). @see
74 int callType,
98 this.callType = callType;
108 public final int callType; field in class:CallLogAsync.AddCallArgs
164 c.callType, c.timestamp, c.durationInSec);
70 AddCallArgs(Context context, CallerInfo ci, String number, int presentation, int callType, long timestamp, long durationInMillis) argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DCallLogProviderTest.java308 private ContentValues getDefaultValues(int callType) { argument
310 values.put(Calls.TYPE, callType);

Completed in 211 milliseconds