Home
last modified time | relevance | path

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

/dports/devel/ragel/ragel-6.10/ragel/
H A Dparsedata.cpp283 retFsm->rangeFsm( 0, 127 ); in makeBuiltin()
296 retFsm->rangeFsm( 0, 255 ); in makeBuiltin()
303 upper->rangeFsm( 'A', 'Z' ); in makeBuiltin()
304 lower->rangeFsm( 'a', 'z' ); in makeBuiltin()
320 digit->rangeFsm( '0', '9' ); in makeBuiltin()
321 upper->rangeFsm( 'A', 'Z' ); in makeBuiltin()
322 lower->rangeFsm( 'a', 'z' ); in makeBuiltin()
345 cntrl->rangeFsm( 0, 31 ); in makeBuiltin()
397 digit->rangeFsm( '0', '9' ); in makeBuiltin()
398 upper->rangeFsm( 'A', 'F' ); in makeBuiltin()
[all …]
H A Dparsetree.cpp1877 retFsm->rangeFsm( lowKey, highKey ); in walk()
2107 rtnVal->rangeFsm( lowKey, highKey ); in walk()
2118 otherRange->rangeFsm( otherLow, otherHigh ); in walk()
2130 otherRange->rangeFsm( otherLow, otherHigh ); in walk()
H A Dfsmgraph.h1353 void rangeFsm( Key low, Key high );
H A Dfsmgraph.cpp141 void FsmAp::rangeFsm( Key low, Key high ) in rangeFsm() function in FsmAp