HomeSort by relevance Sort by last modified time
    Searched refs:ConstIterator (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/net/quic/congestion_control/
quic_max_sized_map.h 7 // Note: the ConstIterator will NOT be valid after an Insert or RemoveAll.
23 typedef typename std::multimap<Key, Value>::const_iterator ConstIterator;
53 ConstIterator Find(const Key& k) const {
57 ConstIterator Begin() const {
58 return ConstIterator(table_.begin());
61 ConstIterator End() const {
62 return ConstIterator(table_.end());
quic_max_sized_map_test.cc 34 QuicMaxSizedMap<int, int>::ConstIterator it = test_map.Find(2);
57 QuicMaxSizedMap<int, int>::ConstIterator it = test_map.Begin();
channel_estimator.cc 75 QuicMaxSizedMap<QuicBandwidth, QuicPacketSequenceNumber>::ConstIterator it =
  /external/llvm/include/llvm/ADT/
DenseSet.h 84 class ConstIterator {
94 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
99 ConstIterator& operator++() { ++I; return *this; }
100 bool operator==(const ConstIterator& X) const { return I == X.I; }
101 bool operator!=(const ConstIterator& X) const { return I != X.I; }
105 typedef ConstIterator const_iterator;
110 const_iterator begin() const { return ConstIterator(TheMap.begin()); }
111 const_iterator end() const { return ConstIterator(TheMap.end()); }
115 void erase(ConstIterator CI) { return TheMap.erase(CI.I); }
DenseMap.h 989 KeyInfoT, true> ConstIterator;
1021 bool operator==(const ConstIterator &RHS) const {
1024 bool operator!=(const ConstIterator &RHS) const {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 89 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
92 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
101 ConstIterator m_impl;
106 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
109 HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {}
118 ConstIterator m_impl;
124 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
137 ConstIterator i = m_impl;
147 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator;
160 ConstIterator i = m_impl
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_concepts.hpp 248 BOOST_concept(InteroperableIterator,(Iterator)(ConstIterator))
259 ConstIterator
265 BOOST_CONCEPT_ASSERT((SinglePassIterator<ConstIterator>));
277 ConstIterator ci;
  /external/chromium_org/content/browser/device_orientation/
provider_impl.cc 270 typedef std::set<Observer*>::const_iterator ConstIterator;
271 for (ConstIterator i = observers_.begin(); i != observers_.end(); ++i) {
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumberutil.cc     [all...]
  /external/chromium/testing/gtest/test/
gtest-printers_test.cc 956 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]
  /external/gtest/test/
gtest-printers_test.cc 962 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-printers_test.cc 962 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-printers_test.cc 977 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-printers_test.cc 982 TEST(PrintStlContainerTest, ConstIterator) {
    [all...]

Completed in 6548 milliseconds