Lines Matching refs:s_new
462 char *s, *s_new; in strop_lower() local
473 s_new = PyString_AsString(newstr); in strop_lower()
479 *s_new = tolower(c); in strop_lower()
481 *s_new = c; in strop_lower()
482 s_new++; in strop_lower()
501 char *s, *s_new; in strop_upper() local
512 s_new = PyString_AsString(newstr); in strop_upper()
518 *s_new = toupper(c); in strop_upper()
520 *s_new = c; in strop_upper()
521 s_new++; in strop_upper()
541 char *s, *s_new; in strop_capitalize() local
552 s_new = PyString_AsString(newstr); in strop_capitalize()
558 *s_new = toupper(c); in strop_capitalize()
560 *s_new = c; in strop_capitalize()
561 s_new++; in strop_capitalize()
567 *s_new = tolower(c); in strop_capitalize()
569 *s_new = c; in strop_capitalize()
570 s_new++; in strop_capitalize()
720 char *s, *s_new; in strop_swapcase() local
731 s_new = PyString_AsString(newstr); in strop_swapcase()
737 *s_new = toupper(c); in strop_swapcase()
741 *s_new = tolower(c); in strop_swapcase()
744 *s_new = c; in strop_swapcase()
745 s_new++; in strop_swapcase()