Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/i18n/
Dmsgfmt.py75 keystart = 7*4+16*len(keys)
77 valuestart = keystart + len(ids)
83 koffsets += [l1, o1+keystart]
/external/python/cpython2/Objects/
Dstringobject.c4315 char *keystart; in PyString_Format() local
4327 keystart = fmt; in PyString_Format()
4336 keylen = fmt - keystart - 1; in PyString_Format()
4342 key = PyString_FromStringAndSize(keystart, in PyString_Format()
Dunicodeobject.c8424 Py_UNICODE *keystart; in PyUnicode_Format() local
8436 keystart = fmt; in PyUnicode_Format()
8445 keylen = fmt - keystart - 1; in PyUnicode_Format()
8456 key = PyUnicode_EncodeUTF8(keystart, in PyUnicode_Format()
8460 key = PyUnicode_FromUnicode(keystart, keylen); in PyUnicode_Format()