Searched defs:arguments (Results 1 - 25 of 71) sorted by relevance

123

/frameworks/multidex/instrumentation/src/com/android/test/runner/
H A DMultiDexTestRunner.java29 public void onCreate(Bundle arguments) { argument
31 super.onCreate(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);
/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/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java111 * @param arguments Optional action arguments.
118 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
H A DAccessibilityInteractionClient.java506 * @param arguments Optional action arguments.
510 long accessibilityNodeId, int action, Bundle arguments) {
517 accessibilityWindowId, accessibilityNodeId, action, arguments,
509 performAccessibilityAction(int connectionId, int accessibilityWindowId, long accessibilityNodeId, int action, Bundle arguments) argument
/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/support/compat/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/support/compat/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/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothInstrumentation.java51 public void onCreate(Bundle arguments) { argument
52 super.onCreate(arguments);
53 mArgs = arguments;
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/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/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompat.java56 Bundle arguments) {
57 return compat.performAction(virtualViewId, action, arguments);
105 int virtualViewId, int action, Bundle arguments) {
106 return compat.performAction(virtualViewId, action, arguments);
228 * @param arguments Optional arguments.
234 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/support/core-ui/tests/java/android/support/v4/widget/
H A DExploreByTouchHelperTest.java145 protected boolean onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/util/
H A DLinkAccessibilityHelper.java131 Bundle arguments) {
130 onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) argument
/frameworks/opt/setupwizard/library/eclair-mr1/test/src/com/android/setupwizardlib/test/
H A DLinkAccessibilityHelperTest.java207 Bundle arguments) {
208 return super.onPerformActionForVirtualView(virtualViewId, action, arguments);
206 onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) argument
/frameworks/support/compat/jellybean/android/support/v4/view/
H A DViewCompatJB.java62 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
63 return view.performAccessibilityAction(action, 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/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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java163 public boolean performAccessibilityActionInternal(int action, Bundle arguments) { argument
176 return super.performAccessibilityActionInternal(action, arguments);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java306 int virtualViewId, int action, Bundle arguments) {
305 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java306 int virtualViewId, int action, Bundle arguments) {
305 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
/frameworks/base/core/java/android/view/
H A DMenuInflater.java511 Object[] arguments) {
516 return (T) constructor.newInstance(arguments);
510 newInstance(String className, Class<?>[] constructorSignature, Object[] arguments) argument
H A DViewParent.java617 * @param arguments Optional action arguments
620 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments); argument
/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);

Completed in 805 milliseconds

123