Home
last modified time | relevance | path

Searched refs:subargs (Results 1 – 4 of 4) 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/mindspore/mindspore/ccsrc/frontend/operator/
Dops_front_infer_function.cc297 AbstractBasePtrList subargs; in InferImplListMap() local
303 subargs.push_back(AbstractJoin(l_ptr->elements())); in InferImplListMap()
305 EvalResultPtr engin_exc = engine->Execute(fn, subargs); in InferImplListMap()
/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]