/third_party/boost/boost/xpressive/traits/detail/ |
D | c_ctype.hpp | 111 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 176 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 233 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 288 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 349 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 413 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 474 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 547 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 607 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 662 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function [all …]
|
/third_party/boost/boost/regex/v4/ |
D | c_regex_traits.hpp | 80 static char_class_type BOOST_REGEX_CALL lookup_classname(const char* p1, const char* p2); 125 static char_class_type BOOST_REGEX_CALL lookup_classname(const wchar_t* p1, const wchar_t* p2); 174 …static char_class_type BOOST_REGEX_CALL lookup_classname(const unsigned short* p1, const unsigned …
|
D | w32_regex_traits.hpp | 317 char_class_type lookup_classname(const charT* p1, const charT* p2) const in lookup_classname() function in boost::BOOST_REGEX_DETAIL_NS::w32_regex_traits_implementation 620 char_class_type lookup_classname(const charT* p1, const charT* p2) const in lookup_classname() function in boost::w32_regex_traits 622 return m_pimpl->lookup_classname(p1, p2); in lookup_classname()
|
D | basic_regex_creator.hpp | 282 m_word_mask = m_traits.lookup_classname(&w, &w +1); in basic_regex_creator() 283 m_mask_space = m_traits.lookup_classname(&s, &s +1); in basic_regex_creator() 284 m_lower_mask = m_traits.lookup_classname(l, l + 5); in basic_regex_creator() 285 m_upper_mask = m_traits.lookup_classname(u, u + 5); in basic_regex_creator() 286 m_alpha_mask = m_traits.lookup_classname(a, a + 5); in basic_regex_creator()
|
D | basic_regex_parser.hpp | 732 m_type m = this->m_traits.lookup_classname(m_position, m_position+1); in parse_extended_escape() 819 m = this->m_traits.lookup_classname(++base, m_position++); in parse_extended_escape() 823 m = this->m_traits.lookup_classname(m_position, m_position+1); in parse_extended_escape() 1411 char_class_type m = this->m_traits.lookup_classname(m_position, m_position+1); in parse_set() 1423 char_class_type m = this->m_traits.lookup_classname(m_position, m_position+1); in parse_set() 1515 m_type m = this->m_traits.lookup_classname(name_first, name_last); in parse_inner_set() 2980 char_set.add_class(this->m_traits.lookup_classname(s_punct, s_punct+5)); in add_emacs_code()
|
D | cpp_regex_traits.hpp | 451 char_class_type lookup_classname(const charT* p1, const charT* p2) const in lookup_classname() function in boost::BOOST_REGEX_DETAIL_NS::cpp_regex_traits_implementation 968 char_class_type lookup_classname(const charT* p1, const charT* p2) const in lookup_classname() function in boost::cpp_regex_traits 970 return m_pimpl->lookup_classname(p1, p2); in lookup_classname()
|
/third_party/boost/boost/xpressive/ |
D | regex_traits.hpp | 95 lookup_classname(Traits const &traits, char const (&cname)[N], bool icase) in lookup_classname() function 102 return traits.lookup_classname(name, name + N - 1, icase); in lookup_classname()
|
D | regex_compiler.hpp | 72 this->upper_ = lookup_classname(this->rxtraits(), "upper"); in regex_compiler() 84 this->upper_ = lookup_classname(this->rxtraits(), "upper"); in imbue()
|
/third_party/boost/libs/regex/test/concepts/ |
D | test_bug_11988.cpp | 54 static char_class_type lookup_classname(const char32_t* p1, const char32_t* p2) in lookup_classname() function 57 return boost::c_regex_traits<char>::lookup_classname(s.c_str(), s.c_str() + s.length()); in lookup_classname()
|
/third_party/boost/boost/xpressive/detail/dynamic/ |
D | parser_traits.hpp | 49 , space_(lookup_classname(traits_, "space")) in compiler_traits() 50 , alnum_(lookup_classname(traits_, "alnum")) in compiler_traits() 85 this->space_ = lookup_classname(this->traits(), "space"); in imbue() 86 this->alnum_ = lookup_classname(this->traits(), "alnum"); in imbue()
|
D | parse_charset.hpp | 92 esc.class_ = rxtraits.lookup_classname(begin, begin + 1, icase); in parse_escape() 316 char_class_type chclass = rxtraits.lookup_classname(start, tmp, icase); in parse_charset() 336 char_class_type upper_ = lookup_classname(rxtraits, "upper"); in parse_charset()
|
/third_party/boost/libs/regex/src/ |
D | wc_regex_traits.cpp | 164 c_regex_traits<wchar_t>::char_class_type BOOST_REGEX_CALL c_regex_traits<wchar_t>::lookup_classname… in lookup_classname() function in boost::c_regex_traits 286 …>::char_class_type BOOST_REGEX_CALL c_regex_traits<unsigned short>::lookup_classname(const unsigne… in lookup_classname() function in boost::c_regex_traits 288 return c_regex_traits<wchar_t>::lookup_classname((const wchar_t*)p1, (const wchar_t*)p2); in lookup_classname()
|
D | c_regex_traits.cpp | 124 c_regex_traits<char>::char_class_type BOOST_REGEX_CALL c_regex_traits<char>::lookup_classname(const… in lookup_classname() function in boost::c_regex_traits
|
D | icu.cpp | 367 icu_regex_traits::char_class_type icu_regex_traits::lookup_classname(const char_type* p1, const cha… in lookup_classname() function in boost::icu_regex_traits
|
/third_party/boost/boost/xpressive/detail/core/ |
D | finder.hpp | 108 : newline_(lookup_classname(tr, "newline")) in line_start_finder() 156 char_class_type newline = lookup_classname(tr, "newline"); in line_start_finder()
|
/third_party/boost/boost/xpressive/detail/core/matcher/ |
D | assert_line_base.hpp | 35 : newline_(lookup_classname(tr, "newline")) in assert_line_base()
|
D | logical_newline_matcher.hpp | 34 : newline_(lookup_classname(tr, "newline")) in logical_newline_matcher()
|
D | assert_word_matcher.hpp | 88 : word_(lookup_classname(tr, "w")) in assert_word_matcher()
|
/third_party/boost/boost/xpressive/traits/ |
D | c_regex_traits.hpp | 296 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function 298 return detail::char_class_impl<char_type>::lookup_classname(begin, end, icase); in lookup_classname()
|
D | null_regex_traits.hpp | 178 static char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) in lookup_classname() function
|
D | cpp_regex_traits.hpp | 514 char_class_type lookup_classname(FwdIter begin, FwdIter end, bool icase) const in lookup_classname() function
|
/third_party/boost/libs/xpressive/doc/ |
D | concepts.qbk | 250 `v.lookup_classname(F1, F2)` 258 `lookup_classname` can be safely bitwise or'ed together. Returns `0` if the 280 `v.isctype(c, v.lookup_classname(F1, F2))`
|
/third_party/boost/libs/regex/doc/ |
D | concepts.qbk | 81 [[v.lookup_classname(F1, F2)] 84 …be passed to isctype. Values returned from lookup_classname can be safely bitwise or'ed together. … 91 [[v.isctype(c, v.lookup_classname (F1, F2))][bool][Returns true if character c is a member of the c…
|
/third_party/boost/boost/xpressive/detail/static/ |
D | transmogrify.hpp | 161 return type(visitor.traits().lookup_classname(m.name_, name_end, ICase::value), m.not_); in call()
|
/third_party/boost/boost/xpressive/detail/ |
D | detail_fwd.hpp | 482 lookup_classname(Traits const &traits, char const (&cname)[N], bool icase = false);
|