• Home
  • Raw
  • Download

Lines Matching refs:__low

424     const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
426 return do_is(__low, __high, __vec);
430 const char_type* scan_is(mask __m, const char_type* __low, const char_type* __high) const
432 return do_scan_is(__m, __low, __high);
436 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
438 return do_scan_not(__m, __low, __high);
448 const char_type* toupper(char_type* __low, const char_type* __high) const
450 return do_toupper(__low, __high);
460 const char_type* tolower(char_type* __low, const char_type* __high) const
462 return do_tolower(__low, __high);
472 const char* widen(const char* __low, const char* __high, char_type* __to) const
474 return do_widen(__low, __high, __to);
484 …const char_type* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to…
486 return do_narrow(__low, __high, __dfault, __to);
494 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
495 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
496 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
498 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
500 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
502 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
504 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…
525 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
527 for (; __low != __high; ++__low, ++__vec)
528 *__vec = isascii(*__low) ? __tab_[static_cast<int>(*__low)] : 0;
529 return __low;
533 const char_type* scan_is (mask __m, const char_type* __low, const char_type* __high) const
535 for (; __low != __high; ++__low)
536 if (isascii(*__low) && (__tab_[static_cast<int>(*__low)] & __m))
538 return __low;
542 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
544 for (; __low != __high; ++__low)
545 if (!(isascii(*__low) && (__tab_[static_cast<int>(*__low)] & __m)))
547 return __low;
557 const char_type* toupper(char_type* __low, const char_type* __high) const
559 return do_toupper(__low, __high);
569 const char_type* tolower(char_type* __low, const char_type* __high) const
571 return do_tolower(__low, __high);
581 const char* widen(const char* __low, const char* __high, char_type* __to) const
583 return do_widen(__low, __high, __to);
593 …const char* narrow(const char_type* __low, const char_type* __high, char __dfault, char* __to) con…
595 return do_narrow(__low, __high, __dfault, __to);
617 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
619 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
621 virtual const char* do_widen(const char* __low, const char* __high, char_type* __to) const;
623 …virtual const char* do_narrow(const char_type* __low, const char_type* __high, char __dfault, char…
643 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
645 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
661 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
662 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
663 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
665 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const;
667 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
669 virtual const char* do_widen(const char* __low, const char* __high, char_type* __dest) const;
671 …virtual const char_type* do_narrow(const char_type* __low, const char_type* __high, char __dfault,…