Lines Matching refs:from
85 * (since ASCII is decoded from UTF-8, the utf8 string are the data)
155 If interned != SSTATE_NOT_INTERNED, the two references from the
368 kind and data pointers obtained from other function calls.
394 /* Read a code point from the string's canonical representation. No checks
477 /* Initializes the canonical string representation from the deprecated
508 /* Copy character from one unicode object into another, this function performs
512 len(from)-from_start), or if kind(from[from_start:from_start+how_many]) >
520 how_many = min(how_many, len(from) - from_start)
521 to[to_start:to_start+how_many] = from[from_start:from_start+how_many]
529 PyObject *from,
540 PyObject *from,
569 /* Create a new string from a buffer of Py_UCS1, Py_UCS2 or Py_UCS4 characters.
576 /* Create a new string from a buffer of ASCII characters.
591 /* Create a Unicode Object from the Py_UNICODE buffer u of the given
854 extracted from the returned data.
973 Transforms code points starting from the first non-ASCII code point that