Searched refs:__sub (Results 1 – 4 of 4) sorted by relevance
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| D | regex.tcc | 368 auto& __sub = (*this)[__idx]; in format() local 369 if (__sub.matched) in format() 370 __out = std::copy(__sub.first, __sub.second, __out); in format() 430 auto& __sub = _M_prefix(); in format() local 431 if (__sub.matched) in format() 432 __out = std::copy(__sub.first, __sub.second, __out); in format() 436 auto& __sub = _M_suffix(); in format() local 437 if (__sub.matched) in format() 438 __out = std::copy(__sub.first, __sub.second, __out); in format()
|
| D | regex_executor.tcc | 155 _Executor __sub(_M_current, _M_end, __what, _M_re, _M_flags); in _M_lookahead() local 156 __sub._M_states._M_start = __next; in _M_lookahead() 157 if (__sub._M_search_from_first()) in _M_lookahead()
|
| D | regex.h | 1906 length(size_type __sub = 0) const in _GLIBCXX_VISIBILITY() 1907 { return (*this)[__sub].length(); } in _GLIBCXX_VISIBILITY() 1921 position(size_type __sub = 0) const in _GLIBCXX_VISIBILITY() 1922 { return std::distance(_M_begin, (*this)[__sub].first); } in _GLIBCXX_VISIBILITY() 1934 str(size_type __sub = 0) const in _GLIBCXX_VISIBILITY() 1935 { return string_type((*this)[__sub]); } in _GLIBCXX_VISIBILITY() 1949 operator[](size_type __sub) const in _GLIBCXX_VISIBILITY() 1952 return __sub < size() in _GLIBCXX_VISIBILITY() 1953 ? _Unchecked::operator[](__sub) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| D | regex | 1892 length(size_type __sub = 0) const 1893 { return _M_matched ? this->str(__sub).length() : 0; } 1906 position(size_type __sub = 0) const 1909 (*this)[__sub].first) : 0; 1920 str(size_type __sub = 0) const 1921 { return _M_matched ? (*this)[__sub].str() : string_type(); } 1934 operator[](size_type __sub) const 1935 { return _Base_type::operator[](__sub); }
|