/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/ |
D | MockIme.java | 653 @NonNull Bundle arguments) { 656 }, arguments); 665 @NonNull Supplier<T> supplier, @NonNull Bundle arguments) { 673 0, enterState, null, arguments, 688 exitWallTime, enterState, exitState, arguments, result)); 698 final Bundle arguments = new Bundle(); 699 arguments.putBoolean("isFullscreen", isFullscreen); 700 arguments.putBoolean("isCandidatesOnly", isCandidatesOnly); 701 recordEventInternal("onConfigureWindow", runnable, arguments); 718 final Bundle arguments = new Bundle(); [all …]
|
D | ImeEvent.java | 86 @NonNull Bundle arguments, @Nullable Object returnValue) { in ImeEvent() argument 88 exitTimestamp, enterWallTime, exitWallTime, enterState, exitState, arguments, in ImeEvent() 95 @Nullable ImeState exitState, @NonNull Bundle arguments, @Nullable Object returnValue, in ImeEvent() argument 108 mArguments = arguments; in ImeEvent() 168 final Bundle arguments = bundle.getBundle("mArguments"); in fromBundle() local 197 enterState, exitState, arguments, result, returnType); in fromBundle()
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | AccessibilityTextTraversalTest.java | 111 final Bundle arguments = new Bundle(); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() local 112 arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT, in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 121 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 151 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 181 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 207 arguments)); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 215 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 245 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 275 arguments); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() 301 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments)); in testActionNextAndPreviousAtGranularityCharacterOverContentDescription() [all …]
|
/cts/hostsidetests/securitybulletin/src/android/security/cts/ |
D | AdbUtils.java | 102 public static String runPoc(String pocName, ITestDevice device, int timeout, String arguments) in runPoc() argument 106 if (arguments != null) { in runPoc() 107 device.executeShellCommand("/data/local/tmp/" + pocName + " " + arguments, receiver, in runPoc() 139 String arguments) throws Exception { in runPocNoOutput() argument 142 if (arguments != null) { in runPocNoOutput() 143 device.executeShellCommand("/data/local/tmp/" + pocName + " " + arguments, receiver, in runPocNoOutput() 335 public static int runPocGetExitStatus(String pocName, String arguments, ITestDevice device, in runPocGetExitStatus() argument 339 String cmd = TMP_PATH + pocName + " " + arguments + " > /dev/null 2>&1; echo $?"; in runPocGetExitStatus() 371 public static void runPocAssertExitStatusNotVulnerable(String pocName, String arguments, in runPocAssertExitStatusNotVulnerable() argument 374 runPocGetExitStatus(pocName, arguments, device, timeout) != 113); in runPocAssertExitStatusNotVulnerable() [all …]
|
/cts/hostsidetests/numberblocking/app/src/com/android/cts/numberblocking/hostside/ |
D | BaseNumberBlockingClientTest.java | 41 Bundle arguments = InstrumentationRegistry.getArguments(); in setUp() local 42 mBlockedPhoneNumber = arguments.getString("blocked_number"); in setUp() 44 mPhoneAccountId = arguments.getString("phone_account_id"); in setUp()
|
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/ |
D | DirectActionsSession.java | 155 final Bundle arguments = args.getBundle(Utils.DIRECT_ACTIONS_KEY_ARGUMENTS); in performDirectAction() local 159 performDirectAction(action, arguments, null, AsyncTask.THREAD_POOL_EXECUTOR, (b) -> { in performDirectAction() 170 final Bundle arguments = args.getBundle(Utils.DIRECT_ACTIONS_KEY_ARGUMENTS); in performDirectActionAndCancel() local 179 arguments.putParcelable(Utils.DIRECT_ACTIONS_KEY_CANCEL_CALLBACK, cancelCallback); in performDirectActionAndCancel() 185 performDirectAction(action, arguments, cancellationSignal, in performDirectActionAndCancel()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Fragments/ |
D | PhaseStartFragment.java | 44 Bundle arguments = new Bundle(); in newInstance() local 45 arguments.putSerializable(ARG_PHASE, phase); in newInstance() 46 fragment.setArguments(arguments); in newInstance()
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/runner/ |
D | UiRenderingRunner.java | 36 public void onCreate(Bundle arguments) { in onCreate() argument 37 super.onCreate(arguments); in onCreate()
|
/cts/tests/tests/uirendering27/src/android/uirendering/cts/runner/ |
D | UiRenderingRunner.java | 36 public void onCreate(Bundle arguments) { in onCreate() argument 37 super.onCreate(arguments); in onCreate()
|
/cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/ |
D | DirectActionsActivity.java | 100 public void onPerformDirectAction(String actionId, Bundle arguments, in onPerformDirectAction() argument 102 if (arguments == null || !arguments.getString(Utils.DIRECT_ACTIONS_KEY_ARGUMENTS) in onPerformDirectAction() 107 final RemoteCallback cancelCallback = arguments.getParcelable( in onPerformDirectAction()
|
/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/ |
D | DirectActionsTest.java | 180 @NonNull Bundle arguments) throws Exception { in performDirectAction() argument 182 directAction, arguments, null /*postActionCommand*/); in performDirectAction() 186 @NonNull Bundle arguments) throws Exception { in performDirectActionAndCancel() argument 188 directAction, arguments, null /*postActionCommand*/); in performDirectActionAndCancel() 201 @Nullable Bundle arguments, @Nullable ThrowingRunnable postActionCommand) in executeCommand() argument 215 command.putBundle(Utils.DIRECT_ACTIONS_KEY_ARGUMENTS, arguments); in executeCommand()
|
/cts/tests/app/src/android/app/cts/ |
D | BaseProcessInstrumentation.java | 38 public void onCreate(Bundle arguments) { in onCreate() argument 39 super.onCreate(arguments); in onCreate()
|
/cts/hostsidetests/devicepolicy/app/DelegateApp/src/com/android/cts/delegate/ |
D | GeneralDelegateTest.java | 44 Bundle arguments = InstrumentationRegistry.getArguments(); in testGetsExpectedDelegationScopes() local 45 String[] expectedScopes = arguments.getString(PARAM_SCOPES).split(","); in testGetsExpectedDelegationScopes()
|
/cts/hostsidetests/devicepolicy/app/LauncherTests/src/com/android/cts/launchertests/ |
D | QuietModeTest.java | 82 Bundle arguments = InstrumentationRegistry.getArguments(); in readParams() local 84 final int userSn = Integer.parseInt(arguments.getString(PARAM_TARGET_USER)); in readParams() 86 mOriginalLauncher = arguments.getString(PARAM_ORIGINAL_DEFAULT_LAUNCHER); in readParams()
|
D | LauncherAppsTests.java | 97 Bundle arguments = InstrumentationRegistry.getArguments(); in setUp() local 100 mUser = getUserHandleArgument(userManager, "testUser", arguments); in setUp() 372 Bundle arguments) throws Exception { in getUserHandleArgument() argument 373 String serial = arguments.getString(key); in getUserHandleArgument()
|
/cts/hostsidetests/devicepolicy/app/CrossProfileAppsTest/src/com/android/cts/crossprofileappstest/ |
D | CrossProfileAppsNonTargetUserTest.java | 55 Bundle arguments = InstrumentationRegistry.getArguments(); in readTargetUser() local 57 final int userSn = Integer.parseInt(arguments.getString(PARAM_TARGET_USER)); in readTargetUser()
|
D | CrossProfileAppsTargetUserTest.java | 79 Bundle arguments = InstrumentationRegistry.getArguments(); in readTargetUser() local 81 mUserSerialNumber = Long.parseLong(arguments.getString(PARAM_TARGET_USER)); in readTargetUser()
|
D | CrossProfileAppsStartActivityTest.java | 81 Bundle arguments = InstrumentationRegistry.getArguments(); in readTargetUser() local 83 mUserSerialNumber = Long.parseLong(arguments.getString(PARAM_TARGET_USER)); in readTargetUser()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
D | ByodPresentMediaDialog.java | 114 Bundle arguments = getArguments(); in onCreateDialog() local 117 if (arguments.containsKey(KEY_VIDEO_URI)) { in onCreateDialog() 133 } else if (arguments.containsKey(KEY_IMAGE_FILE)) { in onCreateDialog() 177 } else if (arguments.containsKey(KEY_AUDIO_URI)) { in onCreateDialog()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | kernel_input.rscript | 26 * This checks that modifications to input arguments done by a kernel 28 * this, we create kernels that modify their input arguments (the 31 * When the kernels modify their input arguments, these modifications
|
D | struct_field.rscript | 23 // arguments.
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
D | NotificationListenerTest.java | 188 private int getParam(Bundle arguments, String key) throws Exception { in getParam() argument 189 String serial = arguments.getString(key); in getParam()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | StreamingMediaPlayerTest.java | 86 Bundle arguments = testRunner.getArguments(); in setUp() local 87 mInputUrl = arguments.getString("url"); in setUp() 88 Log.v(TAG, "setUp: arguments: " + arguments); in setUp()
|
D | .goutputstream-9KZYJZ | 79 Bundle arguments = testRunner.getArguments(); 80 mInputUrl = arguments.getString("url"); 81 Log.v(TAG, "setUp: arguments: " + arguments); 83 Log.v(TAG, "setUp: arguments[url] " + mInputUrl);
|
/cts/tests/autofillservice/src/android/autofillservice/cts/ |
D | VirtualContainerView.java | 377 public boolean performAction(int virtualViewId, int action, Bundle arguments) { in setCompatMode() 379 final CharSequence text = arguments.getCharSequence( in setCompatMode()
|