/external/libxml2/ |
genUnicode.py | 75 alist = string.split(alias[1],',') variable 76 for comp in alist:
|
/external/python/cpython2/Modules/ |
dlmodule.c | 82 long alist[10]; local 111 alist[i-1] = PyInt_AsLong(v); 112 if (alist[i-1] == -1 && PyErr_Occurred()) 116 alist[i-1] = (long)PyString_AsString(v); 118 alist[i-1] = (long) ((char *)NULL); 126 alist[i-1] = 0; 127 res = (*func)(alist[0], alist[1], alist[2], alist[3], alist[4] [all...] |
/external/toybox/toys/pending/ |
route.c | 176 struct _arglist *alist; local 179 for (alist = list; alist->arg; alist++) { //find the given parameter in list 180 if (!strcmp(**argv, alist->arg)) { 182 return alist->action;
|
ip.c | 109 struct arglist *alist; local 115 for (alist = list; alist->name; alist++) 116 if (!memcmp(str, alist->name, len)) return alist->idx; 122 struct arglist *alist; local 125 for (alist = list; alist->name; alist++ 132 struct arglist *alist; local 214 struct arglist **alist; local 284 struct arglist **alist; local 303 struct arglist **alist; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_xmlrpc.py | 28 alist = [{'astring': 'foo@bar.baz.spam',
variable 47 self.assertEqual(alist,
48 xmlrpclib.loads(xmlrpclib.dumps((alist,)))[0][0])
141 value = alist + [None]
142 arg1 = (alist + [None],)
[all...] |
/external/openssh/ |
scp.c | 589 arglist alist; local 593 memset(&alist, '\0', sizeof(alist)); 594 alist.list = NULL; 651 freeargs(&alist); 652 addargs(&alist, "%s", ssh_program); 653 addargs(&alist, "-x"); 654 addargs(&alist, "-oClearAllForwardings=yes"); 655 addargs(&alist, "-n"); 657 addargs(&alist, "%s" 709 arglist alist; local [all...] |
/external/python/cpython2/Lib/test/ |
test_xmlrpc.py | 26 alist = [{'astring': 'foo@bar.baz.spam', variable 41 alist[0].update({ 49 self.assertEqual(alist, 50 xmlrpclib.loads(xmlrpclib.dumps((alist,)))[0][0]) 143 value = alist + [None] 144 arg1 = (alist + [None],) [all...] |
/external/python/cpython3/Lib/test/ |
test_xmlrpc.py | 24 alist = [{'astring': 'foo@bar.baz.spam', variable 45 dump = xmlrpclib.dumps((alist,)) 47 self.assertEqual(alist, load[0][0]) 177 value = alist + [None] 178 arg1 = (alist + [None],) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
bltinmodule.c | 172 PyObject *func, *alist = NULL, *kwdict = NULL;
local 179 if (!PyArg_UnpackTuple(args, "apply", 1, 3, &func, &alist, &kwdict))
181 if (alist != NULL) {
182 if (!PyTuple_Check(alist)) {
183 if (!PySequence_Check(alist)) {
186 alist->ob_type->tp_name);
189 t = PySequence_Tuple(alist);
192 alist = t;
201 retval = PyEval_CallObjectWithKeywords(func, alist, kwdict);
1005 PyObject *alist, *item=NULL, *value; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
bltinmodule.c | 166 PyObject *func, *alist = NULL, *kwdict = NULL;
local 173 if (!PyArg_UnpackTuple(args, "apply", 1, 3, &func, &alist, &kwdict))
175 if (alist != NULL) {
176 if (!PyTuple_Check(alist)) {
177 if (!PySequence_Check(alist)) {
180 alist->ob_type->tp_name);
183 t = PySequence_Tuple(alist);
186 alist = t;
195 retval = PyEval_CallObjectWithKeywords(func, alist, kwdict);
997 PyObject *alist, *item=NULL, *value; local [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
FluentIterableTest.java | 221 FluentIterable<TypeA> alist = local 223 Iterable<TypeB> blist = alist.filter(TypeB.class);
|
/external/ltp/testcases/kernel/fs/fsstress/ |
fsstress.c | 1474 attrlist_t *alist; local 1496 alist = (attrlist_t *) buf; 1497 total += alist->al_count; 1498 } while (alist->al_more); 1516 alist = (attrlist_t *) buf; 1517 if (which < ent + alist->al_count) { 1519 & buf[alist->al_offset[which - ent]]; 1523 ent += alist->al_count; 1524 } while (alist->al_more); [all...] |
/external/ppp/pppd/ |
auth.c | 2133 struct wordlist *ap, *addr_list, *alist, **app; local [all...] |
/external/python/cpython2/Python/ |
bltinmodule.c | 171 PyObject *func, *alist = NULL, *kwdict = NULL; local 178 if (!PyArg_UnpackTuple(args, "apply", 1, 3, &func, &alist, &kwdict)) 180 if (alist != NULL) { 181 if (!PyTuple_Check(alist)) { 182 if (!PySequence_Check(alist)) { 185 alist->ob_type->tp_name); 188 t = PySequence_Tuple(alist); 191 alist = t; 200 retval = PyEval_CallObjectWithKeywords(func, alist, kwdict); 1017 PyObject *alist, *item=NULL, *value local [all...] |
/external/e2fsprogs/contrib/ |
fsstress.c | 1499 attrlist_t *alist; local 1521 alist = (attrlist_t *) buf; 1522 total += alist->al_count; 1523 } while (alist->al_more); [all...] |
/external/guice/extensions/persist/lib/ |
javassist.jar | |
/external/guice/extensions/struts2/lib/ |
javassist.jar | |
freemarker-2.3.16.jar | |