HomeSort by relevance Sort by last modified time
    Searched refs:intent (Results 1501 - 1525 of 4230) sorted by null

<<61626364656667686970>>

  /packages/services/Telephony/src/com/android/phone/settings/fdn/
EditFdnContactScreen.java 26 import android.content.Intent;
95 /** static intent to invoke phone number picker */
96 private static final Intent CONTACT_IMPORT_INTENT;
98 CONTACT_IMPORT_INTENT = new Intent(Intent.ACTION_GET_CONTENT);
126 protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
131 Bundle extras = (intent != null) ? intent.getExtras() : null;
155 cursor = getContentResolver().query(intent.getData()
221 Intent intent = getIntent(); local
343 Intent intent = mSubscriptionInfoHelper.getIntent(DeleteFdnContactScreen.class); local
352 Intent intent = new Intent(); local
    [all...]
  /platform_testing/tests/jank/webview/src/com/android/webview/chromium/tests/jank/
WebViewFlingTest.java 19 import android.content.Intent;
78 Intent intent = new Intent(Intent.ACTION_DEFAULT, local
80 intent.setClassName(CHROMIUM_SHELL_APP, CHROMIUM_SHELL_ACTIVITY);
81 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
82 getInstrumentation().getContext().startActivity(intent);
  /platform_testing/tests/perf/PerformanceAppTest/src/com/android/performanceapp/tests/
AppLaunchTests.java 31 import android.content.Intent;
132 Intent intent = new Intent(Intent.ACTION_MAIN); local
133 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
134 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
135 intent.setComponent(cn)
    [all...]
  /cts/tests/tests/assist/src/android/assist/cts/
AssistTestBase.java 27 import android.content.Intent;
98 mContext.sendBroadcast(new Intent(Utils.HIDE_SESSION));
110 Intent intent = new Intent(); local
112 intent.setAction("android.intent.action.TEST_START_ACTIVITY_" + testName);
113 intent.setComponent(new ComponentName(getInstrumentation().getContext(),
115 intent.putExtra(Utils.TESTCASE_TYPE, testName);
116 setActivityIntent(intent);
139 Intent intent = new Intent(Utils.BROADCAST_INTENT_START_ASSIST); local
224 Intent intent = null; local
    [all...]
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridActivity.java 20 import android.content.Intent;
133 Intent intent = getIntent(); local
135 mLayoutId = intent.getIntExtra(EXTRA_LAYOUT_RESOURCE_ID, R.layout.horizontal_grid);
136 mChildLayout = intent.getIntExtra(EXTRA_CHILD_LAYOUT_ID, -1);
137 mStaggered = intent.getBooleanExtra(EXTRA_STAGGERED, DEFAULT_STAGGERED);
138 mRequestLayoutOnFocus = intent.getBooleanExtra(EXTRA_REQUEST_LAYOUT_ONFOCUS,
140 mRequestFocusOnLayout = intent.getBooleanExtra(EXTRA_REQUEST_FOCUS_ONLAYOUT,
142 mUpdateSize = intent.getBooleanExtra(EXTRA_UPDATE_SIZE, true);
143 mUpdateSizeSecondary = intent.getBooleanExtra(EXTRA_UPDATE_SIZE_SECONDARY, false)
    [all...]
  /packages/apps/Settings/src/com/android/settings/password/
ConfirmLockPattern.java 20 import android.content.Intent;
67 public Intent getIntent() {
68 Intent modIntent = new Intent(super.getIntent());
135 Intent intent = getActivity().getIntent(); local
136 if (intent != null) {
137 mHeaderText = intent.getCharSequenceExtra(
139 mDetailsText = intent.getCharSequenceExtra(
355 mCredentialCheckResultTracker.setResult(true, new Intent(), 0, mEffectiveUserId)
    [all...]
ConfirmLockPassword.java 22 import android.content.Intent;
72 public Intent getIntent() {
73 Intent modIntent = new Intent(super.getIntent());
155 Intent intent = getActivity().getIntent(); local
156 if (intent != null) {
157 CharSequence headerMessage = intent.getCharSequenceExtra(
159 CharSequence detailsMessage = intent.getCharSequenceExtra(
307 mCredentialCheckResultTracker.setResult(true, new Intent(), 0, mEffectiveUserId)
349 Intent intent = new Intent(); local
    [all...]
  /prebuilts/misc/common/android-support-test/rules/
rules_release_no_deps.jar 
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
StorageItemPreferenceControllerTest.java 35 import android.content.Intent;
120 final ArgumentCaptor<Intent> argumentCaptor = ArgumentCaptor.forClass(Intent.class);
124 Intent intent = argumentCaptor.getValue(); local
125 assertThat(intent.getAction()).isEqualTo(Intent.ACTION_MAIN);
126 assertThat(intent.getComponent().getClassName()).isEqualTo(SubSettings.class.getName());
127 assertThat(intent.getStringExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT))
129 assertThat(intent.getIntExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT_TITLE_RESID, 0)
141 Intent intent = argumentCaptor.getValue(); local
169 Intent intent = argumentCaptor.getValue(); local
188 Intent intent = argumentCaptor.getValue(); local
223 Intent intent = argumentCaptor.getValue(); local
240 Intent intent = argumentCaptor.getValue(); local
258 Intent intent = argumentCaptor.getValue(); local
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
CallActivity.java 22 import android.content.Intent;
200 // Get Intent parameters.
201 final Intent intent = getIntent(); local
202 Uri roomUri = intent.getData();
205 Log.e(TAG, "Didn't get any URL in intent!");
210 String roomId = intent.getStringExtra(EXTRA_ROOMID);
213 Log.e(TAG, "Incorrect room ID in intent!");
218 boolean loopback = intent.getBooleanExtra(EXTRA_LOOPBACK, false);
219 boolean tracing = intent.getBooleanExtra(EXTRA_TRACING, false)
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/btservice/
RemoteDevicesTest.java 16 import android.content.Intent;
37 private ArgumentCaptor<Intent> mIntentArgument = ArgumentCaptor.forClass(Intent.class);
69 // Verify that updating battery level triggers ACTION_BATTERY_LEVEL_CHANGED intent
80 // Verify that update same battery level for the same device does not trigger intent
84 // Verify that updating battery level to different value triggers the intent again
106 // Verify that updating with invalid battery level does not trigger the intent
123 // Verify that updating invalid battery level does not trigger the intent
152 // Verify that updating battery level triggers ACTION_BATTERY_LEVEL_CHANGED intent
166 // Verify BATTERY_LEVEL_CHANGED intent is sent after first rese
412 Intent intent = new Intent(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED); local
421 Intent intent = new Intent(BluetoothHeadset.ACTION_HF_INDICATORS_VALUE_CHANGED); local
430 Intent intent = new Intent(BluetoothHeadset.ACTION_VENDOR_SPECIFIC_HEADSET_EVENT); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetService.java 22 import android.content.Intent;
69 public RemoteViewsFactory onGetViewFactory(Intent intent) {
70 return new MailFactory(getApplicationContext(), intent, this);
122 // Launch an intent to avoid ANRs
123 final Intent intent = new Intent(context, serviceClass); local
124 intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
125 intent.putExtra(Utils.EXTRA_ACCOUNT, account.serialize())
    [all...]
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportProgressService.java 67 import android.content.Intent;
113 * <li>{@link BugreportReceiver} receives the intent and delegates it to this service.
121 * <li>When {@code dumpstate} finishes, it sends a {@code BUGREPORT_FINISHED} intent.
122 * <li>{@link BugreportReceiver} receives the intent and delegates it to this service, which in
141 "com.android.internal.intent.action.BUGREPORT_STARTED";
143 "com.android.internal.intent.action.BUGREPORT_FINISHED";
145 "com.android.internal.intent.action.REMOTE_BUGREPORT_FINISHED";
148 static final String INTENT_BUGREPORT_CANCEL = "android.intent.action.BUGREPORT_CANCEL";
149 static final String INTENT_BUGREPORT_SHARE = "android.intent.action.BUGREPORT_SHARE";
151 "android.intent.action.BUGREPORT_INFO_LAUNCH"
345 final Intent intent; local
555 final Intent intent = new Intent(INTENT_BUGREPORT_CANCEL); local
859 final Intent intent = new Intent(context, BugreportWarningActivity.class); local
880 final Intent intent = new Intent(Intent.ACTION_SEND_MULTIPLE); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 54 import android.content.Intent;
96 * Intent indicating incoming obex authentication request which is from
102 * Intent indicating obex session key input complete by user which is sent
108 * Intent indicating user canceled obex authentication session key input
114 * Intent indicating timeout for user confirmation, which is sent to
121 * Intent Extra name indicating session key which is sent from
217 // package and class name to which we send intent to check phone book access permission
246 // process the intent from receiver
247 private void parseIntent(final Intent intent) {
625 Intent intent = local
757 Intent intent = new Intent(BluetoothPbap.PBAP_STATE_CHANGED_ACTION); local
1052 Intent intent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REQUEST); local
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DvrUiHelper.java 24 import android.content.Intent;
197 Intent intent = new Intent(activity, DvrBrowseActivity.class);
198 activity.startActivity(intent);
385 Intent intent = new Intent(context, DvrPlaybackActivity.class); local
386 intent.putExtra(Utils.EXTRA_KEY_RECORDED_PROGRAM_ID, programId);
388 intent.putExtra(Utils.EXTRA_KEY_RECORDED_PROGRAM_SEEK_TIME, seekTimeMs)
419 Intent intent = new Intent(context, DvrSchedulesActivity.class); local
434 Intent intent = new Intent(context, DvrSchedulesActivity.class); local
495 Intent intent = new Intent(context, DvrSeriesSettingsActivity.class); local
517 Intent intent = new Intent(context, DvrSeriesScheduledDialogActivity.class); local
537 Intent intent = new Intent(activity, DvrDetailsActivity.class); local
589 Intent intent = new Intent(context, DvrSeriesDeletionActivity.class); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
PolicyTransparencyTestActivity.java 21 import android.content.Intent;
225 startActivity(new Intent(mSettingsIntentAction));
228 final Intent intent = new Intent(CommandReceiverActivity.ACTION_EXECUTE_COMMAND); local
229 intent.putExtra(CommandReceiverActivity.EXTRA_COMMAND, testItem.command);
231 intent.putExtra(CommandReceiverActivity.EXTRA_VALUE, editText.getText().toString());
232 startActivity(intent);
238 final Intent intent = new Intent(CommandReceiverActivity.ACTION_EXECUTE_COMMAND) local
257 final Intent intent = new Intent(CommandReceiverActivity.ACTION_EXECUTE_COMMAND); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 29 import android.content.Intent;
147 // Didn't find a time in the bundle, look in intent or current time
151 Intent intent = getIntent(); local
152 if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
157 query = intent.getStringExtra(SearchManager.QUERY);
199 Intent intent = new Intent(Intent.ACTION_VIEW) local
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/spam/
SpamNotificationActivity.java 24 import android.content.Intent;
80 * Creates an intent to start this activity.
82 * @return Intent intent that starts this activity.
84 public static Intent createActivityIntent(
86 Intent intent = new Intent(context, SpamNotificationActivity.class); local
87 intent.setAction(action);
89 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
98 Intent intent = new Intent(ContactsContract.Intents.Insert.ACTION); local
145 Intent intent = getIntent(); local
    [all...]
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java 23 import android.content.Intent;
416 @Override public IBinder onBind(Intent intent) {
417 if (IKeyChainService.class.getName().equals(intent.getAction())) {
424 protected void onHandleIntent(final Intent intent) {
425 if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
459 Intent intent = new Intent(KeyChain.ACTION_STORAGE_CHANGED) local
466 Intent intent = new Intent(KeyChain.ACTION_KEYCHAIN_CHANGED); local
471 Intent intent = new Intent(KeyChain.ACTION_TRUST_STORE_CHANGED); local
483 Intent intent = new Intent(KeyChain.ACTION_KEY_ACCESS_CHANGED); local
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
HostEmulationManager.java 23 import android.content.Intent;
133 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); local
134 intent.setPackage("com.android.nfc");
135 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
279 Intent intent = new Intent(TapAgainDialog.ACTION_CLOSE); local
280 intent.setPackage("com.android.nfc")
351 Intent intent = new Intent(HostApduService.SERVICE_INTERFACE); local
379 Intent intent = new Intent(mContext, AppChooserActivity.class); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 22 import android.content.Intent;
23 import android.content.Intent.ShortcutIconResource;
56 * {@link Intent#EXTRA_INTENT} query, along with any injected items.
67 * Base {@link Intent} used when building list.
69 private Intent mBaseIntent;
75 final Intent intent = getIntent(); local
77 // Read base intent from extras, otherwise assume default
78 Parcelable parcel = intent.getParcelableExtra(Intent.EXTRA_INTENT)
115 Intent intent = getIntentForPosition(which); local
149 final Intent intent = getIntent(); local
255 Intent intent = new Intent(baseIntent); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
StorageItemPreferenceController.java 22 import android.content.Intent;
129 Intent intent = null; local
135 intent = getPhotosIntent();
138 intent = getAudioIntent();
141 intent = getGamesIntent();
144 intent = getMoviesIntent();
152 intent = getAppsIntent();
155 intent = getFilesIntent();
166 if (intent != null)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
SimContacts.java 30 import android.content.Intent;
235 Intent intent = getIntent(); local
236 if (intent != null) {
237 final String accountName = intent.getStringExtra("account_name");
238 final String accountType = intent.getStringExtra("account_type");
261 final Intent intent = getIntent(); local
263 if (intent.hasExtra("subscription_id")) {
264 subId = intent.getIntExtra("subscription_id", -1)
372 Intent intent = new Intent(Intent.ACTION_CALL_PRIVILEGED, local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleEncryptedClientBaseActivity.java 27 import android.content.Intent;
71 Intent intent = new Intent(BleEncryptedClientBaseActivity.this, BleEncryptedClientService.class);
75 intent.setAction(BleEncryptedClientService.ACTION_WRITE_ENCRYPTED_CHARACTERISTIC);
78 intent.setAction(BleEncryptedClientService.ACTION_READ_ENCRYPTED_CHARACTERISTIC);
81 intent.setAction(BleEncryptedClientService.ACTION_WRITE_ENCRYPTED_DESCRIPTOR);
84 intent.setAction(BleEncryptedClientService.ACTION_READ_ENCRYPTED_DESCRIPTOR);
89 startService(intent);
179 public void onReceive(Context context, Intent intent) {
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
PhoneAccountTest.java 26 import android.content.Intent;
147 Intent intent = new Intent(Intent.ACTION_CALL); local
148 intent.setData(Uri.parse("tel:" + phoneNumber));
149 intent.putExtra(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandle);
150 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
151 mContext.startActivity(intent);
173 Intent intent = queue.poll(10, TimeUnit.SECONDS); local
    [all...]

Completed in 1439 milliseconds

<<61626364656667686970>>