Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dbytesobject.h69 #define F_BLANK (1<<2) macro
/external/python/cpython2/Objects/
Dbytesobject.c406 #define F_BLANK (1<<2) macro
725 case ' ': flags |= F_BLANK; continue; in _PyBytes_FormatEx()
861 && !(flags & (F_SIGN | F_BLANK)) in _PyBytes_FormatEx()
913 && !(flags & (F_SIGN | F_BLANK))) in _PyBytes_FormatEx()
960 else if (flags & F_BLANK) in _PyBytes_FormatEx()
Dstringobject.c3948 #define F_BLANK (1<<2) macro
4360 case ' ': flags |= F_BLANK; continue; in PyString_Format()
4600 else if (flags & F_BLANK) in PyString_Format()
Dunicodeobject.c8124 #define F_BLANK (1<<2) macro
8477 case ' ': flags |= F_BLANK; continue; in PyUnicode_Format()
8718 else if (flags & F_BLANK) in PyUnicode_Format()
/external/python/cpython3/Objects/
Dbytesobject.c399 #define F_BLANK (1<<2) macro
714 case ' ': flags |= F_BLANK; continue; in _PyBytes_FormatEx()
850 && !(flags & (F_SIGN | F_BLANK)) in _PyBytes_FormatEx()
902 && !(flags & (F_SIGN | F_BLANK))) in _PyBytes_FormatEx()
949 else if (flags & F_BLANK) in _PyBytes_FormatEx()
Dunicodeobject.c14662 && !(arg->flags & (F_SIGN | F_BLANK)) in mainformatlong()
14835 case ' ': arg->flags |= F_BLANK; 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()
15119 else if (arg->flags & F_BLANK) in unicode_format_arg_output()