|
| class | AbstractLexer |
| | The abstract lexer class template that is the abstract root class of all reflex-generated scanners. More...
|
| |
| class | AbstractMatcher |
| | The abstract matcher base class template defines an interface for all pattern matcher engines. More...
|
| |
| class | Bits |
| | RE/flex Bits class for dynamic bit vectors. More...
|
| |
| class | BoostMatcher |
| | Boost matcher engine class implements reflex::PatternMatcher pattern matching interface with scan, find, split functors and iterators, using the Boost::regex library. More...
|
| |
| class | BoostPerlMatcher |
| | Boost matcher engine class, extends reflex::BoostMatcher for Boost Perl regex matching. More...
|
| |
| class | BoostPosixMatcher |
| | Boost matcher engine class, extends reflex::BoostMatcher for Boost POSIX regex matching. More...
|
| |
| class | FlexLexer |
| | Flex-compatible FlexLexer abstract base class template derived from reflex::AbstractMatcher for the reflex-generated yyFlexLexer scanner class. More...
|
| |
| class | Input |
| | Input character sequence class for unified access to sources of input. More...
|
| |
| struct | lazy_intersection |
| | Intersection of two ordered sets, with an iterator to get elements lazely. More...
|
| |
| struct | lazy_union |
| | Union of two ordered sets, with an iterator to get elements lazely. More...
|
| |
| class | Matcher |
| | RE/flex matcher engine class, implements reflex::PatternMatcher pattern matching interface with scan, find, split functors and iterators. More...
|
| |
| class | ORanges |
| | RE/flex ORanges (open-ended, ordinal value range) template class. More...
|
| |
| class | Pattern |
| | Pattern class holds a regex pattern and its compiled FSM opcode table or code for the reflex::Matcher engine. More...
|
| |
| class | PatternMatcher |
| | The pattern matcher class template extends abstract matcher base class. More...
|
| |
| struct | range_compare |
| | Functor to order ranges in the reflex::Ranges set container. More...
|
| |
| class | Ranges |
| | RE/flex Ranges template class. More...
|
| |
| struct | TypeOp |
| | TypeOp<T>::Type = T, TypeOp<T>::ConstType = const T, TypeOp<T>::NonConstType = non-const T. More...
|
| |
| struct | TypeOp< const T > |
| | Template specialization of reflex::TypeOp. More...
|
| |
|
| int | isword (int c) |
| | Check word character. More...
|
| |
| template<typename S1 , typename S2 > |
| bool | is_disjoint (const S1 &s1, const S2 &s2) |
| | Check if sets s1 and s2 are disjoint. More...
|
| |
| template<typename T , typename S > |
| bool | is_in_set (const T &x, const S &s) |
| | Check if value x is in set s. More...
|
| |
| template<typename S1 , typename S2 > |
| bool | is_subset (const S1 &s1, const S2 &s2) |
| | Check if set s1 is a subset of set s2. More...
|
| |
| template<typename S1 , typename S2 > |
| void | set_insert (S1 &s1, const S2 &s2) |
| | Insert set s2 into set s1. More...
|
| |
| template<typename S1 , typename S2 > |
| void | set_delete (S1 &s1, const S2 &s2) |
| | Delete elements of set s2 from set s1. More...
|
| |
| std::string | utf8 (unicode_t a, unicode_t b, bool strict=true, const char *esc=NULL) |
| | Convert a UCS range [a,b] to a UTF-8 regex pattern. More...
|
| |
| size_t | utf8 (unicode_t c, char *s) |
| | Convert UCS to UTF-8. More...
|
| |
| unicode_t | utf8 (const char *s) |
| | Convert UTF-8 to UCS. More...
|
| |