| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/debug/ |
| H A D | macros.h | 53 #define __glibcxx_check_valid_range(_First,_Last) \ argument 54 _GLIBCXX_DEBUG_VERIFY(__gnu_debug::__valid_range(_First, _Last), \ 56 ._M_iterator(_First, #_First) \ 59 #define __glibcxx_check_valid_range2(_First,_Last,_Dist) \ argument 60 _GLIBCXX_DEBUG_VERIFY(__gnu_debug::__valid_range(_First, _Last, _Dist), \ 62 ._M_iterator(_First, #_First) \ 66 #define __glibcxx_check_non_empty_range(_First,_Last) \ argument 67 _GLIBCXX_DEBUG_VERIFY(_First != _Last, \ 69 ._M_iterator(_First, #_First) \ 113 #define __glibcxx_check_insert_range(_Position,_First,_Last,_Dist) \ argument [all …]
|
| H A D | debug.h | 64 # define __glibcxx_requires_valid_range(_First,_Last) argument 65 # define __glibcxx_requires_sorted(_First,_Last) argument 66 # define __glibcxx_requires_sorted_pred(_First,_Last,_Pred) argument 69 # define __glibcxx_requires_partitioned_lower(_First,_Last,_Value) argument 70 # define __glibcxx_requires_partitioned_upper(_First,_Last,_Value) argument 71 # define __glibcxx_requires_partitioned_lower_pred(_First,_Last,_Value,_Pred) argument 72 # define __glibcxx_requires_partitioned_upper_pred(_First,_Last,_Value,_Pred) argument 73 # define __glibcxx_requires_heap(_First,_Last) argument 74 # define __glibcxx_requires_heap_pred(_First,_Last,_Pred) argument 77 # define __glibcxx_requires_irreflexive(_First,_Last) argument [all …]
|
| H A D | assertions.h | 41 # define __glibcxx_requires_non_empty_range(_First,_Last) argument 47 # define __glibcxx_requires_non_empty_range(_First,_Last) \ argument 48 __glibcxx_assert(__builtin_expect(_First != _Last, true))
|
| H A D | forward_list | 40 #define __glibcxx_check_valid_fl_range(_First,_Last,_Dist) \ 41 _GLIBCXX_DEBUG_VERIFY(_First._M_valid_range(_Last, _Dist, false), \ 43 ._M_iterator(_First, #_First) \
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/debug/ |
| H A D | macros.h | 54 #define __glibcxx_check_valid_range(_First,_Last) \ argument 55 _GLIBCXX_DEBUG_VERIFY(__gnu_debug::__valid_range(_First, _Last), \ 57 ._M_iterator(_First, #_First) \ 61 #define __glibcxx_check_non_empty_range(_First,_Last) \ argument 62 _GLIBCXX_DEBUG_VERIFY(_First != _Last, \ 64 ._M_iterator(_First, #_First) \ 111 #define __glibcxx_check_insert_range(_Position,_First,_Last) \ argument 112 __glibcxx_check_valid_range(_First,_Last); \ 128 #define __glibcxx_check_insert_range_after(_Position,_First,_Last) \ argument 129 __glibcxx_check_valid_range(_First,_Last); \ [all …]
|
| H A D | debug.h | 66 # define __glibcxx_requires_valid_range(_First,_Last) argument 67 # define __glibcxx_requires_non_empty_range(_First,_Last) argument 68 # define __glibcxx_requires_sorted(_First,_Last) argument 69 # define __glibcxx_requires_sorted_pred(_First,_Last,_Pred) argument 72 # define __glibcxx_requires_partitioned_lower(_First,_Last,_Value) argument 73 # define __glibcxx_requires_partitioned_upper(_First,_Last,_Value) argument 74 # define __glibcxx_requires_partitioned_lower_pred(_First,_Last,_Value,_Pred) argument 75 # define __glibcxx_requires_partitioned_upper_pred(_First,_Last,_Value,_Pred) argument 76 # define __glibcxx_requires_heap(_First,_Last) argument 77 # define __glibcxx_requires_heap_pred(_First,_Last,_Pred) argument [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| H A D | boost_concept_check.h | 275 template <class _First, class _Second> \ in _GLIBCXX_VISIBILITY() 281 _First __a; \ in _GLIBCXX_VISIBILITY() 286 template <class _Ret, class _First, class _Second> \ in _GLIBCXX_VISIBILITY() 292 _First __a; \ in _GLIBCXX_VISIBILITY() 354 template <class _Func, class _Return, class _First, class _Second> in _GLIBCXX_VISIBILITY() 361 _First __first; in _GLIBCXX_VISIBILITY() 366 template <class _Func, class _First, class _Second> in _GLIBCXX_VISIBILITY() 367 struct _BinaryFunctionConcept<_Func, void, _First, _Second> in _GLIBCXX_VISIBILITY() 373 _First __first; in _GLIBCXX_VISIBILITY() 387 template <class _Func, class _First, class _Second> in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| H A D | boost_concept_check.h | 273 template <class _First, class _Second> \ in _GLIBCXX_VISIBILITY() 279 _First __a; \ in _GLIBCXX_VISIBILITY() 284 template <class _Ret, class _First, class _Second> \ in _GLIBCXX_VISIBILITY() 290 _First __a; \ in _GLIBCXX_VISIBILITY() 352 template <class _Func, class _Return, class _First, class _Second> in _GLIBCXX_VISIBILITY() 359 _First __first; in _GLIBCXX_VISIBILITY() 364 template <class _Func, class _First, class _Second> in _GLIBCXX_VISIBILITY() 365 struct _BinaryFunctionConcept<_Func, void, _First, _Second> in _GLIBCXX_VISIBILITY() 371 _First __first; in _GLIBCXX_VISIBILITY() 385 template <class _Func, class _First, class _Second> in _GLIBCXX_VISIBILITY() [all …]
|
| /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr2/ |
| H A D | type_traits | 66 template<typename _First, typename... _Rest> 67 struct __reflection_typelist<_First, _Rest...> 73 typedef _First type;
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr2/ |
| H A D | type_traits | 66 template<typename _First, typename... _Rest> 67 struct __reflection_typelist<_First, _Rest...> 73 typedef _First type;
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/std/ |
| H A D | variant | 60 template<size_t _Np, typename _First, typename... _Rest> 61 struct _Nth_type<_Np, _First, _Rest...> 64 template<typename _First, typename... _Rest> 65 struct _Nth_type<0, _First, _Rest...> 66 { using type = _First; }; 99 template<size_t _Np, typename _First, typename... _Rest> 100 struct variant_alternative<_Np, variant<_First, _Rest...>> 103 template<typename _First, typename... _Rest> 104 struct variant_alternative<0, variant<_First, _Rest...>> 105 { using type = _First; }; [all …]
|