Searched refs:arguments (Results 1 - 25 of 61) sorted by relevance

123

/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageInstrumentation.java26 private Bundle arguments; field in class:MemoryUsageInstrumentation
29 public void onCreate(Bundle arguments) { argument
30 this.arguments = arguments;
31 super.onCreate(arguments);
35 return arguments;
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestRunner.java85 public void onCreate(Bundle arguments) { argument
86 String val = arguments.getString("enable_iterations");
95 val = arguments.getString("discoverable_iterations");
104 val = arguments.getString("scan_iterations");
113 val = arguments.getString("enable_pan_iterations");
122 val = arguments.getString("pair_iterations");
131 val = arguments.getString("connect_a2dp_iterations");
140 val = arguments.getString("connect_headset_iterations");
149 val = arguments.getString("connect_input_iterations");
158 val = arguments
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatJellyBean.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
55 return bridge.performAction(virtualViewId, action, arguments);
H A DAccessibilityNodeInfoCompatJellyBean.java44 public static boolean performAction(Object info, int action, Bundle arguments) { argument
45 return ((AccessibilityNodeInfo) info).performAction(action, arguments);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java106 * @param arguments Optional action arguments.
113 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
H A DIAccessibilityInteractionConnection.aidl52 void performAccessibilityAction(long accessibilityNodeId, int action, in Bundle arguments,
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
55 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
56 return bridge.performAction(virtualViewId, action, arguments);
/frameworks/testing/uiautomator/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/
H A DSetAlarm.java90 public void onCreate(Bundle arguments) { argument
91 super.onCreate(arguments);
92 mCommand = arguments.getString(COMMAND);
93 if ("true".equals(arguments.getString("debug"))) {
99 mArgs = arguments;
/frameworks/support/v4/java/android/support/v4/widget/
H A DExploreByTouchHelper.java440 private boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
443 return performActionForHost(action, arguments);
445 return performActionForChild(virtualViewId, action, arguments);
449 private boolean performActionForHost(int action, Bundle arguments) { argument
450 return ViewCompat.performAccessibilityAction(mView, action, arguments);
453 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { argument
457 return manageFocusForChild(virtualViewId, action, arguments);
459 return onPerformActionForVirtualView(virtualViewId, action, arguments);
463 private boolean manageFocusForChild(int virtualViewId, int action, Bundle arguments) { argument
702 * @param arguments (Optiona
706 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
720 performAction(int virtualViewId, int action, Bundle arguments) argument
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiAssociationTestRunner.java60 Bundle arguments = icicle;
61 String mFrequencyBand = arguments.getString("frequency-band");
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DViewCompatJB.java61 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
62 return view.performAccessibilityAction(action, arguments);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompat.java51 Bundle arguments) {
52 return compat.performAction(virtualViewId, action, arguments);
92 int virtualViewId, int action, Bundle arguments) {
93 return compat.performAction(virtualViewId, action, arguments);
205 * @param arguments Optional arguments.
211 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
H A DAccessibilityNodeInfoCompat.java54 public boolean performAction(Object info, int action, Bundle arguments); argument
266 public boolean performAction(Object info, int action, Bundle arguments) { argument
710 public boolean performAction(Object info, int action, Bundle arguments) { argument
711 return AccessibilityNodeInfoCompatJellyBean.performAction(info, action, arguments);
826 * Bundle arguments = new Bundle();
827 * arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
829 * arguments.putBoolean(AccessibilityNodeInfo.ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN,
831 * info.performAction(AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments);
858 * Bundle arguments = new Bundle();
859 * arguments
1327 performAction(int action, Bundle arguments) argument
[all...]
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidJUnitRunner.java128 // constants for supported instrumentation arguments
148 public void onCreate(Bundle arguments) { argument
149 super.onCreate(arguments);
150 mArguments = arguments;
156 * Get the Bundle object that contains the arguments passed to the instrumentation
166 * Set the arguments.
331 * Builds a {@link TestRequest} based on given input arguments.
335 TestRequest buildRequest(Bundle arguments, PrintStream writer) { argument
342 String testClassName = arguments.getString(ARGUMENT_TEST_CLASS);
349 String testPackage = arguments
[all...]
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java80 * with no optional arguments, to run all tests (except performance tests).
156 * in addition to the other arguments.
302 public void onCreate(Bundle arguments) { argument
303 super.onCreate(arguments);
304 mArguments = arguments;
317 if (arguments != null) {
319 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS);
320 mDebug = getBooleanArgument(arguments, "debug");
321 mJustCount = getBooleanArgument(arguments, "count");
322 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignmen
450 getBooleanArgument(Bundle arguments, String tag) argument
[all...]
H A DInstrumentationCoreTestRunner.java64 public void onCreate(Bundle arguments) { argument
76 if (arguments != null) {
77 String classArg = arguments.getString(ARGUMENT_TEST_CLASS);
81 super.onCreate(arguments);
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DTracer.java166 private void doTrace(Object[] arguments) { argument
176 log(String.format("%s (%s)", caller, join(", ", arguments)));
196 * arguments and where in the user's code the method is called from. If a
201 * Special note about array arguments. You can safely pass arrays of reference types
207 * @param arguments arguments of the method being traced.
209 public static void trace(Object... arguments) { argument
210 Tracer.getInstance().doTrace(arguments);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiAssociationTest.java61 Bundle arguments = mRunner.getArguments();
62 mSecurityType = arguments.getString("security-type");
63 mSsid = arguments.getString("ssid");
64 mPassword = arguments.getString("password");
65 mFrequencyBand = arguments.getString("frequency-band");
/frameworks/base/core/java/android/accessibilityservice/
H A DIAccessibilityServiceConnection.aidl53 int action, in Bundle arguments, int interactionId,
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaPlayerStressTest.java53 Bundle arguments = mRunner.getArguments();
54 mMediaSrc = arguments.getString("media-source");
/frameworks/base/tools/aidl/
H A DAST.cpp37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments) argument
39 size_t N = arguments.size();
41 arguments[i]->Write(to);
351 this->arguments.push_back(expression);
366 WriteArgumentList(to, this->arguments);
414 this->arguments.push_back(expression);
422 WriteArgumentList(to, this->arguments);
H A DAST.h155 vector<Expression*> arguments; member in struct:MethodCall
185 vector<Expression*> arguments; member in struct:NewExpression
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java214 public boolean performAccessibilityAction(View view, int action, Bundle arguments); argument
287 public boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
488 public boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
489 return ViewCompatJB.performAccessibilityAction(view, action, arguments);
868 * @param arguments Optional action arguments.
871 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
872 return IMPL.performAccessibilityAction(view, action, arguments);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java467 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
470 return super.performAccessibilityAction(action, arguments);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java530 Bundle arguments, int interactionId,
543 args.arg2 = arguments;
569 Bundle arguments = (Bundle) args.arg2;
589 arguments);
591 succeeded = target.performAccessibilityAction(action, arguments);
529 performAccessibilityActionClientThread(long accessibilityNodeId, int action, Bundle arguments, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interogatingPid, long interrogatingTid) argument

Completed in 657 milliseconds

123