Home
last modified time | relevance | path

Searched refs:F_LJUST (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Include/internal/
H A Dpycore_format.h12 * F_LJUST '-'
18 #define F_LJUST (1<<0) macro
/third_party/python/Python/
H A Dast_opt.c6 #include "pycore_format.h" // F_LJUST
308 case '-': *flags |= F_LJUST; continue; in simple_format_arg_parse()
359 if (!(flags & F_LJUST) && width > 0) { in parse_format()
/third_party/python/Objects/
H A Dbytesobject.c10 #include "pycore_format.h" // F_LJUST
709 case '-': flags |= F_LJUST; continue; in _PyBytes_FormatEx()
732 flags |= F_LJUST; in _PyBytes_FormatEx()
992 if (width > len && !(flags & F_LJUST)) { in _PyBytes_FormatEx()
H A Dunicodeobject.c47 #include "pycore_format.h" // F_LJUST
14752 case '-': arg->flags |= F_LJUST; continue; in unicode_format_arg_parse()
14775 arg->flags |= F_LJUST; in unicode_format_arg_parse()
15048 if (!(arg->flags & F_LJUST)) { in unicode_format_arg_output()
15098 if (arg->width > len && !(arg->flags & F_LJUST)) { in unicode_format_arg_output()

Completed in 26 milliseconds