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

1234

/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/multidex/instrumentation/src/com/android/test/runner/
H A DMultiDexTestRunner.java29 public void onCreate(Bundle arguments) { argument
31 super.onCreate(arguments);
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DTestResultInstrumentation.java34 public void onCreate(Bundle arguments) { argument
35 if (arguments == null) {
36 arguments = new Bundle();
39 Boolean.parseBoolean(arguments.getString("realDeviceTest", "false"));
41 arguments.putString("notAnnotation", "com.android.mtp.RealDeviceTest");
43 super.onCreate(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...]
H A DBluetoothInstrumentation.java51 public void onCreate(Bundle arguments) { argument
52 super.onCreate(arguments);
53 mArgs = arguments;
/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.java111 * @param arguments Optional action arguments.
118 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintErrorFragment.java47 Bundle arguments = new Bundle();
48 arguments.putCharSequence(EXTRA_MESSAGE, message);
49 arguments.putInt(EXTRA_ACTION, action);
51 fragment.setArguments(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/base/docs/html/
H A Djd_tag_helpers.js2 var arr = arguments[0] || [];
3 for (var i = 1; i < arguments.length; i++) {
4 arr = arr.concat(arguments[i]);
32 for (var i = 0; i < arguments.length; i++) {
33 var r = arguments[i];
/frameworks/base/tests/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/base/test-runner/src/android/test/
H A DInstrumentationCoreTestRunner.java59 public void onCreate(Bundle arguments) { argument
71 if (arguments != null) {
72 String classArg = arguments.getString(ARGUMENT_TEST_CLASS);
76 super.onCreate(arguments);
H A DInstrumentationTestRunner.java81 * with no optional arguments, to run all tests (except performance tests).
157 * in addition to the other arguments.
308 public void onCreate(Bundle arguments) { argument
309 super.onCreate(arguments);
310 mArguments = arguments;
323 if (arguments != null) {
325 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS);
326 mDebug = getBooleanArgument(arguments, "debug");
327 mJustCount = getBooleanArgument(arguments, "count");
328 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignmen
456 getBooleanArgument(Bundle arguments, String tag) argument
[all...]
/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/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiAssociationTest.java55 Bundle arguments = runner.getArguments();
57 String ssid = arguments.getString("ssid");
60 String securityTypeStr = arguments.getString("security-type");
64 String password = arguments.getString("password");
66 String freqStr = arguments.getString("frequency-band");
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompat.java53 Bundle arguments) {
54 return compat.performAction(virtualViewId, action, arguments);
99 int virtualViewId, int action, Bundle arguments) {
100 return compat.performAction(virtualViewId, action, arguments);
217 * @param arguments Optional arguments.
223 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/base/core/java/com/android/internal/widget/
H A DExploreByTouchHelper.java504 private boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
507 return performActionForHost(action, arguments);
509 return performActionForChild(virtualViewId, action, arguments);
513 private boolean performActionForHost(int action, Bundle arguments) { argument
514 return mView.performAccessibilityAction(action, arguments);
517 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { argument
523 return onPerformActionForVirtualView(virtualViewId, action, arguments);
805 * @param arguments (Optional) A bundle with additional arguments, or
810 int virtualViewId, int action, Bundle arguments);
809 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
823 performAction(int virtualViewId, int action, Bundle arguments) argument
[all...]
/frameworks/base/cmds/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/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
/frameworks/data-binding/compiler/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
/frameworks/data-binding/developmentPlugins/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
/frameworks/data-binding/integration-tests/App With Spaces/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
/frameworks/data-binding/integration-tests/IndependentLibrary/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
/frameworks/data-binding/integration-tests/MultiModuleTestApp/
H A Dgradlew.bat49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software

Completed in 1431 milliseconds

1234