HomeSort by relevance Sort by last modified time
    Searched refs:Details (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /packages/apps/ContactsCommon/src-N/com/android/contacts/common/compat/
CallSdkCompat.java 22 public static class Details {
23 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL;
25 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO;
  /cts/tests/tests/telecom/src/android/telecom/cts/
CallTest.java 19 import static android.telecom.Call.Details.*;
27 assertTrue(Call.Details.can(CAPABILITY_HOLD, CAPABILITY_HOLD));
28 assertTrue(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_MUTE));
29 assertTrue(Call.Details.can(CAPABILITY_HOLD | CAPABILITY_DISCONNECT_FROM_CONFERENCE,
31 assertTrue(Call.Details.can(CAPABILITY_MERGE_CONFERENCE
34 assertTrue(Call.Details.can(CAPABILITY_CAN_PAUSE_VIDEO, CAPABILITY_CAN_PAUSE_VIDEO));
35 assertFalse(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_HOLD));
36 assertFalse(Call.Details.can(CAPABILITY_MERGE_CONFERENCE
43 Call.Details.capabilitiesToString(CAPABILITY_HOLD));
45 Call.Details.capabilitiesToString(CAPABILITY_SUPPORT_HOLD))
    [all...]
CallDetailsTest.java 42 * Suites of tests that verifies the various Call details.
59 Call.Details.CAPABILITY_HOLD | Call.Details.CAPABILITY_MUTE;
61 Call.Details.PROPERTY_HIGH_DEF_AUDIO | Call.Details.PROPERTY_WIFI;
113 * Call details.
147 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_HOLD));
148 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_MUTE));
149 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_MANAGE_CONFERENCE));
150 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_RESPOND_VIA_TEXT))
    [all...]
