Lines Matching refs:result
499 PyObject *result;
592 result = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND,
595 if (!result)
597 /* result is guaranteed to be ready, as it is compact. */
598 kind = PyUnicode_KIND(result);
599 data = PyUnicode_DATA(result);
604 for (i++; i < PyUnicode_GET_LENGTH(result); i++) {
626 return result;
648 PyObject *result;
658 result = nfd_nfkd(self, input, k);
659 if (!result)
661 /* result will be "ready". */
662 kind = PyUnicode_KIND(result);
663 data = PyUnicode_DATA(result);
664 len = PyUnicode_GET_LENGTH(result);
668 the NFD result. */
672 Py_DECREF(result);
775 return result;
777 Py_DECREF(result);
778 result = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND,
781 return result;
821 QuickcheckResult result = YES; /* certainly normalized, unless we find something */
845 result = MAYBE; /* this string might need normalization */
849 return result;
879 PyObject *result;
914 result = (match == 0) ? Py_True : Py_False;
917 result = (m == YES) ? Py_True : Py_False;
920 Py_INCREF(result);
921 return result;