| /src/external/gpl3/gdb/dist/gdbsupport/ |
| array-view.h | 26 /* An array_view is an abstraction that provides a non-owning view 29 A way to put it is that array_view is to std::vector (and 33 The main intent of array_view is to use it as function input 42 void function (gdb::array_view<A> as); 55 created by specifying a const T as array_view template parameter, 56 in which case operator[] of non-const array_view objects ends up 57 returning const references. Making the array_view itself const is 61 Since array_view objects are small (pointer plus size), and 71 class array_view class in namespace:gdb 95 constexpr array_view () noexcep [all...] |
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| array-view.h | 26 /* An array_view is an abstraction that provides a non-owning view 29 A way to put it is that array_view is to std::vector (and 33 The main intent of array_view is to use it as function input 42 void function (gdb::array_view<A> as); 55 created by specifying a const T as array_view template parameter, 56 in which case operator[] of non-const array_view objects ends up 57 returning const references. Making the array_view itself const is 61 Since array_view objects are small (pointer plus size), and 71 class array_view class in namespace:gdb 93 constexpr array_view () noexcep [all...] |
| /src/external/gpl3/gdb/dist/gdb/unittests/ |
| array-view-selftests.c | 1 /* Self tests for array_view for GDB, the GNU debugger. 30 static_assert (std::TRAIT<gdb::array_view<gdb_byte>>::value, "") 55 using gdb::array_view; member in class:gdb 58 /* immutable array_view */ 59 && is_convertible<const T (&) [1], array_view<const T>> () 60 && is_convertible<T (&) [1], array_view<const T>> () 61 && is_convertible<const T, array_view<const T>> () 62 && is_convertible<T, array_view<const T>> () 64 /* mutable array_view */ 65 && is_convertible<T (&) [1], array_view<T>> ( 90 using gdb::array_view; member in class:gdb 122 using gdb::array_view; member in class:gdb 149 using gdb::array_view; member in class:gdb 166 using gdb::array_view; member in class:gdb [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/unittests/ |
| array-view-selftests.c | 1 /* Self tests for array_view for GDB, the GNU debugger. 30 static_assert (std::TRAIT<gdb::array_view<gdb_byte>>::value, "") 55 using gdb::array_view; member in class:gdb 58 /* immutable array_view */ 59 && is_convertible<const T (&) [1], array_view<const T>> () 60 && is_convertible<T (&) [1], array_view<const T>> () 61 && is_convertible<const T, array_view<const T>> () 62 && is_convertible<T, array_view<const T>> () 64 /* mutable array_view */ 65 && is_convertible<T (&) [1], array_view<T>> ( 90 using gdb::array_view; member in class:gdb 122 using gdb::array_view; member in class:gdb 149 using gdb::array_view; member in class:gdb 166 using gdb::array_view; member in class:gdb [all...] |