/cts/tests/tests/telecom/src/android/telecom/cts/ |
CallTest.java | 19 import static android.telecom.Call.Details.*; 30 assertTrue(Call.Details.can(CAPABILITY_HOLD, CAPABILITY_HOLD)); 31 assertTrue(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_MUTE)); 32 assertTrue(Call.Details.can(CAPABILITY_HOLD | CAPABILITY_DISCONNECT_FROM_CONFERENCE, 34 assertTrue(Call.Details.can(CAPABILITY_MERGE_CONFERENCE 37 assertTrue(Call.Details.can(CAPABILITY_CAN_PAUSE_VIDEO, CAPABILITY_CAN_PAUSE_VIDEO)); 38 assertTrue(Call.Details.can(CAPABILITY_CAN_PULL_CALL, CAPABILITY_CAN_PULL_CALL)); 40 assertFalse(Call.Details.can(CAPABILITY_MUTE, CAPABILITY_HOLD)); 41 assertFalse(Call.Details.can(CAPABILITY_MERGE_CONFERENCE 48 Call.Details.capabilitiesToString(CAPABILITY_HOLD)) [all...] |
CallDetailsTest.java | 41 * Suites of tests that verifies the various Call details. 58 Call.Details.CAPABILITY_HOLD | Call.Details.CAPABILITY_MUTE; 60 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...] |
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) {
|
/packages/apps/Dialer/java/com/android/contacts/common/compat/ |
CallCompat.java | 29 && ((call.getDetails().getCallCapabilities() & Details.CAPABILITY_CAN_PULL_CALL) 30 == Details.CAPABILITY_CAN_PULL_CALL); 33 /** android.telecom.Call.Details */ 34 public static class Details { 36 public static final int PROPERTY_IS_EXTERNAL_CALL = Call.Details.PROPERTY_IS_EXTERNAL_CALL; 37 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL; 38 public static final int CAPABILITY_CAN_PULL_CALL = Call.Details.CAPABILITY_CAN_PULL_CALL; 40 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO;
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
ParcelableCallUtils.java | 98 properties |= android.telecom.Call.Details.PROPERTY_CONFERENCE; 102 properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL; 109 capabilities |= android.telecom.Call.Details.CAPABILITY_RESPOND_VIA_TEXT; 114 capabilities, android.telecom.Call.Details.CAPABILITY_MUTE); 119 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL); 121 android.telecom.Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL); 247 android.telecom.Call.Details.CAPABILITY_HOLD, 250 android.telecom.Call.Details.CAPABILITY_SUPPORT_HOLD, 253 android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE, 256 android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE [all...] |
/packages/apps/Contacts/src/com/android/contacts/compat/ |
CallSdkCompat.java | 25 public static class Details { 29 public static final int PROPERTY_ENTERPRISE_CALL = Call.Details.PROPERTY_ENTERPRISE_CALL; 34 Call.Details.CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
LibCallAliasAnalysis.cpp | 6 // License. See LICENSE.TXT for details. 56 const LibCallFunctionInfo::LocationMRInfo *Details = FI->LocationDetails; 57 if (Details == 0) 60 // If the details array is of the 'DoesNot' kind, we only know something if 61 // the pointer is a match for one of the locations in 'Details'. If we find a 66 for (unsigned i = 0; Details[i].LocationID != ~0U; ++i) { 68 LCI->getLocationInfo(Details[i].LocationID); 74 return ModRefResult(MRInfo & ~Details[i].MRInfo); 79 // If the details are of the 'DoesOnly' sort, we know something if the pointer 80 // is a match for one of the locations in 'Details'. Also, if we can prov [all...] |
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
OProfileJITEventListener.cpp | 6 // License. See LICENSE.TXT for details. 48 const EmittedFunctionDetails &Details); 106 const EmittedFunctionDetails &Details) { 117 if (!Details.LineStarts.empty()) { 119 // format in Details to the address/filename/lineno format that OProfile 124 LineInfo.reserve(1 + Details.LineStarts.size()); 126 DebugLoc FirstLoc = Details.LineStarts[0].Loc; 144 I = Details.LineStarts.begin(), E = Details.LineStarts.end(); 147 *Details.MF, Filenames, I->Address, I->Loc)) [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
JITEventListener.h | 6 // License. See LICENSE.TXT for details. 64 const EmittedFunctionDetails &Details) {}
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/ |
internal.h | 14 namespace Details {
|
client.h | 20 namespace Details { 41 template <typename T> class ComPtrRef : public Details::ComPtrRefBase<T> { 168 operator Details::BoolType() const throw() { 169 return Get() != nullptr ? &Details::BoolStruct::Member : nullptr; 180 Details::ComPtrRef<ComPtr<T>> operator&() throw() { 181 return Details::ComPtrRef<ComPtr<T>>(this); 184 const Details::ComPtrRef<const ComPtr<T>> operator&() const throw() { 185 return Details::ComPtrRef<const ComPtr<T>>(this); 235 HRESULT As(Details::ComPtrRef<ComPtr<U>> p) const throw() { 273 void **IID_PPV_ARGS_Helper(::Microsoft::WRL::Details::ComPtrRef<T> pp) throw() [all...] |
/packages/apps/DocumentsUI/src/com/android/documentsui/selection/demo/ |
DemoHolder.java | 32 private final Details mDetails; 40 mDetails = new Details(this); 81 Details getItemDetails() { 85 private static final class Details extends ItemDetails { 89 Details(DemoHolder holder) {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
InCallServiceImpl.java | 25 import android.telecom.Call.Details; 223 Call call, Details details) { 229 new CallEvent<Details>(mCallId, details)); 785 public static Call.Details callGetDetails(String callId) { 796 Call.Details details = callGetDetails(callId); local 798 if (details == null) { 802 return getCallPropertiesString(details.getCallProperties()) 806 Call.Details details = callGetDetails(callId); local [all...] |
/packages/apps/Dialer/java/com/android/incallui/ |
ConferenceManagerPresenter.java | 72 public void onDetailsChanged(DialerCall call, android.telecom.Call.Details details) { 74 details.can(android.telecom.Call.Details.CAPABILITY_DISCONNECT_FROM_CONFERENCE); 76 details.can(android.telecom.Call.Details.CAPABILITY_SEPARATE_FROM_CONFERENCE); 78 if (call.can(android.telecom.Call.Details.CAPABILITY_DISCONNECT_FROM_CONFERENCE) 80 || call.can(android.telecom.Call.Details.CAPABILITY_SEPARATE_FROM_CONFERENCE) 85 if (!details.can(android.telecom.Call.Details.CAPABILITY_MANAGE_CONFERENCE)) [all...] |
/external/llvm/unittests/ProfileData/ |
SampleProfTest.cpp | 6 // License. See LICENSE.TXT for details. 126 std::vector<ProfileSummaryEntry> &Details = Summary.getDetailedSummary(); 127 auto EightyPerc = std::find_if(Details.begin(), Details.end(), Predicate); 129 auto NinetyPerc = std::find_if(Details.begin(), Details.end(), Predicate); 132 std::find_if(Details.begin(), Details.end(), Predicate); 135 std::find_if(Details.begin(), Details.end(), Predicate) [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 | 111 * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property 112 * and {@link Details#CAPABILITY_CAN_PULL_CALL} capability are set on the call. 215 public static class Details { 469 * Whether the capabilities of this {@code Details} supports the specified capability. 560 * Whether the properties of this {@code Details} includes the specified property. 745 if (o instanceof Details) { 746 Details d = (Details) o; 788 public Details( 1924 Details details = Details.createFromParcelableCall(parcelableCall); local [all...] |
/packages/apps/Dialer/java/com/android/incallui/call/ |
ExternalCallList.java | 34 * <p>External calls are those with {@code android.telecom.Call.Details#PROPERTY_IS_EXTERNAL_CALL}. 45 public void onDetailsChanged(Call call, Call.Details details) { 53 telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)); 106 if (!call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) {
|
TelecomAdapter.java | 96 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE)) { 110 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE)) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/wrappers/ |
corewrappers.h | 20 namespace Details { 30 ::Microsoft::WRL::Details::RaiseException(hres); 56 ::Microsoft::WRL::Details::RaiseException(INTSAFE_E_ARITHMETIC_OVERFLOW);
|
/cts/tests/tests/telecom3/src/android/telecom/cts/ |
SelfManagedAwareInCallServiceTest.java | 127 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED)); 151 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED)); 174 assertTrue(call.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED));
|
/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 = nullptr) 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/autotest/site_utils/sponge_lib/ |
sponge_utils_functional_test.py | 30 "Details": "setup_class failed for FilteringTest.", 41 "Details": null,
|