Home
last modified time | relevance | path

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

/third_party/boost/libs/spirit/example/lex/
Dword_count_functor.cpp74 ID_WORD = 1000, enumerator
100 ("[^ \t\n]+", ID_WORD) // words (anything except ' ', '\t' or '\n') in word_count_tokens()
125 case ID_WORD: // matched a word in operator ()()
Dword_count_functor.flex11 #define ID_WORD 1000
17 [^ \t\n]+ { return ID_WORD; }
25 case ID_WORD: ++*w; *c += yyleng; break;
Dword_count_functor_flex.cpp376 #define ID_WORD 1000 macro
629 { return ID_WORD; }
1542 case ID_WORD: ++*w; *c += yyleng; break; in count()
/third_party/boost/libs/spirit/test/lex/
Did_type_enum.cpp34 ID_WORD = lex::min_token_id + 1, enumerator
45 lexer() : word("^[a-zA-Z0-9]+$", ID_WORD) in lexer()
81 token_id test_data[] = { ID_EOL, ID_WORD, ID_EOL }; in main()