Searched refs:F_SIGN (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython3/Include/
H A Dbytesobject.h135 #define F_SIGN (1<<1) macro
/external/python/cpython3/Objects/
H A Dbytesobject.c397 * F_SIGN '+'
403 #define F_SIGN (1<<1) macro
699 /* Parse flags. Example: "%+i" => flags=F_SIGN. */
703 case '+': flags |= F_SIGN; continue;
846 && !(flags & (F_SIGN | F_BLANK))
898 && !(flags & (F_SIGN | F_BLANK)))
943 else if (flags & F_SIGN)
H A Dunicodeobject.c14249 && !(arg->flags & (F_SIGN | F_BLANK))
14415 /* Parse flags. Example: "%+i" => flags=F_SIGN. */
14421 case '+': arg->flags |= F_SIGN; continue;
14614 && !(arg->flags & (F_SIGN | F_BLANK)))
14683 && !(arg->flags & (F_SIGN | F_BLANK)))
14710 else if (arg->flags & F_SIGN)
/external/python/cpython2/Objects/
H A Dstringobject.c3944 * F_SIGN '+'
3950 #define F_SIGN (1<<1) macro
4362 case '+': flags |= F_SIGN; continue;
4601 else if (flags & F_SIGN)
H A Dunicodeobject.c8127 #define F_SIGN (1<<1) macro
8480 case '+': flags |= F_SIGN; continue;
8720 else if (flags & F_SIGN)

Completed in 435 milliseconds