Searched defs:ConstIterator (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/cc/quads/
H A Dlist_container.h84 class CC_EXPORT ConstIterator : public PositionInListContainerCharAllocator { class in class:cc::ListContainer
88 ConstIterator(ListContainerCharAllocator* container,
91 ConstIterator(const Iterator& other); // NOLINT
92 ~ConstIterator();
95 ConstIterator operator++(int unused_post_increment);
96 ConstIterator operator++();
139 ConstIterator begin() const;
140 ConstIterator end() const;
H A Dlist_container.cc315 typename ListContainer<BaseElementType>::ConstIterator
318 return ConstIterator(data_.get(), 0, NULL);
320 return ConstIterator(data_.get(), 0, data_->InnerListById(0)->Begin());
324 typename ListContainer<BaseElementType>::ConstIterator
327 return ConstIterator(data_.get(), 0, NULL);
330 return ConstIterator(data_.get(), last_id, NULL);
366 ConstIterator iter = begin();
387 return &*ConstIterator(data_.get(),
480 // ListContainer::ConstIterator
483 ListContainer<BaseElementType>::ConstIterator function in class:cc::ListContainer::ConstIterator
489 ListContainer<BaseElementType>::ConstIterator::ConstIterator( function in class:cc::ListContainer::ConstIterator
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderlineRangeFilter.h20 class ConstIterator { class in class:blink::CompositionUnderlineRangeFilter
22 ConstIterator(): m_filter(nullptr), m_index(0) { } function in class:blink::CompositionUnderlineRangeFilter::ConstIterator
28 ConstIterator& operator++()
39 bool operator==(const ConstIterator& other)
43 bool operator!=(const ConstIterator& other) { return !operator==(other); }
48 ConstIterator(CompositionUnderlineRangeFilter* filter, size_t index) function in class:blink::CompositionUnderlineRangeFilter::ConstIterator
57 ConstIterator begin() { return ConstIterator(this, seekValidIndex(0)); }
58 const ConstIterator& end() { return m_theEnd; }
61 friend class ConstIterator;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyHelper.h74 class ConstIterator { class in class:blink::SVGListPropertyHelper
79 ConstIterator(WrappedType it) function in class:blink::SVGListPropertyHelper::ConstIterator
84 ConstIterator& operator++() { ++m_it; return *this; }
86 bool operator==(const ConstIterator& o) const { return m_it == o.m_it; }
87 bool operator!=(const ConstIterator& o) const { return m_it != o.m_it; }
96 ConstIterator begin() const
98 return ConstIterator(m_values.begin());
101 ConstIterator lastAppended() const
103 return ConstIterator(m_values.begin() + m_values.size() - 1);
106 ConstIterator en
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h89 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstKeysIterator
92 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {}
101 ConstIterator m_impl;
106 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableConstValuesIterator
109 HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {}
118 ConstIterator m_impl;
124 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableKeysIterator
137 ConstIterator i = m_impl;
147 typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; typedef in struct:WTF::HashTableValuesIterator
160 ConstIterator
[all...]
/external/llvm/include/llvm/ADT/
H A DDenseSet.h83 class ConstIterator { class in class:llvm::DenseSet
93 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} function in class:llvm::DenseSet::ConstIterator
98 ConstIterator& operator++() { ++I; return *this; }
99 bool operator==(const ConstIterator& X) const { return I == X.I; }
100 bool operator!=(const ConstIterator& X) const { return I != X.I; }
104 typedef ConstIterator const_iterator;
109 const_iterator begin() const { return ConstIterator(TheMap.begin()); }
110 const_iterator end() const { return ConstIterator(TheMap.end()); }
114 void erase(ConstIterator CI) { return TheMap.erase(CI.I); }
H A DDenseMap.h977 KeyInfoT, true> ConstIterator; typedef in class:llvm::DenseMapIterator
1010 bool operator==(const ConstIterator &RHS) const {
1013 bool operator!=(const ConstIterator &RHS) const {
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp56 typedef PoolArrayConstIterator<T, Alignment> ConstIterator; typedef in class:de::PoolArray
83 ConstIterator begin (void) const { return ConstIterator(this, 0); }
84 ConstIterator end (void) const { return ConstIterator(this, (deIntptr)m_numElements); }
/external/deqp/modules/glshared/
H A DglsUniformBlockCase.hpp145 typedef std::vector<StructMember>::const_iterator ConstIterator; typedef in class:deqp::gls::ub::StructType
153 inline ConstIterator begin (void) const { return m_members.begin(); }
155 inline ConstIterator end (void) const { return m_members.end(); }
183 typedef std::vector<Uniform>::const_iterator ConstIterator; typedef in class:deqp::gls::ub::UniformBlock
199 inline ConstIterator begin (void) const { return m_uniforms.begin(); }
201 inline ConstIterator end (void) const { return m_uniforms.end(); }
/external/deqp/framework/opengl/
H A DgluVarType.hpp144 typedef std::vector<StructMember>::const_iterator ConstIterator; typedef in class:glu::StructType
158 inline ConstIterator begin (void) const { return m_members.begin(); }
160 inline ConstIterator end (void) const { return m_members.end(); }
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumberutil.cc1602 typedef vector<IntRegionsPair>::const_iterator ConstIterator; typedef
1603 pair<ConstIterator, ConstIterator> range = equal_range(

Completed in 191 milliseconds