Home
last modified time | relevance | path

Searched refs:ID_CHAR (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/spirit/example/lex/
Dword_count_functor.cpp76 ID_CHAR enumerator
102 (".", ID_CHAR) // anything else is a plain character in word_count_tokens()
134 case ID_CHAR: // matched something else in operator ()()
Dword_count_functor.flex13 #define ID_CHAR 1002
19 . { return ID_CHAR; }
27 case ID_CHAR: ++*c; break;
Dword_count_functor_flex.cpp378 #define ID_CHAR 1002 macro
639 { return ID_CHAR; }
1544 case ID_CHAR: ++*c; break; in count()
/third_party/boost/libs/format/tools/
Dformat_matrix.cpp65 ID_CHAR, // single signed character enumerator
142 …{ 'c', { ID_UNDEF , ID_UNDEF , ID_CHAR , ID_WCHAR , ID_UNDEF , ID_UNDEF , ID_UNDEF , ID_UNDEF , I…
223 case ID_CHAR: len = SNPRINTF(buf, BUFSIZ, fmtStr.c_str(), g_c ); break; in call_snprintf()
270 case ID_CHAR: return ::boost::str(::boost::format(fmtStr) % g_c ); in call_format()