Lines Matching refs:__s
356 void __match_any_but_newline<char>::__exec(__state& __s) const {
357 if (__s.__current_ != __s.__last_) {
358 switch (*__s.__current_) {
361 __s.__do_ = __state::__reject;
362 __s.__node_ = nullptr;
365 __s.__do_ = __state::__accept_and_consume;
366 ++__s.__current_;
367 __s.__node_ = this->first();
371 __s.__do_ = __state::__reject;
372 __s.__node_ = nullptr;
377 void __match_any_but_newline<wchar_t>::__exec(__state& __s) const {
378 if (__s.__current_ != __s.__last_) {
379 switch (*__s.__current_) {
384 __s.__do_ = __state::__reject;
385 __s.__node_ = nullptr;
388 __s.__do_ = __state::__accept_and_consume;
389 ++__s.__current_;
390 __s.__node_ = this->first();
394 __s.__do_ = __state::__reject;
395 __s.__node_ = nullptr;