Searched defs:iterator (Results 201 - 225 of 621) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DHRTFElevation.cpp72 AudioBusMap::iterator iterator = audioBusMap.find(subjectName); local
73 if (iterator == audioBusMap.end()) {
82 bus = iterator->value;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DComplexTextController.cpp257 static bool advanceByCombiningCharacterSequence(const UChar*& iterator, const UChar* end, UChar32& baseCharacter, unsigned& markCount) argument
259 ASSERT(iterator < end);
263 baseCharacter = *iterator++;
268 if (iterator == end)
270 UChar trail = *iterator++;
277 while (iterator < end) {
280 U16_NEXT(iterator, markLength, end - iterator, nextCharacter);
284 iterator += markLength;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashSet.h50 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> iterator; typedef in class:WTF::HashSet
60 iterator begin() const;
61 iterator end() const;
63 iterator find(const ValueType&) const;
71 template<typename HashTranslator, typename T> iterator find(const T&) const;
87 void remove(iterator);
137 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::begin() const
143 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::end() const
149 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::find(const ValueType& value) const
162 typename HashSet<Value, HashFunctions, Traits>::iterator
227 typedef typename HashTableType::const_iterator iterator; typedef
242 typedef typename C::const_iterator iterator; typedef
[all...]
H A DRefPtrHashMap.h61 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator; typedef in class:WTF::HashMap
72 iterator begin();
73 iterator end();
77 iterator find(const KeyType&);
78 iterator find(RawKeyType);
88 // return value is a pair of the iterator to the key location,
94 // return value is a pair of the iterator to the key location,
101 void remove(iterator);
139 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin()
145 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMa
[all...]
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h113 void printTextRange( BreakIterator& iterator, argument
116 CharacterIterator *strIter = iterator.getText().clone();
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.h39 typedef const char* iterator; typedef in class:i18n::phonenumbers::StringPiece
41 typedef std::reverse_iterator<iterator> reverse_iterator;
124 iterator begin() const { return ptr_; }
125 iterator end() const { return ptr_ + length_; }
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlist.h227 class iterator { class
244 class exec_list_iterator : public iterator {
278 for (iter_type iter = (container) . iterator(); iter.has_next(); iter.next())
442 exec_list_iterator iterator() function in struct:exec_list
447 exec_list_iterator iterator() const function in struct:exec_list
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DFieldSet.java191 * Get an iterator to the field map. This iterator should not be leaked out
195 public Iterator<Map.Entry<FieldDescriptorType, Object>> iterator() { method in class:FieldSet
198 fields.entrySet().iterator());
200 return fields.entrySet().iterator();
H A DLiteralByteString.java293 public ByteIterator iterator() { method in class:LiteralByteString
H A DSmallSortedMap.java163 // because none of the list's accessors are exposed. The iterator() of
301 final Iterator<Map.Entry<K, V>> iterator =
302 getOverflowEntriesMutable().entrySet().iterator();
303 entryList.add(new Entry(iterator.next()));
304 iterator.remove();
473 public Iterator<Map.Entry<K, V>> iterator() { method in class:SmallSortedMap.EntrySet
571 * It is important to create the overflow iterator only after the array
578 lazyOverflowIterator = overflowEntries.entrySet().iterator();
608 public Iterator<Object> iterator() {
/external/chromium_org/third_party/re2/re2/
H A Dstringpiece.h127 typedef const char* iterator; typedef in class:re2::StringPiece
129 typedef std::reverse_iterator<iterator> reverse_iterator;
130 iterator begin() const { return ptr_; }
131 iterator end() const { return ptr_ + length_; }
/external/chromium_org/third_party/re2/util/
H A Dsparse_array.h23 // The array iterator visits entries in the order they were first
25 // using an iterator: the iterator will visit indices added to the array
106 // IndexValue pairs: exposed in SparseArray::iterator.
110 typedef typename vector<IndexValue>::iterator iterator; typedef in class:re2::SparseArray
121 iterator begin() {
124 iterator end() {
161 inline iterator set(int i, Value v);
163 pair<iterator, boo
[all...]
/external/chromium_org/v8/src/
H A Dinterface.h166 // for (auto it = interface->iterator(); !it.done(); it.Advance()) {
191 Iterator iterator() const { return Iterator(this->exports_); } function in class:v8::internal::Interface
/external/clang/include/clang/AST/
H A DCXXInheritance.h170 typedef std::list<CXXBasePath>::iterator paths_iterator;
280 typedef MapType::iterator iterator; typedef in class:clang::OverridingMethods
282 iterator begin() { return Overrides.begin(); }
284 iterator end() { return Overrides.end(); }
290 typedef SmallVectorImpl<UniqueVirtualMethod>::iterator
H A DUnresolvedSet.h22 #include <iterator>
26 /// The iterator over UnresolvedSets. Serves as both the const and
27 /// non-const iterator.
31 typedef DeclsTy::iterator IteratorTy;
38 explicit UnresolvedSetIterator(DeclsTy::iterator ir) : ir(ir) {}
40 ir(const_cast<DeclsTy::iterator>(ir)) {}
103 // We don't currently support assignment through this iterator, so we might
105 typedef UnresolvedSetIterator iterator; typedef in class:clang::UnresolvedSetImpl
108 iterator begin() { return iterator(decl
[all...]
/external/clang/include/clang/Analysis/
H A DCallGraph.h69 typedef FunctionMapTy::iterator iterator; typedef in class:clang::CallGraph
71 iterator begin() { return FunctionMap.begin(); }
72 iterator end() { return FunctionMap.end(); }
86 typedef llvm::SetVector<CallGraphNode *>::iterator nodes_iterator;
147 typedef SmallVectorImpl<CallRecord>::iterator iterator; typedef in class:clang::CallGraphNode
151 inline iterator begin() { return CalledFunctions.begin(); }
152 inline iterator end() { return CalledFunctions.end(); }
179 typedef mapped_iterator<NodeType::iterator, CGNDerefFu
[all...]
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h27 #include <iterator>
72 typedef T* iterator; typedef in class:clang::BumpVector
76 typedef std::reverse_iterator<iterator> reverse_iterator;
83 // forward iterator creation methods.
84 iterator begin() { return Begin; }
86 iterator end() { return End; }
89 // reverse iterator creation methods.
161 /// iterator to position after last inserted copy.
162 iterator insert(iterator
[all...]
/external/clang/include/clang/Driver/
H A DAction.h38 typedef ActionList::iterator iterator; typedef in class:clang::driver::Action
94 iterator begin() { return Inputs.begin(); }
95 iterator end() { return Inputs.end(); }
/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h21 #include <iterator>
112 public std::iterator<std::forward_iterator_tag, const char, ptrdiff_t> {
121 // begin iterator.
123 // end iterator
163 typedef RopePieceBTreeIterator iterator; typedef in class:clang::RopePieceBTree
164 iterator begin() const { return iterator(Root); }
165 iterator end() const { return iterator(); }
204 typedef RopePieceBTree::iterator iterato typedef in class:clang::RewriteRope
[all...]
H A DRewriter.h50 typedef BufferTy::const_iterator iterator; typedef in class:clang::RewriteBuffer
51 iterator begin() const { return Buffer.begin(); }
52 iterator end() const { return Buffer.end(); }
151 typedef std::map<FileID, RewriteBuffer>::iterator buffer_iterator;
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h112 /// \brief Returns an iterator at the beginning of the sequence of suppressed
116 /// \brief Returns an iterator at the end of the sequence of suppressed
263 typedef SmallVector<TemplateSpecCandidate, 16>::iterator iterator; typedef in class:clang::TemplateSpecCandidateSet
264 iterator begin() { return Candidates.begin(); }
265 iterator end() { return Candidates.end(); }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h35 typedef llvm::ImmutableList<SVal>::iterator iterator; typedef in class:clang::ento::CompoundValData
36 iterator begin() const { return L.begin(); }
37 iterator end() const { return L.end(); }
/external/clang/lib/ARCMigrate/
H A DInternals.h39 typedef ListTy::const_iterator iterator; typedef in class:clang::arcmt::CapturedDiagList
40 iterator begin() const { return List.begin(); }
41 iterator end() const { return List.end(); }
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h95 typedef const _E* iterator; typedef in class:std::initializer_list
/external/clang/test/CodeGenCXX/
H A Dmangle-exprs.cpp24 typedef const _E* iterator; typedef in class:std::initializer_list

Completed in 643 milliseconds

1234567891011>>