Searched refs:__pair (Results 1 – 6 of 6) sorted by relevance
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| D | utility | 74 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair) 75 { return __pair.first; } 78 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair) 79 { return __pair.first; } 86 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair) 87 { return __pair.second; } 90 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair) 91 { return __pair.second; }
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| D | stl_pair.h | 809 __get(pair<_Tp1, _Tp2>& __pair) noexcept in _GLIBCXX_VISIBILITY() 810 { return __pair.first; } in _GLIBCXX_VISIBILITY() 814 __move_get(pair<_Tp1, _Tp2>&& __pair) noexcept in _GLIBCXX_VISIBILITY() 815 { return std::forward<_Tp1>(__pair.first); } in _GLIBCXX_VISIBILITY() 819 __const_get(const pair<_Tp1, _Tp2>& __pair) noexcept in _GLIBCXX_VISIBILITY() 820 { return __pair.first; } in _GLIBCXX_VISIBILITY() 824 __const_move_get(const pair<_Tp1, _Tp2>&& __pair) noexcept in _GLIBCXX_VISIBILITY() 825 { return std::forward<const _Tp1>(__pair.first); } in _GLIBCXX_VISIBILITY() 833 __get(pair<_Tp1, _Tp2>& __pair) noexcept in _GLIBCXX_VISIBILITY() 834 { return __pair.second; } in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/lib/libcurses/ |
| D | curses_private.h | 173 struct __pair { struct 240 struct __pair colour_pairs[MAX_PAIRS];
|
| D | color.c | 48 struct __pair __default_pair = {COLOR_WHITE, COLOR_BLACK, 0};
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
| D | unordered_set | 1226 auto __pair = _Base::equal_range(__key); 1227 for (auto __victim = __pair.first; __victim != __pair.second;)
|
| D | unordered_map | 1380 auto __pair = _Base::equal_range(__key); 1381 for (auto __victim = __pair.first; __victim != __pair.second;)
|