Searched refs:ConstIterator (Results 1 - 25 of 42) sorted by relevance

12

/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...]
H A DCompositionUnderlineRangeFilterTest.cpp47 for (CompositionUnderlineRangeFilter::ConstIterator it = filter.begin(); it != filter.end(); ++it) {
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegListSource.h34 SVGPathSegListSource(SVGPathSegList::ConstIterator, SVGPathSegList::ConstIterator);
53 SVGPathSegList::ConstIterator m_itCurrent;
54 SVGPathSegList::ConstIterator m_itEnd;
H A DSVGNumberList.cpp50 ConstIterator it = begin();
51 ConstIterator itEnd = end();
H A DSVGPathSegListSource.cpp33 SVGPathSegListSource::SVGPathSegListSource(SVGPathSegList::ConstIterator itBegin, SVGPathSegList::ConstIterator itEnd)
H A DSVGPointList.cpp51 ConstIterator it = begin();
52 ConstIterator itEnd = end();
H A DSVGTransformList.cpp69 ConstIterator it = begin();
70 ConstIterator itEnd = end();
216 ConstIterator it = begin();
217 ConstIterator itEnd = end();
H A DSVGLengthList.cpp65 ConstIterator it = begin();
66 ConstIterator itEnd = end();
/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); }
/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/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/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/core/animation/animatable/
H A DAnimatableStrokeDasharrayList.cpp42 SVGLengthList::ConstIterator it = lengths->begin();
43 SVGLengthList::ConstIterator itEnd = lengths->end();
/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/delibs/decpp/
H A DdePoolString.cpp65 for (PoolString::ConstIterator i = string.begin(); i != string.end(); i++)
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); }
H A DdePoolArray.cpp278 // ConstIterator
282 for (PoolArray<int>::ConstIterator iter = cRef.begin(); iter != cRef.end(); iter++, ndx++)
289 for (PoolArray<int>::ConstIterator iter = arr.begin(); iter != arr.end(); iter++, ndx++)
/external/chromium_org/cc/test/
H A Dlayer_test_common.cc44 for (QuadList::ConstIterator iter = quads.begin(); iter != quads.end();
75 for (QuadList::ConstIterator iter = quads.begin(); iter != quads.end();
83 for (QuadList::ConstIterator iter = quads.begin(); iter != quads.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(); }
H A DgluVarType.cpp100 for (StructType::ConstIterator iter = m_data.structPtr->begin(); iter != m_data.structPtr->end(); iter++)
412 for (StructType::ConstIterator memberIter = decl.structPtr->begin(); memberIter != decl.structPtr->end(); memberIter++)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSVGCSSComputedStyleDeclaration.cpp56 SVGLengthList::ConstIterator it = dashes->begin();
57 SVGLengthList::ConstIterator itEnd = dashes->end();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGPathData.cpp86 SVGPointList::ConstIterator it = points->begin();
87 SVGPointList::ConstIterator itEnd = points->end();
/external/chromium_org/cc/surfaces/
H A Dsurface_aggregator_test_helpers.cc138 for (QuadList::ConstIterator iter = pass->quad_list.begin();
/external/chromium_org/cc/layers/
H A Dnine_patch_layer_impl_unittest.cc74 for (QuadList::ConstIterator iter = quads.begin(); iter != quads.end();
95 for (QuadList::ConstIterator iter = quads.begin(); iter != quads.end();

Completed in 2887 milliseconds

12