Home | History | Annotate | Download | only in src

Lines Matching refs:__s

279 __match_any_but_newline<char>::__exec(__state& __s) const
281 if (__s.__current_ != __s.__last_)
283 switch (*__s.__current_)
287 __s.__do_ = __state::__reject;
288 __s.__node_ = nullptr;
291 __s.__do_ = __state::__accept_and_consume;
292 ++__s.__current_;
293 __s.__node_ = this->first();
299 __s.__do_ = __state::__reject;
300 __s.__node_ = nullptr;
306 __match_any_but_newline<wchar_t>::__exec(__state& __s) const
308 if (__s.__current_ != __s.__last_)
310 switch (*__s.__current_)
316 __s.__do_ = __state::__reject;
317 __s.__node_ = nullptr;
320 __s.__do_ = __state::__accept_and_consume;
321 ++__s.__current_;
322 __s.__node_ = this->first();
328 __s.__do_ = __state::__reject;
329 __s.__node_ = nullptr;