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

123

/frameworks/multidex/instrumentation/src/com/android/test/runner/
H A DMultiDexTestRunner.java34 public void onCreate(Bundle arguments) { argument
36 super.onCreate(arguments);
/frameworks/base/core/java/android/app/
H A DFragmentContainer.java48 public Fragment instantiate(Context context, String className, Bundle arguments) { argument
49 return Fragment.instantiate(context, className, 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/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.java34 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
57 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
58 return bridge.performAction(virtualViewId, action, arguments);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentContainer.java32 public Fragment instantiate(Context context, String className, Bundle arguments) { argument
33 return Fragment.instantiate(context, className, arguments);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java117 * @param arguments A {@link Bundle} holding any arguments relevant for this request.
122 int virtualViewId, AccessibilityNodeInfo info, String extraDataKey, Bundle arguments) {
132 * @param arguments Optional action arguments.
139 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
121 addExtraDataToAccessibilityNodeInfo( int virtualViewId, AccessibilityNodeInfo info, String extraDataKey, Bundle arguments) argument
/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/support/compat/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java34 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
58 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
59 return bridge.performAction(virtualViewId, action, arguments);
/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.java57 Bundle arguments) {
58 return compat.performAction(virtualViewId, action, arguments);
107 int virtualViewId, int action, Bundle arguments) {
108 return compat.performAction(virtualViewId, action, arguments);
230 * @param arguments Optional arguments.
236 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/support/core-ui/tests/java/android/support/v4/widget/
H A DExploreByTouchHelperTest.java146 protected boolean onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipAccessibilityInteractionConnection.java75 Bundle arguments, int interactionId,
93 int newX = arguments.getInt(
95 int newY = arguments.getInt(
74 performAccessibilityAction(long accessibilityNodeId, int action, Bundle arguments, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid) argument
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dremote_method.h21 // performing parameter pack expansion for arguments with empty packs causes a
79 // Utility class to invoke a method with arguments packed in a tuple.
83 // Utility class to invoke a method with arguments packed in a tuple.
97 // Invokes method_ on intance_ with the packed arguments from parameters_.
176 // Dispatches a method by deserializing arguments from the given Message, with
198 auto arguments = decoder.DecodeArguments(&error); local
204 UnpackArguments<Class, Signature>(instance, method, message, arguments)
211 // Dispatches a method by deserializing arguments from the given Message, with
234 auto arguments = decoder.DecodeArguments(&error); local
241 UnpackArguments<Class, Signature>(instance, method, message, arguments)
274 auto arguments = decoder.DecodeArguments(&error); local
[all...]
/frameworks/opt/setupwizard/library/eclair-mr1/test/instrumentation/src/com/android/setupwizardlib/test/
H A DLinkAccessibilityHelperTest.java303 Bundle arguments) {
304 return super.onPerformActionForVirtualView(virtualViewId, action, arguments);
302 onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) argument
/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.java170 public boolean performAccessibilityActionInternal(int action, Bundle arguments) { argument
183 return super.performAccessibilityActionInternal(action, arguments);
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/util/
H A DLinkAccessibilityHelper.java107 Bundle arguments) {
109 .onPerformActionForVirtualView(virtualViewId, action, arguments);
257 Bundle arguments) {
256 onPerformActionForVirtualView(int virtualViewId, int action, Bundle arguments) argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java375 int virtualViewId, int action, Bundle arguments) {
374 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DExploreByTouchHelperActivity.java375 int virtualViewId, int action, Bundle arguments) {
374 onPerformActionForVirtualView( int virtualViewId, int action, Bundle arguments) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSeekBar.java234 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
243 return super.performAccessibilityAction(action, arguments);
/frameworks/base/core/java/android/view/
H A DViewParent.java659 * @param arguments Optional action arguments
662 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments); argument

Completed in 4968 milliseconds

123