Home
last modified time | relevance | path

Searched refs:ch_ (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Dconjure_static_switch_lexer.hpp50 char ch_ = 0; in next_token_conjure_static_switch() local
53 ch_ = *curr_; in next_token_conjure_static_switch()
56 if ((ch_ >= '0' && ch_ <= '9')) goto state0_1; in next_token_conjure_static_switch()
58 if (ch_ == 't') goto state0_2; in next_token_conjure_static_switch()
60 if (ch_ == 'f') goto state0_3; in next_token_conjure_static_switch()
62 if (ch_ == 'v') goto state0_4; in next_token_conjure_static_switch()
64 if (ch_ == 'i') goto state0_5; in next_token_conjure_static_switch()
66 if (ch_ == 'e') goto state0_6; in next_token_conjure_static_switch()
68 if (ch_ == 'w') goto state0_7; in next_token_conjure_static_switch()
70 if (ch_ == 'r') goto state0_8; in next_token_conjure_static_switch()
[all …]
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/
Dconjure_static_switch_lexer.hpp50 char ch_ = 0; in next_token_conjure_static_switch() local
53 ch_ = *curr_; in next_token_conjure_static_switch()
56 if ((ch_ >= '0' && ch_ <= '9')) goto state0_1; in next_token_conjure_static_switch()
58 if (ch_ == 't') goto state0_2; in next_token_conjure_static_switch()
60 if (ch_ == 'f') goto state0_3; in next_token_conjure_static_switch()
62 if (ch_ == 'v') goto state0_4; in next_token_conjure_static_switch()
64 if (ch_ == 'i') goto state0_5; in next_token_conjure_static_switch()
66 if (ch_ == 'e') goto state0_6; in next_token_conjure_static_switch()
68 if (ch_ == 'w') goto state0_7; in next_token_conjure_static_switch()
70 if (ch_ == 'r') goto state0_8; in next_token_conjure_static_switch()
[all …]
/third_party/boost/boost/spirit/home/support/detail/lexer/parser/tokeniser/
Dre_tokeniser_helper.hpp28 static const CharT *escape_sequence (state &state_, CharT &ch_, in escape_sequence() argument
47 ch_ = chr (state_); in escape_sequence()
56 CharT ch_ = 0; in charset() local
57 bool eos_ = state_.next (ch_); in charset()
66 negated_ = ch_ == '^'; in charset()
70 eos_ = state_.next (ch_); in charset()
83 while (ch_ != ']') in charset()
85 if (ch_ == '\\') in charset()
122 prev_ = ch_; in charset()
125 eos_ = state_.next (ch_); in charset()
[all …]
Dre_tokeniser.hpp38 CharT ch_ = 0; in next() local
39 bool eos_ = state_.next (ch_); in next()
43 while (!eos_ && ch_ == '"') in next()
46 eos_ = state_.next (ch_); in next()
67 if (ch_ == '\\') in next()
76 create_charset_token (string (1, ch_), false, map_, token_); in next()
82 switch (ch_) in next()
159 create_charset_token (string (1, ch_), false, in next()
172 create_charset_token (string (1, ch_), false, in next()
199 (std::isupper (ch_, state_._locale) || in next()
[all …]
Dre_tokeniser_state.hpp64 inline bool next (CharT &ch_) in next()
68 ch_ = 0; in next()
73 ch_ = *_curr; in next()
/third_party/boost/boost/xpressive/detail/dynamic/
Dparse_charset.hpp43 Char ch_; member
101 esc.ch_ = converter(toi(begin, end, rxtraits, 8, 0777)); in parse_escape()
109 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\a'); in parse_escape()
114 esc.ch_ = converter(27); in parse_escape()
128 esc.ch_ = converter(*begin % 32); in parse_escape()
133 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\f'); in parse_escape()
138 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\n'); in parse_escape()
143 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\r'); in parse_escape()
148 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\t'); in parse_escape()
153 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\v'); in parse_escape()
[all …]
/third_party/boost/boost/xpressive/detail/core/matcher/
Dliteral_matcher.hpp34 char_type ch_; member
37 : ch_(ch) in literal_matcher()
41 : ch_(detail::translate(ch, tr, icase_type())) in literal_matcher()
48 … (detail::translate(*state.cur_, traits_cast<Traits>(state), icase_type()) == this->ch_)) in match()
/third_party/boost/boost/spirit/home/qi/char/
Dchar.hpp126 literal_char(Char ch_) in literal_char()
127 : ch(static_cast<char_type>(ch_)) {} in literal_char()
138 bool test(CharParam ch_, Context&) const in test()
140 return traits::ischar<CharParam, char_encoding>::call(ch_) && in test()
141 ch == char_type(ch_); in test()
176 bool test(CharParam ch_, Context&) const in test()
178 if (!traits::ischar<CharParam, char_encoding>::call(ch_)) in test()
181 char_type ch = char_type(ch_); // optimize for token based parsing in test()
208 bool test(CharParam ch_, Context&) const in test()
210 if (!traits::ischar<CharParam, char_encoding>::call(ch_)) in test()
[all …]
/third_party/boost/boost/spirit/home/x3/char/
Dchar_set.hpp40 bool test(Char ch_, Context const& context) const in test()
43 char_type ch = char_type(ch_); // optimize for token based parsing in test()
97 bool test(Char ch_, Context const& context) const in test()
99 return get_case_compare<encoding>(context).in_set(ch_, chset); in test()
Dliteral_char.hpp30 bool test(Char ch_, Context const& context) const in test()
32 return get_case_compare<encoding>(context)(ch, char_type(ch_)) == 0; in test()
Dany_char.hpp25 bool test(Char ch_, Context const&) const in test()
27 return encoding::ischar(ch_); in test()
/third_party/boost/boost/spirit/home/support/detail/lexer/
Dstring_token.hpp142 static void escape_char (const CharT ch_, string &out_) in escape_char()
144 switch (ch_) in escape_char()
198 if (ch_ < 32 && ch_ >= 0) in escape_char()
205 static_cast<std::size_t> (ch_); in escape_char()
210 out_ += ch_; in escape_char()
/third_party/boost/boost/spirit/home/x3/support/
Dno_case.hpp44 bool in_set(Char ch_, CharSet const& set) in in_set()
47 auto ch = char_type(ch_); in in_set()
/third_party/boost/boost/xpressive/detail/utility/chset/
Dchset.hpp117 char_type ch_; member
122 return !this->traits_ptr_->isctype(this->ch_, m); in operator ()()
/third_party/python/Modules/
D_cursesmodule.c1328 chtype ch_; in _curses_window_echochar_impl() local
1330 if (!PyCurses_ConvertToChtype(self, ch, &ch_)) in _curses_window_echochar_impl()
1335 return PyCursesCheckERR(pechochar(self->win, ch_ | (attr_t)attr), in _curses_window_echochar_impl()
1340 return PyCursesCheckERR(wechochar(self->win, ch_ | (attr_t)attr), in _curses_window_echochar_impl()
1629 chtype ch_; in _curses_window_hline_impl() local
1631 if (!PyCurses_ConvertToChtype(self, ch, &ch_)) in _curses_window_hline_impl()
1638 return PyCursesCheckERR(whline(self->win, ch_ | (attr_t)attr, n), "hline"); in _curses_window_hline_impl()
1673 chtype ch_ = 0; in _curses_window_insch_impl() local
1675 if (!PyCurses_ConvertToChtype(self, ch, &ch_)) in _curses_window_insch_impl()
1679 rtn = winsch(self->win, ch_ | (attr_t)attr); in _curses_window_insch_impl()
[all …]
/third_party/ffmpeg/libavcodec/arm/
Dmlpdsp_init_arm.c45 …int32_t ff_mlp_pack_output_##order##order_##channels##ch_##shift##shift_armv6(int32_t, uint16_t, i…
47 ff_mlp_pack_output_##order##order_##channels##ch_##shift##shift_armv6,
/third_party/boost/boost/spirit/home/classic/core/primitives/
Dprimitives.hpp119 chlit(CharT ch_) in chlit()
120 : ch(ch_) {} in chlit()
123 bool test(T ch_) const in test()
125 return ch_ == ch; in test()
/third_party/boost/boost/spirit/home/karma/char/
Dchar.hpp180 bool test(Attribute const& attr, CharParam& ch_, Context&) const in test()
183 ch_ = static_cast<char_type>(attr); in test()
190 bool test(unused_type, CharParam& ch_, Context&) const in test()
192 ch_ = ch; in test()
/third_party/boost/boost/xpressive/detail/static/transforms/
Das_inverse.hpp46 return type(t.ch_); in call()
Das_set.hpp149 set_char(this->charset_.charset_, ch.ch_, this->visitor_.traits(), icase_type()); in set_()
/third_party/boost/boost/utility/
Dstring_ref.hpp44 string_ref_traits_eq ( charT ch ) : ch_(ch) {} in string_ref_traits_eq()
45 bool operator () ( charT val ) const { return traits::eq ( ch_, val ); } in operator ()()
46 charT ch_; member in boost::detail::string_ref_traits_eq
Dstring_view.hpp48 string_view_traits_eq ( charT ch ) : ch_(ch) {} in string_view_traits_eq()
49 bool operator()( charT val ) const { return traits::eq (ch_, val); } in operator ()()
50 charT ch_; member in boost::detail::string_view_traits_eq
/third_party/ejdb/src/jbl/
Djbl_json.c401 #define PT(data_, size_, ch_, count_) do { \ in _jbl_node_as_json() argument
402 rc = pt(data_, size_, ch_, count_, op); \ in _jbl_node_as_json()
/third_party/boost/boost/xpressive/detail/core/
Dpeeker.hpp148 this->bset_.set_char(xpr.ch_, ICase(), this->get_traits_<Traits>()); in accept()
/third_party/boost/boost/xpressive/
Dregex_compiler.hpp542 esc.ch_, this->traits_.flags(), this->rxtraits() in parse_atom()
674 literal.insert(literal.end(), esc.ch_); in parse_literal()

12