Lines Matching refs:__high
538 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
540 return do_is(__low, __high, __vec);
544 const char_type* scan_is(mask __m, const char_type* __low, const char_type* __high) const
546 return do_scan_is(__m, __low, __high);
550 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
552 return do_scan_not(__m, __low, __high);
562 const char_type* toupper(char_type* __low, const char_type* __high) const
564 return do_toupper(__low, __high);
574 const char_type* tolower(char_type* __low, const char_type* __high) const
576 return do_tolower(__low, __high);
586 const char* widen(const char* __low, const char* __high, char_type* __to) const
588 return do_widen(__low, __high, __to);
598 …const char_type* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to…
600 return do_narrow(__low, __high, __dfault, __to);
608 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
609 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
610 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
612 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
614 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
616 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
618 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…
639 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
641 for (; __low != __high; ++__low, ++__vec)
647 const char_type* scan_is (mask __m, const char_type* __low, const char_type* __high) const
649 for (; __low != __high; ++__low)
656 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
658 for (; __low != __high; ++__low)
671 const char_type* toupper(char_type* __low, const char_type* __high) const
673 return do_toupper(__low, __high);
683 const char_type* tolower(char_type* __low, const char_type* __high) const
685 return do_tolower(__low, __high);
695 const char* widen(const char* __low, const char* __high, char_type* __to) const
697 return do_widen(__low, __high, __to);
707 …const char* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) con…
709 return do_narrow(__low, __high, __dfault, __to);
733 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
735 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
737 virtual const char* do_widen(const char* __low, const char* __high, char_type* __to) const;
739 …virtual const char* do_narrow(const char_type* __low, const char_type* __high, char __dfault, char…
759 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
761 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
777 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
778 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
779 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
781 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
783 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
785 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
787 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…