libstdc++
Base and Implementation Classes
Collaboration diagram for Base and Implementation Classes:

Classes

struct  std::__detail::_BracketMatcher< _TraitsT, __icase, __collate >
 
class  std::__detail::_Compiler< _TraitsT >
 
class  std::__detail::_Executor< _BiIter, _Alloc, _TraitsT, __dfs_mode >
 
class  std::__detail::_Scanner< _CharT >
 
class  std::__detail::_StateSeq< _TraitsT >
 

Typedefs

template<typename _Iter , typename _TraitsT >
using std::__detail::__disable_if_contiguous_normal_iter = typename enable_if< !__is_contiguous_normal_iter< _Iter >::value, std::shared_ptr< const _NFA< _TraitsT >> >::type
 
template<typename _Iter , typename _TraitsT >
using std::__detail::__enable_if_contiguous_normal_iter = typename enable_if< __is_contiguous_normal_iter< _Iter >::value, std::shared_ptr< const _NFA< _TraitsT >> >::type
 
template<typename _CharT >
using std::__detail::_Matcher = std::function< bool(_CharT)>
 
typedef long std::__detail::_StateIdT
 

Enumerations

enum  std::__detail::_Opcode : int {
  _S_opcode_unknown, _S_opcode_alternative, _S_opcode_repeat, _S_opcode_backref,
  _S_opcode_line_begin_assertion, _S_opcode_line_end_assertion, _S_opcode_word_boundary, _S_opcode_subexpr_lookahead,
  _S_opcode_subexpr_begin, _S_opcode_subexpr_end, _S_opcode_dummy, _S_opcode_match,
  _S_opcode_accept
}
 
enum  _StateT { _S_state_normal, _S_state_in_brace, _S_state_in_bracket }
 
enum  std::__detail::_ScannerBase::_TokenT {
  _S_token_anychar, _S_token_ord_char, _S_token_oct_num, _S_token_hex_num,
  _S_token_backref, _S_token_subexpr_begin, _S_token_subexpr_no_group_begin, _S_token_subexpr_lookahead_begin,
  _S_token_subexpr_end, _S_token_bracket_begin, _S_token_bracket_neg_begin, _S_token_bracket_end,
  _S_token_interval_begin, _S_token_interval_end, _S_token_quoted_class, _S_token_char_class_name,
  _S_token_collsymbol, _S_token_equiv_class_name, _S_token_opt, _S_token_or,
  _S_token_closure0, _S_token_closure1, _S_token_line_begin, _S_token_line_end,
  _S_token_word_bound, _S_token_comma, _S_token_dup_count, _S_token_eof,
  _S_token_unknown
}
 

Functions

template<typename _FwdIter , typename _TraitsT >
__enable_if_contiguous_normal_iter< _FwdIter, _TraitsT > std::__detail::__compile_nfa (_FwdIter __first, _FwdIter __last, const typename _TraitsT::locale_type &__loc, regex_constants::syntax_option_type __flags)
 

Variables

static const _StateIdT std::__detail::_S_invalid_state_id
 

Detailed Description

Enumeration Type Documentation

Operation codes that define the type of transitions within the base NFA that represents the regular expression.

Definition at line 56 of file regex_automaton.h.

Token types returned from the scanner.

Definition at line 46 of file regex_scanner.h.