Home
last modified time | relevance | path

Searched refs:syntax_type (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/regex/v4/
Dsyntax_type.hpp25 typedef unsigned char syntax_type; typedef
30 static const syntax_type syntax_char = 0;
31 static const syntax_type syntax_open_mark = 1;
32 static const syntax_type syntax_close_mark = 2;
33 static const syntax_type syntax_dollar = 3;
34 static const syntax_type syntax_caret = 4;
35 static const syntax_type syntax_dot = 5;
36 static const syntax_type syntax_star = 6;
37 static const syntax_type syntax_plus = 7;
38 static const syntax_type syntax_question = 8;
[all …]
Dbasic_regex_parser.hpp277 switch(this->m_traits.syntax_type(*m_position)) in parse_basic()
338 switch(this->m_traits.syntax_type(*m_position)) in parse_extended()
462 if(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_question) in parse_open_paren()
464 if(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_star) in parse_open_paren()
537 if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) in parse_open_paren()
808 if(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_open_brace) in parse_extended_escape()
812 …while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax… in parse_extended_escape()
882 regex_constants::syntax_type syn = this->m_traits.syntax_type(*m_position); in parse_extended_escape()
883 regex_constants::syntax_type syn_end = 0; in parse_extended_escape()
919 while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != syn_end)) in parse_extended_escape()
[all …]
Dw32_regex_traits.hpp156 typedef std::map<charT, regex_constants::syntax_type> map_type;
161 regex_constants::syntax_type syntax_type(charT c)const in syntax_type() function in boost::BOOST_REGEX_DETAIL_NS::w32_regex_traits_char_layer
187 string_type get_default_message(regex_constants::syntax_type);
215 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in w32_regex_traits_char_layer()
226 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in w32_regex_traits_char_layer()
240 w32_regex_traits_char_layer<charT>::get_default_message(regex_constants::syntax_type i) in get_default_message()
266 regex_constants::syntax_type syntax_type(char c)const in syntax_type() function in boost::BOOST_REGEX_DETAIL_NS::w32_regex_traits_char_layer
284 regex_constants::syntax_type m_char_map[1u << CHAR_BIT];
584 regex_constants::syntax_type syntax_type(charT c)const in syntax_type() function in boost::w32_regex_traits
586 return m_pimpl->syntax_type(c); in syntax_type()
Dcpp_regex_traits.hpp234 typedef std::map<charT, regex_constants::syntax_type> map_type;
249 regex_constants::syntax_type syntax_type(charT c)const in syntax_type() function in boost::BOOST_REGEX_DETAIL_NS::cpp_regex_traits_char_layer
267 string_type get_default_message(regex_constants::syntax_type);
304 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in init()
326 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in init()
342 cpp_regex_traits_char_layer<charT>::get_default_message(regex_constants::syntax_type i) in get_default_message()
373 regex_constants::syntax_type syntax_type(char c)const in syntax_type() function in boost::BOOST_REGEX_DETAIL_NS::cpp_regex_traits_char_layer
383 regex_constants::syntax_type m_char_map[1u << CHAR_BIT];
932 regex_constants::syntax_type syntax_type(charT c)const in syntax_type() function in boost::cpp_regex_traits
934 return m_pimpl->syntax_type(c); in syntax_type()
Dregex_traits.hpp104 ::boost::regex_constants::syntax_type syntax_type(char_type c)const in syntax_type() function
Dregex_traits_defaults.hpp66 BOOST_REGEX_DECL const char* BOOST_REGEX_CALL get_default_syntax(regex_constants::syntax_type n);
68 BOOST_REGEX_DECL regex_constants::syntax_type BOOST_REGEX_CALL get_default_syntax_type(char c);
/third_party/boost/libs/regex/src/
Dcpp_regex_traits.cpp65 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in init()
86 for(regex_constants::syntax_type j = 1; j < regex_constants::syntax_max; ++j) in init()
Dregex_traits_defaults.cpp41 BOOST_REGEX_DECL const char* BOOST_REGEX_CALL get_default_syntax(regex_constants::syntax_type n) in get_default_syntax()
495 BOOST_REGEX_DECL regex_constants::syntax_type BOOST_REGEX_CALL get_default_syntax_type(char c) in get_default_syntax_type()
501 static regex_constants::syntax_type char_syntax[] = { in get_default_syntax_type()
Dw32_regex_traits.cpp81 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in init()
92 for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) in init()
/third_party/boost/libs/regex/doc/
Dconcepts.qbk111 [[v.syntax_type(c)][regex_constants::syntax_type][Returns a symbolic value of type regex_constants:…
112 …b is the character preceding c in the expression being parsed then: `v.syntax_type(b) == syntax_es…
/third_party/boost/boost/regex/
Dicu.hpp118 ::boost::regex_constants::syntax_type syntax_type(char_type c)const in syntax_type() function in boost::icu_regex_traits