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

  /external/chromium_org/cc/quads/
list_container.h 84 class CC_EXPORT ConstIterator : public PositionInListContainerCharAllocator {
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;
list_container.cc 315 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::ConstIterator
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositionUnderlineRangeFilter.h 20 class ConstIterator {
22 ConstIterator(): m_filter(nullptr), m_index(0) { }
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)
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/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...]
  /external/llvm/include/llvm/ADT/
DenseSet.h 83 class ConstIterator {
93 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
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); }
DenseMap.h 977 KeyInfoT, true> ConstIterator;
1010 bool operator==(const ConstIterator &RHS) const {
1013 bool operator!=(const ConstIterator &RHS) const {
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyHelper.h 74 class ConstIterator {
79 ConstIterator(WrappedType it)
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 end() cons
    [all...]
  /external/deqp/framework/delibs/decpp/
dePoolArray.hpp 56 typedef PoolArrayConstIterator<T, Alignment> ConstIterator;
83 ConstIterator begin (void) const { return ConstIterator(this, 0); }
84 ConstIterator end (void) const { return ConstIterator(this, (deIntptr)m_numElements); }
  /external/deqp/framework/opengl/
gluVarType.hpp 144 typedef std::vector<StructMember>::const_iterator ConstIterator;
158 inline ConstIterator begin (void) const { return m_members.begin(); }
160 inline ConstIterator end (void) const { return m_members.end(); }
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 145 typedef std::vector<StructMember>::const_iterator ConstIterator;
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;
199 inline ConstIterator begin (void) const { return m_uniforms.begin(); }
201 inline ConstIterator end (void) const { return m_uniforms.end(); }
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumberutil.cc     [all...]

Completed in 306 milliseconds