Home
last modified time | relevance | path

Searched refs:presentation_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dformatter.h23 unknown_presentation_type(STRINGLIB_CHAR presentation_type, in unknown_presentation_type() argument
30 if (presentation_type > 32 && presentation_type < 128) in unknown_presentation_type()
35 (char)presentation_type, in unknown_presentation_type()
42 (unsigned int)presentation_type, in unknown_presentation_type()
48 invalid_comma_type(STRINGLIB_CHAR presentation_type) in invalid_comma_type() argument
52 if (presentation_type > 32 && presentation_type < 128) in invalid_comma_type()
56 (char)presentation_type); in invalid_comma_type()
61 (unsigned int)presentation_type); in invalid_comma_type()
/external/python/cpython3/Python/
Dformatter_unicode.c13 unknown_presentation_type(Py_UCS4 presentation_type, in unknown_presentation_type() argument
17 if (presentation_type > 32 && presentation_type < 128) in unknown_presentation_type()
21 (char)presentation_type, in unknown_presentation_type()
27 (unsigned int)presentation_type, in unknown_presentation_type()
32 invalid_thousands_separator_type(char specifier, Py_UCS4 presentation_type) in invalid_thousands_separator_type() argument
35 if (presentation_type > 32 && presentation_type < 128) in invalid_thousands_separator_type()
38 specifier, (char)presentation_type); in invalid_thousands_separator_type()
42 specifier, (unsigned int)presentation_type); in invalid_thousands_separator_type()