Searched refs:argidx (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Objects/ |
D | bytesobject.c | 430 Py_ssize_t argidx = *p_argidx; in getnextarg() local 431 if (argidx < arglen) { in getnextarg() 436 return PyTuple_GetItem(args, argidx); in getnextarg() 615 Py_ssize_t arglen, argidx; in _PyBytes_FormatEx() local 639 argidx = 0; in _PyBytes_FormatEx() 643 argidx = -2; in _PyBytes_FormatEx() 733 argidx = -2; in _PyBytes_FormatEx() 750 v = getnextarg(args, arglen, &argidx); in _PyBytes_FormatEx() 790 v = getnextarg(args, arglen, &argidx); in _PyBytes_FormatEx() 834 v = getnextarg(args, arglen, &argidx); in _PyBytes_FormatEx() [all …]
|
D | unicodeobject.c | 14652 Py_ssize_t arglen, argidx; member 14674 Py_ssize_t argidx = ctx->argidx; in unicode_format_getnextarg() local 14676 if (argidx < ctx->arglen) { in unicode_format_getnextarg() 14677 ctx->argidx++; in unicode_format_getnextarg() 14681 return PyTuple_GetItem(ctx->args, argidx); in unicode_format_getnextarg() 15073 ctx->argidx = -2; in unicode_format_arg_parse() 15505 if (ctx->dict && (ctx->argidx < ctx->arglen)) { in unicode_format_arg() 15538 ctx.argidx = 0; in PyUnicode_Format() 15542 ctx.argidx = -2; in PyUnicode_Format() 15577 if (ctx.argidx < ctx.arglen && !ctx.dict) { in PyUnicode_Format()
|