Home
last modified time | relevance | path

Searched refs:s_new (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dstropmodule.c462 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()
[all …]
D_struct.c1346 s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in s_new() function
1756 s_new, /* tp_new */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dstropmodule.c462 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()
[all …]
D_struct.c1346 s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in s_new() function
1805 s_new, /* tp_new */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dstringobject.c2049 char *s = PyString_AS_STRING(self), *s_new; in string_title() local
2057 s_new = PyString_AsString(newobj); in string_title()
2070 *s_new++ = c; in string_title()
2084 char *s = PyString_AS_STRING(self), *s_new; in string_capitalize() local
2091 s_new = PyString_AsString(newobj); in string_capitalize()
2095 *s_new = toupper(c); in string_capitalize()
2097 *s_new = c; in string_capitalize()
2098 s_new++; in string_capitalize()
2103 *s_new = tolower(c); in string_capitalize()
2105 *s_new = c; in string_capitalize()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dstringobject.c2032 char *s = PyString_AS_STRING(self), *s_new; in string_title() local
2040 s_new = PyString_AsString(newobj); in string_title()
2053 *s_new++ = c; in string_title()
2067 char *s = PyString_AS_STRING(self), *s_new; in string_capitalize() local
2074 s_new = PyString_AsString(newobj); in string_capitalize()
2078 *s_new = toupper(c); in string_capitalize()
2080 *s_new = c; in string_capitalize()
2081 s_new++; in string_capitalize()
2086 *s_new = tolower(c); in string_capitalize()
2088 *s_new = c; in string_capitalize()
[all …]