Searched refs:arguments (Results 1 - 25 of 95) 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/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/core/java/android/widget/
H A DEditText.java131 public boolean performAccessibilityActionInternal(int action, Bundle arguments) { argument
134 CharSequence text = (arguments != null) ? arguments.getCharSequence(
143 return super.performAccessibilityActionInternal(action, arguments);
/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]);
31 for (var i = 0; i < arguments.length; i++) {
32 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/support/v4/java/android/support/v4/widget/
H A DExploreByTouchHelper.java446 private boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
449 return performActionForHost(action, arguments);
451 return performActionForChild(virtualViewId, action, arguments);
455 private boolean performActionForHost(int action, Bundle arguments) { argument
456 return ViewCompat.performAccessibilityAction(mView, action, arguments);
459 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { argument
463 return manageFocusForChild(virtualViewId, action, arguments);
465 return onPerformActionForVirtualView(virtualViewId, action, arguments);
469 private boolean manageFocusForChild(int virtualViewId, int action, Bundle arguments) { argument
728 * @param arguments (Optiona
732 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
746 performAction(int virtualViewId, int action, Bundle arguments) 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.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
/frameworks/base/core/java/com/android/internal/widget/
H A DExploreByTouchHelper.java458 private boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
461 return performActionForHost(action, arguments);
463 return performActionForChild(virtualViewId, action, arguments);
467 private boolean performActionForHost(int action, Bundle arguments) { argument
468 return performAccessibilityAction(mView, action, arguments);
471 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { argument
477 return onPerformActionForVirtualView(virtualViewId, action, arguments);
735 * @param arguments (Optional) A bundle with additional arguments, or
740 int virtualViewId, int action, Bundle arguments);
739 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
753 performAction(int virtualViewId, int action, Bundle arguments) argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java81 * with no optional arguments, to run all tests (except performance tests).
157 * in addition to the other arguments.
303 public void onCreate(Bundle arguments) { argument
304 super.onCreate(arguments);
305 mArguments = arguments;
318 if (arguments != null) {
320 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS);
321 mDebug = getBooleanArgument(arguments, "debug");
322 mJustCount = getBooleanArgument(arguments, "count");
323 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignmen
451 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/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/bintrayPlugin/
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/gradlePlugin/
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 764 milliseconds

1234