/cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/ |
ShortcutManagerNegativeTest.java | 59 String expectedMessage, Object... args) 75 m.invoke(instance, args); 86 private void checkAidlCall(String method, String expectedMessage, Object... args) 92 expectedMessage, args); local
|
/dalvik/dx/src/com/android/dx/command/annotool/ |
Main.java | 135 final Arguments args = new Arguments(); local 138 args.parse(argArray); 145 new AnnotationLister(args).process();
|
/dalvik/dx/src/com/android/dx/command/dump/ |
DotDumper.java | 49 private final Args args; field in class:DotDumper 52 static void dump(byte[] bytes, String filePath, Args args) { 53 new DotDumper(bytes, filePath, args).run(); 56 DotDumper(byte[] bytes, String filePath, Args args) { 59 this.strictParse = args.strictParse; 60 this.optimize = args.optimize; 61 this.args = args [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentCustomAnimations.java | 100 Bundle args = new Bundle(); local 101 args.putInt("num", num); 102 f.setArguments(args);
|
FragmentDialog.java | 113 Bundle args = new Bundle(); local 114 args.putInt("num", num); 115 f.setArguments(args);
|
FragmentLayout.java | 188 Bundle args = new Bundle(); local 189 args.putInt("index", index); 190 f.setArguments(args);
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
FileProvider.java | 135 Bundle opts, InputStream args) { 141 while ((n=args.read(buffer)) >= 0) { 148 args.close();
|
/development/samples/training/ads-and-ux/src/com/example/training/ads/ |
AdsCatalogActivity.java | 92 Bundle args = new Bundle(); local 93 args.putInt("num", num); 94 af.setArguments(args); 105 Bundle args = getArguments(); local 106 mNum = args != null ? args.getInt("num") : 1;
|
/device/generic/goldfish/vibrator/ |
qemu.c | 254 va_list args ) 262 len = vsnprintf(buffer+4, buffer_size-4, format, args); 277 va_list args; local 280 va_start(args, format); 281 ret = qemu_command_vformat(buffer, buffer_size, format, args); 282 va_end(args); 329 va_list args; local 333 va_start(args, fmt); 334 len = qemu_command_vformat( command, sizeof command, fmt, args ); 335 va_end(args); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
pyerrors.h | 12 PyObject *args;
member in struct:__anon5371 19 PyObject *args;
member in struct:__anon5372 33 PyObject *args;
member in struct:__anon5373 46 PyObject *args;
member in struct:__anon5374 54 PyObject *args;
member in struct:__anon5375 65 PyObject *args;
member in struct:__anon5376
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
_functoolsmodule.c | 15 functools_reduce(PyObject *self, PyObject *args)
19 if (!PyArg_UnpackTuple(args, "reduce", 2, 3, &func, &seq, &result))
32 if ((args = PyTuple_New(2)) == NULL)
38 if (args->ob_refcnt > 1) {
39 Py_DECREF(args);
40 if ((args = PyTuple_New(2)) == NULL)
54 PyTuple_SetItem(args, 0, result);
55 PyTuple_SetItem(args, 1, op2);
56 if ((result = PyEval_CallObject(func, args)) == NULL)
61 Py_DECREF(args);
95 PyObject *args; member in struct:__anon5395 [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
pyerrors.h | 12 PyObject *args;
member in struct:__anon5677 19 PyObject *args;
member in struct:__anon5678 33 PyObject *args;
member in struct:__anon5679 46 PyObject *args;
member in struct:__anon5680 54 PyObject *args;
member in struct:__anon5681 65 PyObject *args;
member in struct:__anon5682
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
test_discovery.py | 205 args = []
207 args.extend(argv)
210 self.assertEqual(args, [])
213 self.assertEqual(args, ['foo', 'bar'])
225 # too many args
233 args = []
variable in class:TestDiscovery.test_command_line_handling_do_discovery_calls_loader.Loader 235 self.args.append((start_dir, pattern, top_level_dir))
241 self.assertEqual(Loader.args, [('.', 'test*.py', None)])
243 Loader.args = []
247 self.assertEqual(Loader.args, [('.', 'test*.py', None)]) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
_functoolsmodule.c | 15 functools_reduce(PyObject *self, PyObject *args)
19 if (!PyArg_UnpackTuple(args, "reduce", 2, 3, &func, &seq, &result))
32 if ((args = PyTuple_New(2)) == NULL)
38 if (args->ob_refcnt > 1) {
39 Py_DECREF(args);
40 if ((args = PyTuple_New(2)) == NULL)
54 PyTuple_SetItem(args, 0, result);
55 PyTuple_SetItem(args, 1, op2);
56 if ((result = PyEval_CallObject(func, args)) == NULL)
61 Py_DECREF(args);
95 PyObject *args; member in struct:__anon5705 [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
mactoolboxglue.c | 143 PyObject *args = PyObject_GetAttrString(exc, "args");
local 144 if (args) {
146 PyArg_ParseTuple(args, "is", &err, &ignore);
147 Py_XDECREF(args);
|
/device/linaro/bootloader/edk2/OvmfPkg/EmuVariableFvbRuntimeDxe/ |
Fvb.c | 325 VA_LIST args;
local 335 VA_START (args, This);
338 StartingLba = VA_ARG (args, EFI_LBA);
343 NumOfLba = VA_ARG (args, UINT32);
349 VA_END (args);
362 VA_END (args);
383 VA_START (args, This);
384 PlatformFvbBlocksErased (This, args);
385 VA_END (args);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemExtensionDecl.java | 260 Object [] args = {declNamespace, this.m_elements, this.m_functions, local 262 extNsSpt = new ExtensionNamespaceSupport(declNamespace, handler, args);
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FunctionMultiArgs.java | 79 Expression[] args = new Expression[m_args.length + 1]; local 81 System.arraycopy(m_args, 0, args, 0, m_args.length); 83 args[m_args.length] = arg; 84 m_args = args;
|
/external/autotest/client/cros/networking/ |
android_xmlrpc_server.py | 37 def __init__(self, *args, **kwargs): 38 super(Map, self).__init__(*args, **kwargs) 39 for arg in args: 539 args = parser.parse_args() variable 540 listen_port = args.port 546 AndroidXmlRpcDelegate(args.serial_number, args.log_dir, 547 args.test_station))
|
/external/autotest/client/site_tests/graphics_dEQP/scripts/ |
process_logs.py | 321 args = argparser.parse_args() variable 323 print pprint.pformat(args) 329 args.host, args.user, args.password, args.build_from, args.build_to))
|
/external/autotest/contrib/ |
compare_suite.py | 283 def _parse_args(args): 284 if not args: 292 return parser.parse_args(args) 324 args = _parse_args(sys.argv[1:]) variable 325 print 'Comparing jobs: %s' % args.jobs 326 job_ids = [int(id) for id in args.jobs.split(',')]
|
/external/autotest/frontend/client/src/autotest/tko/ |
GraphingFrontend.java | 39 public abstract void addToHistory(Map<String, String> args); 40 public abstract void handleHistoryArguments(Map<String, String> args); 120 JSONObject args = new JSONObject(); local 121 args.put("id", new JSONNumber(Integer.parseInt(idString))); 122 rpcProxy.rpcCall("get_embedded_query_url_token", args, new JsonRpcCallback() {
|
GraphingView.java | 80 HistoryToken args = super.getHistoryArguments(); local 81 args.put("view", getSelectedFrontend().getFrontendId()); 82 getSelectedFrontend().addToHistory(args); 83 return args;
|
/external/autotest/server/site_tests/cheets_CTS/ |
generate_controlfiles.py | 358 args = parser.parse_args() variable 359 main(args.uris)
|
/external/bison/lib/ |
error.c | 199 error_tail (int status, int errnum, const char *message, va_list args) 261 __vfwprintf (stderr, wmessage, args); 268 vfprintf (stderr, message, args); 269 va_end (args); 286 format string with optional args. 292 va_list args; local 317 va_start (args, message); 318 error_tail (status, errnum, message, args); 337 va_list args; 385 va_start (args, message) 336 va_list args; local [all...] |