Home
last modified time | relevance | path

Searched refs:presentation_type (Results 1 – 3 of 3) 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.c12 unknown_presentation_type(Py_UCS4 presentation_type, in unknown_presentation_type() argument
16 if (presentation_type > 32 && presentation_type < 128) in unknown_presentation_type()
20 (char)presentation_type, in unknown_presentation_type()
26 (unsigned int)presentation_type, in unknown_presentation_type()
31 invalid_thousands_separator_type(char specifier, Py_UCS4 presentation_type) in invalid_thousands_separator_type() argument
34 if (presentation_type > 32 && presentation_type < 128) in invalid_thousands_separator_type()
37 specifier, (char)presentation_type); in invalid_thousands_separator_type()
41 specifier, (unsigned int)presentation_type); in invalid_thousands_separator_type()
/external/webrtc/webrtc/libjingle/xmpp/
Dhangoutpubsubclient.cc66 const std::string& presentation_type = state ? kPresenting : kNotPresenting; in Publish() local
68 QN_PRESENTER_PRESENTATION_TYPE, presentation_type); in Publish()