Home
last modified time | relevance | path

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

/dports/devel/ragel/ragel-6.10/examples/
H A Dcppscan.cpp24 #define TK_IntegerDecimal 268 macro
154 {{p = ((te))-1;}token( TK_IntegerDecimal );} in main()
184 {{p = ((te))-1;}{token( TK_IntegerDecimal );}} in main()
264 {te = p;p--;{token( TK_IntegerDecimal );}} in main()
276 {te = p+1;{token( TK_IntegerDecimal );}} in main()
H A Dcppscan.rl22 #define TK_IntegerDecimal 268
90 {token( TK_IntegerDecimal );};
/dports/devel/ragel/ragel-6.10/test/
H A Dlmgoto.rl21 #define TK_IntegerDecimal 218
95 ( ( '0' | [1-9] [0-9]* ) [ulUL]{0,3} ) { token( TK_IntegerDecimal );};
H A Dcppscan3.rl21 #define TK_IntegerDecimal 218
83 => { token( TK_IntegerDecimal );};
H A Dcppscan5.rl24 static const int TK_IntegerDecimal = 218;
85 => { token( TK_IntegerDecimal );};
H A Dcppscan1.h24 #define TK_IntegerDecimal 218 macro
H A Dcppscan4.rl24 const int TK_IntegerDecimal = 218;
78 action emit_integer_decimal { token( TK_IntegerDecimal ); }
H A Dcppscan2.rl21 #define TK_IntegerDecimal 218
89 integer_decimal = ( ( '0' | [1-9] [0-9]* ) [ulUL]{0,3} ) @{tok = TK_IntegerDecimal;};
H A Dcppscan1.rl19 action emit_integer_decimal { fsm->token( TK_IntegerDecimal ); }