Home
last modified time | relevance | path

Searched refs:IDANY (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/spirit/example/lex/
Dstrip_comments.cpp55 IDANY = lex::min_token_id + 10 enumerator
75 (".", IDANY) // IDANY is the token id associated with this token in strip_comments_tokens()
84 (".", IDANY) in strip_comments_tokens()
108 *token(IDANY) >> tok.endcomment in strip_comments_grammar()
111 | qi::token(IDANY) [ std::cout << _1 ] in strip_comments_grammar()
Dstrip_comments.input57 IDANY = lex::min_token_id + 10
76 (".", IDANY) // IDANY is the token id associated with this token
85 (".", IDANY)
109 *token(IDANY) >> tok.endcomment
112 | token(IDANY) [ std::cout << _1 ]
Dword_count.cpp63 IDANY = lex::min_token_id + 10 enumerator
87 (".", IDANY) // string literals will not be escaped by the library in word_count_tokens()
113 | qi::token(IDANY) [++ref(c)] in word_count_grammar()
Dstrip_comments_lexer.cpp55 IDANY = lex::min_token_id + 10, enumerator
/third_party/boost/libs/spirit/test/lex/
Dplain_token.cpp30 IDANY enumerator
47 | lex::string(".", IDANY) in delimiter_tokens()
71 >> +token(IDANY) in main()
80 >> +token(IDANY) in main()
88 token(IDLPAREN) >> +token(IDANY) >> token(IDRPAREN))); in main()
Dregression_word_count.cpp26 IDANY = lex::min_token_id + 10 // Lower 8 bits is 0x0a, same as '\n' enumerator
41 (".", IDANY) in word_count_tokens()
61 | token(IDANY) [++ref(c)] in word_count_grammar()
Dstring_token_id.cpp26 IDANY enumerator
41 | lex::string(".", IDANY) in word_count_tokens()
59 | token(IDANY) [++ref(a)] in word_count_grammar()
/third_party/boost/libs/spirit/example/lex/static_lexer/
Dword_count_tokens.hpp17 IDANY = boost::spirit::lex::min_token_id + 1, enumerator
34 this->self = word | '\n' | boost::spirit::lex::token_def<>(".", IDANY); in word_count_tokens()
Dword_count_static.cpp59 | qi::token(IDANY) [ ++ref(c) ] in word_count_grammar()