Home
last modified time | relevance | path

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

/dports/devel/ragel/ragel-6.10/test/
H A Dlmgoto.rl15 #define TK_PlusPlus 212
117 '++' {token( TK_PlusPlus );};
H A Dcppscan3.rl15 #define TK_PlusPlus 212
107 '++' => {token( TK_PlusPlus );};
H A Dcppscan5.rl18 static const int TK_PlusPlus = 212;
109 '++' => {token( TK_PlusPlus );};
H A Dcppscan1.h18 #define TK_PlusPlus 212 macro
H A Dcppscan4.rl18 const int TK_PlusPlus = 212;
122 plus_plus = '++' @buf %{token( TK_PlusPlus );};
H A Dcppscan2.rl15 #define TK_PlusPlus 212
111 plus_plus = '++' @{tok = TK_PlusPlus;};
H A Dcppscan1.rl63 plus_plus = '++' @buf %{fsm->token( TK_PlusPlus );};
/dports/devel/ragel/ragel-6.10/examples/
H A Dcppscan.rl16 #define TK_PlusPlus 262
114 '++' {token( TK_PlusPlus );};
H A Dcppscan.cpp18 #define TK_PlusPlus 262 macro
220 {te = p+1;{token( TK_PlusPlus );}} in main()