Home
last modified time | relevance | path

Searched refs:current_arg (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Python/
Dgetargs.c1609 PyObject *current_arg; in vgetargskeywords() local
1738 current_arg = PyTuple_GET_ITEM(args, i); in vgetargskeywords()
1741 current_arg = PyDict_GetItemString(kwargs, kwlist[i]); in vgetargskeywords()
1742 if (current_arg) in vgetargskeywords()
1746 current_arg = NULL; in vgetargskeywords()
1749 if (current_arg) { in vgetargskeywords()
1750 msg = convertitem(current_arg, &format, p_va, flags, in vgetargskeywords()
1820 current_arg = PyDict_GetItemString(kwargs, kwlist[i]); in vgetargskeywords()
1821 if (current_arg) { in vgetargskeywords()
2034 PyObject *current_arg; in vgetargskeywordsfast_impl() local
[all …]
/external/ply/ply/ply/
Dcpp.py345 current_arg = []
365 current_arg.append(t)
370 if current_arg:
371 args.append(self.tokenstrip(current_arg))
374 current_arg.append(t)
376 args.append(self.tokenstrip(current_arg))
378 current_arg = []
380 current_arg.append(t)
/external/python/cpython2/Python/
Dgetargs.c1573 PyObject *freelist = NULL, *current_arg; in vgetargskeywords() local
1623 current_arg = NULL; in vgetargskeywords()
1625 current_arg = PyDict_GetItemString(keywords, keyword); in vgetargskeywords()
1627 if (current_arg) { in vgetargskeywords()
1641 current_arg = PyTuple_GET_ITEM(args, i); in vgetargskeywords()
1643 if (current_arg) { in vgetargskeywords()
1644 msg = convertitem(current_arg, &format, p_va, flags, in vgetargskeywords()