• Home
  • Raw
  • Download

Lines Matching refs:__low

496     const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
498 return do_is(__low, __high, __vec);
502 const char_type* scan_is(mask __m, const char_type* __low, const char_type* __high) const
504 return do_scan_is(__m, __low, __high);
508 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
510 return do_scan_not(__m, __low, __high);
520 const char_type* toupper(char_type* __low, const char_type* __high) const
522 return do_toupper(__low, __high);
532 const char_type* tolower(char_type* __low, const char_type* __high) const
534 return do_tolower(__low, __high);
544 const char* widen(const char* __low, const char* __high, char_type* __to) const
546 return do_widen(__low, __high, __to);
556 …const char_type* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to…
558 return do_narrow(__low, __high, __dfault, __to);
566 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
567 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
568 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
570 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
572 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
574 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
576 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…
597 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
599 for (; __low != __high; ++__low, ++__vec)
600 *__vec = isascii(*__low) ? __tab_[static_cast<int>(*__low)] : 0;
601 return __low;
605 const char_type* scan_is (mask __m, const char_type* __low, const char_type* __high) const
607 for (; __low != __high; ++__low)
608 if (isascii(*__low) && (__tab_[static_cast<int>(*__low)] & __m))
610 return __low;
614 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
616 for (; __low != __high; ++__low)
617 if (!(isascii(*__low) && (__tab_[static_cast<int>(*__low)] & __m)))
619 return __low;
629 const char_type* toupper(char_type* __low, const char_type* __high) const
631 return do_toupper(__low, __high);
641 const char_type* tolower(char_type* __low, const char_type* __high) const
643 return do_tolower(__low, __high);
653 const char* widen(const char* __low, const char* __high, char_type* __to) const
655 return do_widen(__low, __high, __to);
665 …const char* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) con…
667 return do_narrow(__low, __high, __dfault, __to);
691 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
693 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
695 virtual const char* do_widen(const char* __low, const char* __high, char_type* __to) const;
697 …virtual const char* do_narrow(const char_type* __low, const char_type* __high, char __dfault, char…
717 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
719 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
735 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
736 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
737 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
739 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
741 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
743 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
745 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…