Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dbytesobject.h68 #define F_SIGN (1<<1) macro
/external/python/cpython3/Objects/
Dbytesobject.c398 #define F_SIGN (1<<1) macro
713 case '+': flags |= F_SIGN; continue; in _PyBytes_FormatEx()
850 && !(flags & (F_SIGN | F_BLANK)) in _PyBytes_FormatEx()
902 && !(flags & (F_SIGN | F_BLANK))) in _PyBytes_FormatEx()
947 else if (flags & F_SIGN) in _PyBytes_FormatEx()
Dunicodeobject.c14662 && !(arg->flags & (F_SIGN | F_BLANK)) in mainformatlong()
14834 case '+': arg->flags |= F_SIGN; continue; in unicode_format_arg_parse()
15021 && !(arg->flags & (F_SIGN | F_BLANK))) in unicode_format_arg_format()
15090 && !(arg->flags & (F_SIGN | F_BLANK))) in unicode_format_arg_output()
15117 else if (arg->flags & F_SIGN) in unicode_format_arg_output()
/external/python/cpython2/Objects/
Dbytesobject.c405 #define F_SIGN (1<<1) macro
724 case '+': flags |= F_SIGN; continue; in _PyBytes_FormatEx()
861 && !(flags & (F_SIGN | F_BLANK)) in _PyBytes_FormatEx()
913 && !(flags & (F_SIGN | F_BLANK))) in _PyBytes_FormatEx()
958 else if (flags & F_SIGN) in _PyBytes_FormatEx()
Dstringobject.c3947 #define F_SIGN (1<<1) macro
4359 case '+': flags |= F_SIGN; continue; in PyString_Format()
4598 else if (flags & F_SIGN) in PyString_Format()
Dunicodeobject.c8123 #define F_SIGN (1<<1) macro
8476 case '+': flags |= F_SIGN; continue; in PyUnicode_Format()
8716 else if (flags & F_SIGN) in PyUnicode_Format()