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

1 2 3 4 5 6 7 8 91011>>

  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__3.py 7 extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"} variable in class:table_T_S_I__3
T_S_I__1.py 7 extras = {0xfffa: "ppgm", 0xfffb: "cvt", 0xfffc: "reserved", 0xfffd: "fpgm"} variable in class:table_T_S_I__1
30 if self.extras[extraCode] == "fpgm": # this is the last one
37 self.extraPrograms[self.extras[extraCode]] = text
63 codes = sorted(self.extras.items())
  /frameworks/support/media/version-compat-tests/current/service/src/androidTest/java/android/support/mediacompat/service/
ServiceBroadcastReceiver.java 71 Bundle extras = intent.getExtras(); local
72 if (ACTION_CALL_MEDIA_BROWSER_SERVICE_METHOD.equals(intent.getAction()) && extras != null) {
74 int method = extras.getInt(KEY_METHOD_ID, 0);
78 service.notifyChildrenChanged(extras.getString(KEY_ARGUMENT));
87 service.mCustomActionResult.sendProgressUpdate(extras.getBundle(KEY_ARGUMENT));
90 service.mCustomActionResult.sendError(extras.getBundle(KEY_ARGUMENT));
93 service.mCustomActionResult.sendResult(extras.getBundle(KEY_ARGUMENT));
100 } else if (ACTION_CALL_MEDIA_SESSION_METHOD.equals(intent.getAction()) && extras != null) {
102 int method = extras.getInt(KEY_METHOD_ID, 0);
106 session.setExtras(extras.getBundle(KEY_ARGUMENT))
    [all...]
  /frameworks/support/media/version-compat-tests/previous/service/src/androidTest/java/android/support/mediacompat/service/
ServiceBroadcastReceiver.java 70 Bundle extras = intent.getExtras(); local
71 if (ACTION_CALL_MEDIA_BROWSER_SERVICE_METHOD.equals(intent.getAction()) && extras != null) {
73 int method = extras.getInt(KEY_METHOD_ID, 0);
77 service.notifyChildrenChanged(extras.getString(KEY_ARGUMENT));
86 service.mCustomActionResult.sendProgressUpdate(extras.getBundle(KEY_ARGUMENT));
89 service.mCustomActionResult.sendError(extras.getBundle(KEY_ARGUMENT));
92 service.mCustomActionResult.sendResult(extras.getBundle(KEY_ARGUMENT));
99 } else if (ACTION_CALL_MEDIA_SESSION_METHOD.equals(intent.getAction()) && extras != null) {
101 int method = extras.getInt(KEY_METHOD_ID, 0);
105 session.setExtras(extras.getBundle(KEY_ARGUMENT))
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
MagnificationGesturesPreferenceController.java 52 Bundle extras = preference.getExtras(); local
53 populateMagnificationGesturesPreferenceExtras(extras, mContext);
54 extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked());
55 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW);
84 static void populateMagnificationGesturesPreferenceExtras(Bundle extras, Context context) {
85 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY,
87 extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES,
89 extras.putInt(AccessibilitySettings.EXTRA_SUMMARY_RES,
91 extras.putInt(AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID,
MagnificationNavbarPreferenceController.java 52 Bundle extras = preference.getExtras(); local
53 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY,
55 extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES,
57 extras.putInt(AccessibilitySettings.EXTRA_SUMMARY_RES,
59 extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked());
60 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW);
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
HtmlifyBeginResult.java 26 public final Object extras; field in class:HtmlifyBeginResult
28 public HtmlifyBeginResult(Spanned result, Object extras) {
30 this.extras = extras;
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SampleChooserTargetService.java 44 Bundle extras = new Bundle(); local
45 extras.putInt(Contact.ID, i);
58 extras));
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SampleChooserTargetService.java 44 Bundle extras = new Bundle(); local
45 extras.putInt(Contact.ID, i);
58 extras));
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
SampleChooserTargetService.java 44 Bundle extras = new Bundle(); local
45 extras.putInt(Contact.ID, i);
58 extras));
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
BrokenSettingsEnabledProvider.java 45 Bundle extras = c.getExtras(); local
46 extras.putString(
  /packages/apps/Settings/src/com/android/settings/security/
ChangeProfileScreenLockPreferenceController.java 76 final Bundle extras = new Bundle(); local
77 extras.putInt(Intent.EXTRA_USER_ID, mProfileChallengeUserId);
82 .setArguments(extras)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 29 private final Bundle extras = new Bundle(); field in class:ShadowIntent
55 extras.putAll(other.extras);
192 extras.putAll(src);
199 extras.putAll(srcShadowIntent.extras);
205 return extras != null ? new Bundle(extras) : null;
210 extras.putInt(key, value);
216 extras.putDouble(key, value)
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
BackupManagerMonitorUtils.java 44 * @param extras - additional event data.
48 PackageInfo pkg, int category, Bundle extras) {
62 if (extras != null) {
63 bundle.putAll(extras);
80 * @param extras - bundle where to add key-value to, if null a new bundle will be created.
83 * @return extras if it was not null and new bundle otherwise.
85 public static Bundle putMonitoringExtra(Bundle extras, String key, String value) {
86 if (extras == null) {
87 extras = new Bundle();
89 extras.putString(key, value)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivity1.java 34 Bundle extras = getIntent().getExtras(); local
35 if (extras != null) {
36 mWaitForReclaim = extras.getBoolean("wait-for-reclaim", mWaitForReclaim);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
CallNotificationReceiver.java 91 Bundle extras = new Bundle(); local
92 extras.putInt(TestConnectionService.EXTRA_START_VIDEO_STATE, videoState);
94 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle);
97 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras);
107 Bundle extras = new Bundle(); local
108 extras.putInt(TestConnectionService.EXTRA_START_VIDEO_STATE, videoState);
110 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle);
112 extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_RTT, true);
114 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras);
117 public static void addNewUnknownCall(Context context, Uri handle, Bundle extras) {
    [all...]
SelfManagedCallingActivity.java 160 Bundle extras = new Bundle(); local
161 extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE,
164 extras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE,
170 extras.putBundle(TelecomManager.EXTRA_OUTGOING_CALL_EXTRAS, clientExtras);
171 tm.placeCall(Uri.parse(mNumber.getText().toString()), extras); local
185 Bundle extras = new Bundle(); local
186 extras.putParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS,
188 extras.putBoolean(SelfManagedConnectionService.EXTRA_HOLDABLE,
191 extras.putInt(TelecomManager.EXTRA_INCOMING_VIDEO_STATE,
195 extras.putBoolean(TelecomManager.EXTRA_IS_HANDOVER, true)
197 tm.addNewIncomingCall(getSelectedPhoneAccountHandle(), extras); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUI.java 56 final Bundle extras = new Bundle(); local
60 extras.putString(Notification.EXTRA_SUBSTITUTE_APP_NAME, appName);
62 n.addExtras(extras);
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
PinWidgetFlowHandler.java 62 Bundle extras = new Bundle(); local
63 extras.putInt(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
64 mRequest.accept(extras);
  /frameworks/support/content/src/androidTest/java/androidx/contentpager/content/
TestQueryCallback.java 47 Bundle extras = new Bundle(); local
48 extras.putParcelable(URI_KEY, query.getUri());
49 extras.putInt(URI_PAGE_ID, query.getId());
51 cursor.setExtras(extras);
96 Bundle extras = cursor.getExtras(); local
97 assertNotNull(extras);
98 assertTrue(extras.containsKey(URI_KEY));
99 assertEquals(extras.getParcelable(URI_KEY), expectedUri);
100 assertTrue(extras.containsKey(URI_PAGE_ID));
101 assertEquals(extras.getInt(URI_PAGE_ID), expectedPageId)
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
PstnIncomingCallNotifier.java 197 Bundle extras = new Bundle(); local
201 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, uri);
209 extras.putInt(ImsExternalCallTracker.EXTRA_IMS_EXTERNAL_CALL_ID,
214 extras.putLong(TelecomManager.EXTRA_CALL_CREATED_TIME_MILLIS,
225 TelecomManager.from(mPhone.getContext()).addNewUnknownCall(handle, extras);
236 Bundle extras = new Bundle(); local
240 extras.putParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS, uri);
244 extras.putLong(TelecomManager.EXTRA_CALL_CREATED_TIME_MILLIS,
249 extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_RTT, true);
260 TelecomManager.from(mPhone.getContext()).addNewIncomingCall(handle, extras);
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BroadcastRpcBase.java 85 assertNotNull("Didn't receive result extras", responseBundle.get());
127 final Bundle extras = new Bundle(); local
129 extras.putByteArray(EXTRA_PAYLOAD, responseToBytes(response));
132 extras.putString(EXTRA_EXCEPTION,
135 setResultExtras(extras);
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemjob/
SystemJobInfoConverter.java 73 PersistableBundle extras = new PersistableBundle(); local
74 extras.putString(EXTRA_WORK_SPEC_ID, workSpec.id);
75 extras.putBoolean(EXTRA_IS_PERIODIC, workSpec.isPeriodic());
80 .setExtras(extras);
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorMissedCallCreator.java 77 Bundle extras = new Bundle(); local
78 extras.putInt(EXTRA_CALL_COUNT, callCount - 1);
79 extras.putBoolean(EXTRA_IS_MISSED_CALL_CONNECTION, true);
82 context, callerId, SimulatorSimCallManager.CALL_TYPE_VOICE, extras);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/suggestions/
SuggestionStateProviderTest.java 77 final Bundle extras = new Bundle(); local
78 extras.putString(SuggestionStateProvider.EXTRA_CANDIDATE_ID, "ID");
79 extras.putParcelable(EXTRA_COMPONENT_NAME, new ComponentName("pkg", "cls"));
81 mProvider.call(SuggestionStateProvider.METHOD_GET_SUGGESTION_STATE, "foobar", extras);

Completed in 273 milliseconds

1 2 3 4 5 6 7 8 91011>>