Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dbytesobject.h67 #define F_LJUST (1<<0) macro
/external/python/cpython2/Objects/
Dbytesobject.c404 #define F_LJUST (1<<0) macro
723 case '-': flags |= F_LJUST; continue; in _PyBytes_FormatEx()
746 flags |= F_LJUST; in _PyBytes_FormatEx()
1006 if (width > len && !(flags & F_LJUST)) { in _PyBytes_FormatEx()
Dstringobject.c3946 #define F_LJUST (1<<0) macro
4358 case '-': flags |= F_LJUST; continue; in PyString_Format()
4379 flags |= F_LJUST; in PyString_Format()
4643 if (width > len && !(flags & F_LJUST)) { in PyString_Format()
Dunicodeobject.c8122 #define F_LJUST (1<<0) macro
8475 case '-': flags |= F_LJUST; continue; in PyUnicode_Format()
8496 flags |= F_LJUST; in PyUnicode_Format()
8761 if (width > len && !(flags & F_LJUST)) { in PyUnicode_Format()
/external/python/cpython3/Objects/
Dbytesobject.c397 #define F_LJUST (1<<0) macro
712 case '-': flags |= F_LJUST; continue; in _PyBytes_FormatEx()
735 flags |= F_LJUST; in _PyBytes_FormatEx()
995 if (width > len && !(flags & F_LJUST)) { in _PyBytes_FormatEx()
Dunicodeobject.c14833 case '-': arg->flags |= F_LJUST; continue; in unicode_format_arg_parse()
14856 arg->flags |= F_LJUST; in unicode_format_arg_parse()
15129 if (!(arg->flags & F_LJUST)) { in unicode_format_arg_output()
15179 if (arg->width > len && !(arg->flags & F_LJUST)) { in unicode_format_arg_output()