Searched refs:const_iterator (Results 1 - 25 of 379) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dtypedef36.C7 typedef int const_iterator; typedef in struct:S0
14 typedef typename SAlias::const_iterator const_iterator; typedef in struct:Test
15 const_iterator begin ();
19 typename S0<T>::const_iterator
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multiset/modifiers/erase/
H A Dabi_tag.cc33 using const_iterator = typename container::const_iterator;
36 iterator (container::*p1)(const_iterator) = &container::erase;
39 iterator (container::*p2)(const_iterator, const_iterator) = &container::erase;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/modifiers/erase/
H A Dabi_tag.cc33 using const_iterator = typename container::const_iterator;
36 iterator (container::*p1)(const_iterator) = &container::erase;
39 iterator (container::*p2)(const_iterator, const_iterator) = &container::erase;
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/
H A Diterators_fn_imps.hpp48 inline typename PB_DS_CLASS_C_DEC::const_iterator
51 { return const_iterator(m_a_entries); }
60 inline typename PB_DS_CLASS_C_DEC::const_iterator
63 { return const_iterator(m_a_entries + m_size); }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/modifiers/erase/
H A Dabi_tag.cc33 using const_iterator = typename container::const_iterator;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multimap/modifiers/erase/
H A Dabi_tag.cc33 using const_iterator = typename container::const_iterator;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/util/hash_fn/
H A Dstring_hash_fn.hpp52 typedef typename String_T::const_iterator const_iterator; typedef
53 const_iterator b = r_str.begin();
54 const_iterator e = r_str.end();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/
H A D15523.cc27 vector<vector<int>::const_iterator> x(2);
30 vector<int>::const_iterator ci1(i2);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dpr45908.C8 struct const_iterator { }; struct in struct:vector
10 const_iterator begin() const;
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/trie_policy/
H A Dsample_trie_access_traits.hpp54 typedef std::string::const_iterator const_iterator; typedef in struct:__gnu_pbds::sample_trie_access_traits
64 /// Returns a const_iterator to the first element of r_key.
65 inline static const_iterator
68 /// Returns a const_iterator to the after-last element of r_key.
69 inline static const_iterator
H A Dtrie_string_access_traits_imp.hpp54 inline typename PB_DS_CLASS_C_DEC::const_iterator
62 inline typename PB_DS_CLASS_C_DEC::const_iterator
70 inline typename PB_DS_CLASS_C_DEC::const_iterator
78 inline typename PB_DS_CLASS_C_DEC::const_iterator
86 inline typename PB_DS_CLASS_C_DEC::const_iterator
94 inline typename PB_DS_CLASS_C_DEC::const_iterator
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/types/
H A D23767.cc29 typedef String::const_iterator const_iterator; typedef in struct:T
32 char t(const_iterator f) const { return *f; }
40 T::const_iterator i = s.begin();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/types/
H A D23767.cc29 typedef Vector::const_iterator const_iterator; typedef in struct:T
32 int t(const_iterator f) const { return *f; }
40 T::const_iterator i = v.begin();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/types/
H A D1.cc29 typedef String_view::const_iterator const_iterator; typedef in struct:T
32 char t(const_iterator f) const { return *f; }
40 T::const_iterator i = s.begin();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/vstring/types/
H A D23767.cc29 typedef Vstring::const_iterator const_iterator; typedef in struct:T
32 char t(const_iterator f) const { return *f; }
40 T::const_iterator i = vs.begin();
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/branch_policy/
H A Dnull_node_metadata.hpp56 typedef typename __traits_type::pointer const_iterator; typedef in struct:__gnu_pbds::detail::dumnode_const_iterator
59 typedef const_iterator value_type;
60 typedef const_iterator const_reference;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/expr/
H A Dstmt-expr-1.C10 typename T::const_iterator i;
15 class const_iterator { class in class:QList
17 const_iterator(const const_iterator &o);
18 const_iterator &operator++();
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Diterators_fn_imps.hpp58 inline typename PB_DS_CLASS_C_DEC::const_iterator
65 return (const_iterator(0));
70 return (const_iterator(p_nd));
82 inline typename PB_DS_CLASS_C_DEC::const_iterator
86 return (const_iterator(0));
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/
H A Diterators_fn_imps.hpp55 inline typename PB_DS_CLASS_C_DEC::const_iterator
74 inline typename PB_DS_CLASS_C_DEC::const_iterator
78 return const_iterator(0, 0, const_cast<PB_DS_CLASS_C_DEC* const>(this));
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Diterator_fn_imps.hpp47 typename PB_DS_CLASS_C_DEC::const_iterator
68 inline typename PB_DS_CLASS_C_DEC::const_iterator
75 return const_iterator(p_value, pos, this);
79 inline typename PB_DS_CLASS_C_DEC::const_iterator
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/
H A D23781_neg.cc28 std::map<int, int>::const_iterator cit = NULL; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multimap/
H A D23781_neg.cc28 std::multimap<int, int>::const_iterator cit = NULL; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/
H A D23781_neg.cc29 list_type::const_iterator cit = NULL; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multiset/
H A D23781_neg.cc28 std::multiset<int>::const_iterator cit = NULL; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/
H A D23781_neg.cc28 std::set<int>::const_iterator cit = NULL; // { dg-error "conversion" }

Completed in 341 milliseconds

1234567891011>>