Home
last modified time | relevance | path

Searched refs:arguments (Results 1 – 25 of 192) sorted by relevance

12345678

/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
DBluetoothTestRunner.java85 public void onCreate(Bundle arguments) { in onCreate() argument
86 String val = arguments.getString("enable_iterations"); in onCreate()
95 val = arguments.getString("discoverable_iterations"); in onCreate()
104 val = arguments.getString("scan_iterations"); in onCreate()
113 val = arguments.getString("enable_pan_iterations"); in onCreate()
122 val = arguments.getString("pair_iterations"); in onCreate()
131 val = arguments.getString("connect_a2dp_iterations"); in onCreate()
140 val = arguments.getString("connect_headset_iterations"); in onCreate()
149 val = arguments.getString("connect_input_iterations"); in onCreate()
158 val = arguments.getString("connect_pan_iterations"); in onCreate()
[all …]
DBluetoothInstrumentation.java51 public void onCreate(Bundle arguments) { in onCreate() argument
52 super.onCreate(arguments); in onCreate()
53 mArgs = arguments; in onCreate()
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
DMemoryUsageInstrumentation.java26 private Bundle arguments; field in MemoryUsageInstrumentation
29 public void onCreate(Bundle arguments) { in onCreate() argument
30 this.arguments = arguments; in onCreate()
31 super.onCreate(arguments); in onCreate()
35 return arguments; in getBundle()
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
DTestResultInstrumentation.java34 public void onCreate(Bundle arguments) { in onCreate() argument
35 if (arguments == null) { in onCreate()
36 arguments = new Bundle(); in onCreate()
39 Boolean.parseBoolean(arguments.getString("realDeviceTest", "false")); in onCreate()
41 arguments.putString("notAnnotation", "com.android.mtp.RealDeviceTest"); in onCreate()
43 super.onCreate(arguments); in onCreate()
/frameworks/base/test-runner/src/android/test/
DInstrumentationTestRunner.java308 public void onCreate(Bundle arguments) { in onCreate() argument
309 super.onCreate(arguments); in onCreate()
310 mArguments = arguments; in onCreate()
323 if (arguments != null) { in onCreate()
325 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS); in onCreate()
326 mDebug = getBooleanArgument(arguments, "debug"); in onCreate()
327 mJustCount = getBooleanArgument(arguments, "count"); in onCreate()
328 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignment"); in onCreate()
329 mPackageOfTests = arguments.getString(ARGUMENT_TEST_PACKAGE); in onCreate()
331 arguments.getString(ARGUMENT_TEST_SIZE_PREDICATE)); in onCreate()
[all …]
DInstrumentationCoreTestRunner.java59 public void onCreate(Bundle arguments) { in onCreate() argument
71 if (arguments != null) { in onCreate()
72 String classArg = arguments.getString(ARGUMENT_TEST_CLASS); in onCreate()
76 super.onCreate(arguments); in onCreate()
/frameworks/base/core/java/com/android/internal/widget/
DExploreByTouchHelper.java504 private boolean performAction(int virtualViewId, int action, Bundle arguments) { in performAction() argument
507 return performActionForHost(action, arguments); in performAction()
509 return performActionForChild(virtualViewId, action, arguments); in performAction()
513 private boolean performActionForHost(int action, Bundle arguments) { in performActionForHost() argument
514 return mView.performAccessibilityAction(action, arguments); in performActionForHost()
517 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { in performActionForChild() argument
523 return onPerformActionForVirtualView(virtualViewId, action, arguments); in performActionForChild()
810 int virtualViewId, int action, Bundle arguments); in onPerformActionForVirtualView() argument
823 public boolean performAction(int virtualViewId, int action, Bundle arguments) { in performAction() argument
824 return ExploreByTouchHelper.this.performAction(virtualViewId, action, arguments); in performAction()
/frameworks/base/docs/html/
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/
DSetAlarm.java90 public void onCreate(Bundle arguments) { in onCreate() argument
91 super.onCreate(arguments); in onCreate()
92 mCommand = arguments.getString(COMMAND); in onCreate()
93 if ("true".equals(arguments.getString("debug"))) { in onCreate()
99 mArgs = arguments; in onCreate()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DPrintErrorFragment.java47 Bundle arguments = new Bundle(); in newInstance() local
48 arguments.putCharSequence(EXTRA_MESSAGE, message); in newInstance()
49 arguments.putInt(EXTRA_ACTION, action); in newInstance()
51 fragment.setArguments(arguments); in newInstance()
/frameworks/support/v4/java/android/support/v4/view/accessibility/
DAccessibilityNodeProviderCompat.java53 Bundle arguments) { in newAccessibilityNodeProviderBridge()
54 return compat.performAction(virtualViewId, action, arguments); in newAccessibilityNodeProviderBridge()
99 int virtualViewId, int action, Bundle arguments) {
100 return compat.performAction(virtualViewId, action, arguments);
223 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
DWifiAssociationTest.java55 Bundle arguments = runner.getArguments(); in testWifiAssociation() local
57 String ssid = arguments.getString("ssid"); in testWifiAssociation()
60 String securityTypeStr = arguments.getString("security-type"); in testWifiAssociation()
64 String password = arguments.getString("password"); in testWifiAssociation()
66 String freqStr = arguments.getString("frequency-band"); in testWifiAssociation()
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
DAccessibilityNodeProviderCompatJellyBean.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); in performAction() argument
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) { in newAccessibilityNodeProviderBridge() argument
55 return bridge.performAction(virtualViewId, action, arguments); in newAccessibilityNodeProviderBridge()
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
DAccessibilityNodeProviderCompatKitKat.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); in performAction() argument
55 public boolean performAction(int virtualViewId, int action, Bundle arguments) { in newAccessibilityNodeProviderBridge() argument
56 return bridge.performAction(virtualViewId, action, arguments); in newAccessibilityNodeProviderBridge()
/frameworks/rs/cpu_ref/
DrsCpuScriptGroup2.cpp396 vector<const char*> arguments; in compile() local
402 optLevel, &arguments); in compile()
404 std::unique_ptr<const char> cmdLine(rsuJoinStrings(arguments.size() - 1, in compile()
405 arguments.data())); in compile()
456 arguments.pop_back(); in compile()
457 arguments.push_back(cloneName.c_str()); in compile()
468 arguments.push_back("-build-checksum"); in compile()
469 arguments.push_back(checksumStr); in compile()
470 arguments.push_back(nullptr); in compile()
473 arguments.size()-1, in compile()
[all …]
/frameworks/multidex/instrumentation/src/com/android/test/runner/
DMultiDexTestRunner.java29 public void onCreate(Bundle arguments) { in onCreate() argument
31 super.onCreate(arguments); in onCreate()
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DTracer.java166 private void doTrace(Object[] arguments) { in doTrace() argument
176 log(String.format("%s (%s)", caller, join(", ", arguments))); in doTrace()
209 public static void trace(Object... arguments) { in trace() argument
210 Tracer.getInstance().doTrace(arguments); in trace()
/frameworks/support/v4/java/android/support/v4/widget/
DExploreByTouchHelper.java870 private boolean performAction(int virtualViewId, int action, Bundle arguments) { in performAction() argument
873 return performActionForHost(action, arguments); in performAction()
875 return performActionForChild(virtualViewId, action, arguments); in performAction()
879 private boolean performActionForHost(int action, Bundle arguments) { in performActionForHost() argument
880 return ViewCompat.performAccessibilityAction(mHost, action, arguments); in performActionForHost()
883 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) { in performActionForChild() argument
894 return onPerformActionForVirtualView(virtualViewId, action, arguments); in performActionForChild()
1218 int virtualViewId, int action, Bundle arguments); in onPerformActionForVirtualView() argument
1234 public boolean performAction(int virtualViewId, int action, Bundle arguments) { in performAction() argument
1235 return ExploreByTouchHelper.this.performAction(virtualViewId, action, arguments); in performAction()
/frameworks/data-binding/compiler/
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/samples/BindingDemo/
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/
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/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
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/
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/
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/
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

12345678