MockCallScreeningService.java 41 public void onScreenCall(Call.Details callDetails) {};
63 public void onScreenCall(Call.Details callDetails) {
MockInCallService.java 56 public void onDetailsChanged(Call call, Call.Details details) {};
126 public void onDetailsChanged(Call call, Call.Details details) {
127 super.onDetailsChanged(call, details);
129 getCallbacks().onDetailsChanged(call, details);
175 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) {
198 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) {
CallScreeningServiceTest.java 122 public void onScreenCall(Call.Details callDetails) {
  /packages/apps/ContactsCommon/src-pre-N/com/android/contacts/common/compat/
CallSdkCompat.java 20 public static class Details {
  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 58 properties |= android.telecom.Call.Details.PROPERTY_CONFERENCE;
62 properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL;
69 capabilities |= android.telecom.Call.Details.CAPABILITY_RESPOND_VIA_TEXT;
74 capabilities, android.telecom.Call.Details.CAPABILITY_MUTE);
79 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL);
81 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL);
188 android.telecom.Call.Details.CAPABILITY_HOLD,
191 android.telecom.Call.Details.CAPABILITY_SUPPORT_HOLD,
194 android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE,
197 android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
InCallServiceImpl.java 25 import android.telecom.Call.Details;
225 Call call, Details details) {
231 new CallEvent<Details>(mCallId, details));
776 public static Call.Details callGetDetails(String callId) {
787 Call.Details details = callGetDetails(callId); local
789 if (details == null) {
793 return getCallPropertiesString(details.getCallProperties())
797 Call.Details details = callGetDetails(callId); local
    [all...]
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ConferenceManagerPresenter.java 77 public void onDetailsChanged(Call call, android.telecom.Call.Details details) {
78 boolean canDisconnect = details.can(
79 android.telecom.Call.Details.CAPABILITY_DISCONNECT_FROM_CONFERENCE);
80 boolean canSeparate = details.can(
81 android.telecom.Call.Details.CAPABILITY_SEPARATE_FROM_CONFERENCE);
83 if (call.can(android.telecom.Call.Details.CAPABILITY_DISCONNECT_FROM_CONFERENCE)
85 || call.can(android.telecom.Call.Details.CAPABILITY_SEPARATE_FROM_CONFERENCE)
90 if (!details.can(
91 android.telecom.Call.Details.CAPABILITY_MANAGE_CONFERENCE))
    [all...]
CallButtonPresenter.java 129 * Updates the user interface in response to a change in the details of a call.
130 * Currently handles changes to the call buttons in response to a change in the details for a
135 * @param details The call details.
138 public void onDetailsChanged(Call call, android.telecom.Call.Details details) {
377 android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE);
379 && call.can(android.telecom.Call.Details.CAPABILITY_SUPPORT_HOLD)
380 && call.can(android.telecom.Call.Details.CAPABILITY_HOLD);
386 android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE)
    [all...]
CallCardPresenter.java 30 import android.telecom.Call.Details;
61 import static com.android.contacts.common.compat.CallSdkCompat.Details.PROPERTY_ENTERPRISE_CALL;
342 public void onDetailsChanged(Call call, Details details) {
345 if (call.can(Details.CAPABILITY_MANAGE_CONFERENCE) !=
346 details.can(Details.CAPABILITY_MANAGE_CONFERENCE)) {
441 mPrimary.hasProperty(Details.PROPERTY_WIFI),
451 * Show the HD icon if the call is active and has {@link Details#PROPERTY_HIGH_DEF_AUDIO},
456 isPrimaryCallActive() && mPrimary.hasProperty(Details.PROPERTY_HIGH_DEF_AUDIO) &
    [all...]
Call.java 24 import android.telecom.Call.Details;
279 return "Call Details";
317 android.telecom.Call.Details details) {
318 Log.d(this, "TelecomCallCallback onStateChanged call=" + call + " details="
319 + details);
724 if ((capabilities & android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE) != 0) {
728 ((android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE
733 capabilities &= ~android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE;
748 return hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE)
    [all...]
TelecomAdapter.java 138 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE)) {
150 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE)) {
  /external/opencv3/modules/highgui/src/
agile_wrl.h 6 // Code in Details namespace is for internal usage within the library code
43 #define __is_win_class(T) (std::is_same<T, HSTRING__>::value || std::is_base_of<Microsoft::WRL::Details::RuntimeClassBase, T>::value) //derived from Microsoft::WRL::RuntimeClass or HSTRING
45 namespace Details
133 } // namespace Details
140 bool TIsNotAgile = (__is_win_class(typename Details::AgileTypeHelper<T>::type) && !__is_winrt_agile(typename Details::AgileTypeHelper<T>::type)) ||
141 __is_win_interface(typename Details::AgileTypeHelper<T>::type)
145 static_assert(__is_win_class(typename Details::AgileTypeHelper<T>::type) || __is_win_interface(typename Details::AgileTypeHelper<T>::type), "Agile can only be used with ref class or interface class types");
146 typename typedef Details::AgileTypeHelper<T>::agileMemberType TypeT
    [all...]
  /external/opencv3/modules/videoio/src/
agile_wrl.hpp 6 // Code in Details namespace is for internal usage within the library code
43 #define __is_win_class(T) (std::is_same<T, HSTRING__>::value || std::is_base_of<Microsoft::WRL::Details::RuntimeClassBase, T>::value) //derived from Microsoft::WRL::RuntimeClass or HSTRING
45 namespace Details
133 } // namespace Details
140 bool TIsNotAgile = (__is_win_class(typename Details::AgileTypeHelper<T>::type) && !__is_winrt_agile(typename Details::AgileTypeHelper<T>::type)) ||
141 __is_win_interface(typename Details::AgileTypeHelper<T>::type)
145 static_assert(__is_win_class(typename Details::AgileTypeHelper<T>::type) || __is_win_interface(typename Details::AgileTypeHelper<T>::type), "Agile can only be used with ref class or interface class types");
146 typename typedef Details::AgileTypeHelper<T>::agileMemberType TypeT
    [all...]
  /external/llvm/lib/Target/WebAssembly/
Relooper.cpp 6 // License. See LICENSE.TXT for details.
68 /// Implementation details: The Relooper instance has
256 std::unique_ptr<Branch> Details;
257 Details.swap(Prior->BranchesOut[Original]);
258 Prior->BranchesOut[Split] = make_unique<Branch>(Details->Condition,
259 Details->Code);
262 Branch *Details = iter.second.get();
263 Split->BranchesOut[Post] = make_unique<Branch>(Details->Condition,
264 Details->Code);
835 Branch *Details = iter.second.get()
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
CallScreeningService.java 67 Call.Details.createFromParcelableCall((ParcelableCall) args.arg2));
211 * {@link CallScreeningService#respondToCall(Call.Details, CallScreeningService.CallResponse)}
214 * @param callDetails Information about a new incoming call, see {@link Call.Details}.
216 public abstract void onScreenCall(Call.Details callDetails);
225 public final void respondToCall(Call.Details callDetails, CallResponse response) {
Call.java 101 * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property
102 * and {@link Details#CAPABILITY_CAN_PULL_CALL} capability are set on the call.
118 public static class Details {
344 * Whether the capabilities of this {@code Details} supports the specified capability.
432 * Whether the properties of this {@code Details} includes the specified property.
587 if (o instanceof Details) {
588 Details d = (Details) o;
629 public Details(
663 public static Details createFromParcelableCall(ParcelableCall parcelableCall)
1301 Details details = Details.createFromParcelableCall(parcelableCall); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/
__init__.py 59 class Details(messages.Message):
63 stat: Individual stat details if found, else None.
110 (see make_key() for details).
145 @remote.method(GetDetailsRequest, Details)
147 """Get appstats details for a particular timestamp."""
148 response = Details()
  /external/clang/lib/StaticAnalyzer/Checkers/
VforkChecker.cpp 6 // License. See LICENSE.TXT for details.
13 // can't call functions not in whitelist, etc. For more details, see
57 const char *Details = 0) const;
122 const char *Details) const {
133 if (Details)
134 os << "; " << Details;
  /development/apps/Development/src/com/android/development/
Details.java 33 public class Details extends Activity
43 title = "Details";
129 TextView error = new TextView(Details.this);
DataList.java 103 intent.setClass(this, Details.class);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
instancestatus.py 25 class Details(dict):
87 :ivar details: A dict containing name-value pairs which provide
88 more details about the current status.
91 def __init__(self, status=None, details=None):
93 if not details:
94 details = Details()
95 self.details = details
101 if name == 'details'
    [all...]
volumestatus.py 24 from boto.ec2.instancestatus import Status, Details

Completed in 540 milliseconds

1 2 3 4