HomeSort by relevance Sort by last modified time
    Searched refs:PyUnicode_READ (Results 1 - 21 of 21) sorted by null

  /external/python/cpython3/Modules/
_json.c 182 Py_UCS4 c = PyUnicode_READ(kind, input, i);
211 Py_UCS4 c = PyUnicode_READ(kind, input, i);
249 Py_UCS4 c = PyUnicode_READ(kind, input, i);
279 Py_UCS4 c = PyUnicode_READ(kind, input, i); \
432 c = PyUnicode_READ(kind, buf, next);
465 c = PyUnicode_READ(kind, buf, next);
495 Py_UCS4 digit = PyUnicode_READ(kind, buf, next);
514 PyUnicode_READ(kind, buf, next++) == '\\' &&
515 PyUnicode_READ(kind, buf, next++) == 'u') {
520 Py_UCS4 digit = PyUnicode_READ(kind, buf, next)
    [all...]
unicodedata.c 521 stack[stackptr++] = PyUnicode_READ(kind, data, i++);
592 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
594 cur = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
602 Py_UCS4 tmp = PyUnicode_READ(kind, data, o+1);
604 PyUnicode_READ(kind, data, o));
609 prev = _getrecord_ex(PyUnicode_READ(kind, data, o))->combining;
613 prev = _getrecord_ex(PyUnicode_READ(kind, data, i))->combining;
680 code = PyUnicode_READ(kind, data, i);
683 VBase <= PyUnicode_READ(kind, data, i+1) &&
684 PyUnicode_READ(kind, data, i+1) <= (VBase+VCount))
    [all...]
_csv.c 839 c = PyUnicode_READ(kind, data, pos);
1043 Py_UCS4 c = PyUnicode_READ(field_kind, field_data, i);
    [all...]
_operator.c 631 if (PyUnicode_READ(kind, data, char_idx) == '.')
652 while (PyUnicode_READ(kind, data, unibuff_till) != '.') {
    [all...]
pyexpat.c     [all...]
_tkinter.c 1134 Py_UCS4 ch = PyUnicode_READ(kind, inbuf, i);
    [all...]
_elementtree.c 1082 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
    [all...]
_pickle.c     [all...]
  /external/python/cpython3/Python/
_warnings.c 272 PyUnicode_READ(kind, data, len-3) == '.' &&
273 PyUnicode_READ(kind, data, len-2) == 'p' &&
274 PyUnicode_READ(kind, data, len-1) == 'y')
358 ch = PyUnicode_READ(kind, data, i);
703 PyUnicode_READ(kind, data, len-4) == '.' &&
704 ascii_lower(PyUnicode_READ(kind, data, len-3)) == 'p' &&
705 ascii_lower(PyUnicode_READ(kind, data, len-2)) == 'y' &&
706 ascii_lower(PyUnicode_READ(kind, data, len-1)) == 'c')
    [all...]
formatter_unicode.c 67 digitval = Py_UNICODE_TODECIMAL(PyUnicode_READ(kind, data, pos));
174 #define READ_spec(index) PyUnicode_READ(kind, data, index)
445 while (pos<end && Py_ISDIGIT(PyUnicode_READ(kind, data, pos)))
450 *has_decimal = pos<end && PyUnicode_READ(kind, data, remainder) == '.';
620 Py_UCS4 c = PyUnicode_READ(kind, data, writer->pos + t);
662 Py_UCS4 c = PyUnicode_READ(kind, data, writer->pos + t);
    [all...]
traceback.c 358 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
612 ch = PyUnicode_READ(kind, data, i);
getargs.c 866 *p = PyUnicode_READ(kind, data, 0);
    [all...]
ast.c     [all...]
  /external/python/cpython3/Modules/cjkcodecs/
cjkcodecs.h 132 #define INCHAR1 (PyUnicode_READ(kind, data, *inpos))
133 #define INCHAR2 (PyUnicode_READ(kind, data, *inpos + 1))
  /external/python/cpython3/Objects/
unicodeobject.c 447 ch = PyUnicode_READ(kind, data, i);
467 assert(PyUnicode_READ(kind, data, ascii->length) == 0);
525 Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
592 ch = PyUnicode_READ(kind, data, i);
615 ch = PyUnicode_READ(kind, data, i);
659 ch = PyUnicode_READ(kind, data, i);
690 str += sprintf(str, "&#%d;", PyUnicode_READ(kind, data, i));
    [all...]
exceptions.c     [all...]
bytesobject.c     [all...]
  /external/python/cpython3/Modules/_io/
textio.c 410 while (PyUnicode_READ(kind, in_str, i) > '\n')
412 c = PyUnicode_READ(kind, in_str, i++);
433 while (PyUnicode_READ(kind, in_str, i) > '\r')
435 c = PyUnicode_READ(kind, in_str, i++);
439 if (PyUnicode_READ(kind, in_str, i) == '\n') {
474 while ((c = PyUnicode_READ(kind, in_str, in++)) > '\r')
482 if (PyUnicode_READ(kind, in_str, in) == '\n') {
    [all...]
  /external/python/cpython3/Include/
unicodeobject.h 397 use PyUnicode_WRITE() and PyUnicode_READ(). */
505 #define PyUnicode_READ(kind, data, index) \
515 /* PyUnicode_READ_CHAR() is less efficient than PyUnicode_READ() because it
518 cache kind and use PyUnicode_READ instead. */
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c     [all...]
  /external/python/cpython3/Modules/_decimal/
_decimal.c     [all...]

Completed in 1289 milliseconds