HomeSort by relevance Sort by last modified time
    Searched defs:callType (Results 1 - 25 of 48) sorted by null

1 2

  /packages/apps/Car/Dialer/src/com/android/car/dialer/
CallLogViewHolder.java 37 public final LinearLayout callType;
49 callType = v.findViewById(R.id.call_type);
TelecomActivity.java 504 showCallHistory(PhoneLoader.CallType.CALL_TYPE_ALL);
507 showCallHistory(PhoneLoader.CallType.MISSED_TYPE);
522 private void showCallHistory(@PhoneLoader.CallType int callType) {
523 setContentFragment(CallHistoryFragment.newInstance(callType));
542 int callType = currentFragment.getArguments().getInt(CALL_TYPE_KEY);
543 if (callType == PhoneLoader.CallType.MISSED_TYPE) {
  /external/deqp/modules/gles2/functional/
es2fDebugMarkerTests.cpp 93 enum CallType
124 const CallType callType = CallType(rnd.getInt(0, CALL_TYPE_LAST-1));
126 if (callType == CALL_TYPE_PUSH_GROUP || callType == CALL_TYPE_INSERT_MARKER)
144 if (callType == CALL_TYPE_PUSH_GROUP)
  /packages/apps/Car/Dialer/src/com/android/car/dialer/ui/
CallHistoryFragment.java 40 public static CallHistoryFragment newInstance(@PhoneLoader.CallType int callType) {
43 arg.putInt(CALL_TYPE_KEY, callType);
58 int callType = getArguments().getInt(CALL_TYPE_KEY);
64 if (callType == PhoneLoader.CallType.CALL_TYPE_ALL) {
66 } else if (callType == PhoneLoader.CallType.MISSED_TYPE) {
  /packages/apps/Dialer/java/com/android/dialer/voicemail/model/
VoicemailEntry.java 63 public abstract int callType();
97 public abstract Builder setCallType(int callType);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
SelfManagedCallListAdapter.java 184 String callType;
187 callType = "Incoming(our ux) ";
189 callType = "Incoming(sys ux) ";
192 callType = "Outgoing";
196 callType, connection.getState() == android.telecom.Connection.STATE_RINGING,
209 String status, String audioRoute, String callType,
233 statusTextView.setText(callType + " - Status: " + status);
  /cts/tests/tests/jni/libjnitest/
macroized_tests.c 57 } callType;
169 callType ct, const char *name, const char *sig) {
192 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
297 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
402 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
507 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
612 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
717 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
822 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct,
927 jmethodID method = findAppropriateMethod(env, &msg, (callType)ct
    [all...]
  /frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
ClassesInfoCache.java 130 int callType = CALL_TYPE_NO_ARG;
132 callType = CALL_TYPE_PROVIDER;
141 callType = CALL_TYPE_PROVIDER_WITH_EVENT;
154 MethodReference methodReference = new MethodReference(callType, method);
204 MethodReference(int callType, Method method) {
205 mCallType = callType;
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CallLogInteraction.java 211 String callType = "";
215 return callType;
219 callType = res.getString(R.string.content_description_recent_call_type_incoming);
222 callType = res.getString(R.string.content_description_recent_call_type_missed);
225 callType = res.getString(R.string.content_description_recent_call_type_outgoing);
228 return callType;
  /packages/apps/Dialer/java/com/android/dialer/calldetails/
CallDetailsEntryViewHolder.java 90 int callType = entry.getCallType();
97 callTime.setTextColor(getColorForCallType(context, callType));
99 callTypeIcon.add(callType);
107 callTypeHelper.getCallTypeText(callType, isVideoCall, isPulledCall, isDuoCall));
110 if (CallTypeHelper.isMissedCallType(callType)) {
178 private static @ColorInt int getColorForCallType(Context context, int callType) {
179 switch (callType) {
  /packages/apps/Dialer/java/com/android/dialer/calllog/model/
CoalescedRow.java 79 public abstract int callType();
116 public abstract Builder setCallType(int callType);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogActivity.java 80 final int callType = intent.getIntExtra(CallLog.Calls.EXTRA_CALL_TYPE_FILTER, -1);
81 if (callType == CallLog.Calls.MISSED_TYPE) {
CallLogGroupBuilder.java 117 int callType;
132 callType = cursor.getInt(CallLogQuery.CALL_TYPE);
156 && areBothNotVoicemail(callType, groupCallType)
157 && (areBothNotBlocked(callType, groupCallType) || areBothBlocked(callType, groupCallType))
178 groupCallType = callType;
271 private boolean areBothNotVoicemail(int callType, int groupCallType) {
272 return callType != AppCompatConstants.CALLS_VOICEMAIL_TYPE
276 private boolean areBothNotBlocked(int callType, int groupCallType) {
277 return callType != AppCompatConstants.CALLS_BLOCKED_TYP
    [all...]
CallLogListItemViewHolder.java 201 public int callType;
421 displayNumber, number, countryIso, callType, info.sourceType);
431 displayNumber, number, countryIso, callType, info.sourceType);
437 displayNumber, number, countryIso, callType, info.sourceType, isSpam, blockId);
442 displayNumber, number, countryIso, callType, info.sourceType);
655 if (callType == Calls.VOICEMAIL_TYPE && !TextUtils.isEmpty(callTypeOrLocation)) {
724 if (callType == Calls.VOICEMAIL_TYPE
743 if (callType == Calls.VOICEMAIL_TYPE) {
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
PhoneAccountTest.java 183 final int callType = missedCall ? Calls.MISSED_TYPE : Calls.INCOMING_TYPE;
210 assertCalllogInserted(callType, phoneNumber);
  /frameworks/base/telecomm/java/android/telecom/
ParcelableCallAnalytics.java 286 private final int callType;
322 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType,
329 this.callType = callType;
344 callType = in.readInt();
364 out.writeInt(callType);
397 return callType;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 65 * @param callType The type of call (e.g INCOMING_TYPE). @see
76 String postDialDigits, String viaNumber, int presentation, int callType,
86 this.callType = callType;
104 public final int callType;
126 private static final String CALL_TYPE = "callType";
252 * @param callType The type of call.
268 int callType,
295 sendAddCallBroadcast(callType, duration);
299 + Log.pii(number) + "," + presentation + ", " + callType
    [all...]
  /prebuilts/maven_repo/android/android/arch/lifecycle/common/1.0.0/
common-1.0.0.jar 
  /prebuilts/maven_repo/android/android/arch/lifecycle/common/1.0.3/
common-1.0.3.jar 
  /prebuilts/sdk/current/androidx/m2repository/androidx/lifecycle/lifecycle-common/2.0.0-alpha1/
lifecycle-common-2.0.0-alpha1.jar 
  /prebuilts/sdk/current/extras/app-toolkit/m2repository/android/arch/lifecycle/common/28.0.0/
common-28.0.0.jar 
  /libcore/ojluni/src/main/java/java/lang/invoke/
Transformers.java     [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java     [all...]
  /prebuilts/misc/common/android-support-test/espresso/
espresso_contrib_release_no_deps.jar 

Completed in 478 milliseconds

1 2