Home
last modified time | relevance | path

Searched refs:subargs (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Dgenericaliasobject.c271 PyObject *subargs = PyTuple_New(nsubargs); in subs_tvars() local
272 if (subargs == NULL) { in subs_tvars()
283 PyTuple_SET_ITEM(subargs, i, arg); in subs_tvars()
286 obj = PyObject_GetItem(obj, subargs); in subs_tvars()
288 Py_DECREF(subargs); in subs_tvars()
/third_party/littlefs/scripts/
Dplotmpl.py548 for dir, subargs in subplots:
550 width=subargs.pop('width',
552 height=subargs.pop('height',
554 **subargs)
Dplot.py802 for dir, subargs in subplots:
804 width=subargs.pop('width',
806 height=subargs.pop('height',
808 **subargs)
/third_party/python/Lib/
D_collections_abc.py501 subargs = tuple(subst[x] for x in subparams)
502 arg = arg[subargs]
Dtyping.py1060 subargs = tuple(subst[x] for x in subparams)
1061 arg = arg[subargs]