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

12

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositionUnderlineRangeFilter.h20 class ConstIterator { class in class:WebCore::CompositionUnderlineRangeFilter
22 ConstIterator(): m_filter(nullptr), m_index(0) { } function in class:WebCore::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:WebCore::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 DSVGPathSegListSource.cpp33 SVGPathSegListSource::SVGPathSegListSource(SVGPathSegList::ConstIterator itBegin, SVGPathSegList::ConstIterator itEnd)
H A DSVGTransformList.cpp69 ConstIterator it = begin();
70 ConstIterator itEnd = end();
223 ConstIterator it = begin();
224 ConstIterator itEnd = end();
H A DSVGLengthList.cpp65 ConstIterator it = begin();
66 ConstIterator itEnd = end();
H A DSVGNumberList.cpp64 ConstIterator it = begin();
65 ConstIterator itEnd = end();
H A DSVGPointList.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); }
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/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyHelper.h74 class ConstIterator { class in class:WebCore::SVGListPropertyHelper
79 ConstIterator(WrappedType it) function in class:WebCore::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/chromium_org/third_party/WebKit/Source/core/animation/
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(); }
H A DglsUniformBlockCase.cpp446 for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct().end(); memberIter++)
570 for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct().end(); memberIter++)
592 for (UniformBlock::ConstIterator uniformIter = block.begin(); uniformIter != block.end(); uniformIter++)
754 for (StructType::ConstIterator iter = type.getStruct().begin(); iter != type.getStruct().end(); ++iter)
768 for (UniformBlock::ConstIterator iter = uniformBlock.begin(); iter != uniformBlock.end(); ++iter)
833 for (StructType::ConstIterator memberIter = structType.begin(); memberIter != structType.end(); memberIter++)
922 for (UniformBlock::ConstIterator uniformIter = block.begin(); uniformIter != block.end(); uniformIter++)
1042 for (StructType::ConstIterator memberIter = type.getStruct().begin(); memberIter != type.getStruct().end(); memberIter++)
1079 for (UniformBlock::ConstIterator uniformIter = block.begin(); uniformIter != block.end(); uniformIter++)
/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/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.cpp57 SVGLengthList::ConstIterator it = dashes->begin();
58 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();
H A DSVGRenderSupport.cpp363 SVGLengthList::ConstIterator it = dashes->begin();
364 SVGLengthList::ConstIterator itEnd = dashes->end();
H A DSVGRenderTreeAsText.cpp295 SVGLengthList::ConstIterator it = dashes->begin();
296 SVGLengthList::ConstIterator itEnd = dashes->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 438 milliseconds

12