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

1 2 3 4

  /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 assertTrue(Call.Details.can(CAPABILITY_CAN_PULL_CALL, CAPABILITY_CAN_PULL_CALL));
37 assertFalse(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_HOLD));
38 assertFalse(Call.Details.can(CAPABILITY_MERGE_CONFERENCE
45 Call.Details.capabilitiesToString(CAPABILITY_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;
114 * Call details.
148 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_HOLD));
149 assertTrue(mCall.getDetails().can(Call.Details.CAPABILITY_MUTE));
150 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_MANAGE_CONFERENCE));
151 assertFalse(mCall.getDetails().can(Call.Details.CAPABILITY_RESPOND_VIA_TEXT))
    [all...]
ExternalCallTest.java 31 * {@link android.telecom.Call.Details#PROPERTY_IS_EXTERNAL_CALL} properties, respectively, set.
71 assertCallProperties(mCall, Call.Details.PROPERTY_IS_EXTERNAL_CALL);
72 assertCallCapabilities(mCall, Call.Details.CAPABILITY_CAN_PULL_CALL);
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);
183 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) {
206 if (call.getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE) == true) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
CallSdkCompat.java 25 public static class Details {
26 public static final int PROPERTY_IS_EXTERNAL_CALL = Call.Details.PROPERTY_IS_EXTERNAL_CALL;
27 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL;
28 public static final int CAPABILITY_CAN_PULL_CALL = Call.Details.CAPABILITY_CAN_PULL_CALL;
30 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO;
  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 92 properties |= android.telecom.Call.Details.PROPERTY_CONFERENCE;
96 properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL;
103 capabilities |= android.telecom.Call.Details.CAPABILITY_RESPOND_VIA_TEXT;
108 capabilities, android.telecom.Call.Details.CAPABILITY_MUTE);
113 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL);
115 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL);
235 android.telecom.Call.Details.CAPABILITY_HOLD,
238 android.telecom.Call.Details.CAPABILITY_SUPPORT_HOLD,
241 android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE,
244 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...]
ExternalCallList.java 19 * External calls are those with {@link android.telecom.Call.Details#PROPERTY_IS_EXTERNAL_CALL}.
34 public void onDetailsChanged(Call call, Call.Details details) {
48 .hasProperty(CallSdkCompat.Details.PROPERTY_IS_EXTERNAL_CALL));
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...]
Call.java 24 import android.telecom.Call.Details;
281 return "Call Details";
319 android.telecom.Call.Details details) {
320 Log.d(this, "TelecomCallCallback onStateChanged call=" + call + " details="
321 + details);
744 if ((capabilities & android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE) != 0) {
748 ((android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE
753 capabilities &= ~android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE;
768 return hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE)
    [all...]
ExternalCallNotifier.java 276 & CallSdkCompat.Details.CAPABILITY_CAN_PULL_CALL)
277 == CallSdkCompat.Details.CAPABILITY_CAN_PULL_CALL) {
321 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE) &&
323 .hasProperty(android.telecom.Call.Details.PROPERTY_GENERIC_CONFERENCE)) {
368 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE) &&
370 .hasProperty(android.telecom.Call.Details.PROPERTY_GENERIC_CONFERENCE)) {
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
ExternalCallListTest.java 90 TestTelecomCall call = getTestCall(Call.Details.PROPERTY_IS_EXTERNAL_CALL);
105 TestTelecomCall call = getTestCall(Call.Details.PROPERTY_IS_EXTERNAL_CALL);
114 TestTelecomCall call = getTestCall(Call.Details.PROPERTY_IS_EXTERNAL_CALL);
131 Call.Details.CAPABILITY_CAN_PULL_CALL, /* capabilities */
TestTelecomCall.java 72 // Create an instance of the call details.
73 Class<?> callDetailsClass = android.telecom.Call.Details.class;
92 android.telecom.Call.Details details = (android.telecom.Call.Details) local
99 // Finally, set this as the details of the call.
102 detailsField.set(call, details);
133 android.telecom.Call.Details.class);
ExternalCallNotifierTest.java 171 call.setCapabilities(android.telecom.Call.Details.CAPABILITY_CAN_PULL_CALL);
201 canPull ? android.telecom.Call.Details.CAPABILITY_CAN_PULL_CALL : 0, /* capabilities */
202 Call.Details.PROPERTY_IS_EXTERNAL_CALL, /* properties */
  /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 102 * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property
103 * and {@link Details#CAPABILITY_CAN_PULL_CALL} capability are set on the call.
118 public static class Details {
347 * Whether the capabilities of this {@code Details} supports the specified capability.
435 * Whether the properties of this {@code Details} includes the specified property.
593 if (o instanceof Details) {
594 Details d = (Details) o;
635 public Details(
669 public static Details createFromParcelableCall(ParcelableCall parcelableCall)
1356 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);
  /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...]

Completed in 415 milliseconds

1 2 3 4