Searched defs:const_iterator (Results 1 - 25 of 225) sorted by relevance

123456789

/external/libcxx/test/std/containers/sequences/deque/deque.cons/
H A Dsize_value.pass.cpp26 typedef typename C::const_iterator const_iterator; typedef
30 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i)
H A Dsize_value_alloc.pass.cpp25 typedef typename C::const_iterator const_iterator; typedef
30 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i)
H A Diter_iter.pass.cpp29 typedef typename C::const_iterator const_iterator; typedef
33 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i, ++f)
43 typedef typename C::const_iterator const_iterator; typedef
47 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i, ++f)
H A Diter_iter_alloc.pass.cpp29 typedef typename C::const_iterator const_iterator; typedef
34 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i, ++f)
H A Dsize.pass.cpp29 typedef typename C::const_iterator const_iterator; typedef
36 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i)
50 typedef typename C::const_iterator const_iterator; typedef
58 for (const_iterator i = d.begin(), e = d.end(); i != e; ++i)
/external/clang/test/SemaCXX/
H A DPR11358.cpp24 class const_iterator { void operator++(); }; class in class:test2::hash_map
25 const_iterator begin() const;
26 const_iterator end() const;
31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
/external/llvm/include/llvm/IR/
H A DValueSymbolTable.h52 /// @brief A const_iterator over a ValueMap.
53 typedef ValueMap::const_iterator const_iterator; typedef in class:llvm::ValueSymbolTable
91 /// @brief Get a const_iterator that from the beginning of the symbol table.
92 inline const_iterator begin() const { return vmap.begin(); }
97 /// @brief Get a const_iterator to the end of the symbol table.
98 inline const_iterator end() const { return vmap.end(); }
H A DTypeFinder.h48 typedef std::vector<StructType*>::const_iterator const_iterator; typedef in class:llvm::TypeFinder
53 const_iterator begin() const { return StructTypes.begin(); }
54 const_iterator end() const { return StructTypes.end(); }
/external/llvm/include/llvm/Support/
H A DPath.h49 class const_iterator class in namespace:llvm::sys::path
56 friend const_iterator begin(StringRef path);
57 friend const_iterator end(StringRef path);
62 const_iterator &operator++(); // preincrement
63 bool operator==(const const_iterator &RHS) const;
64 bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
67 ptrdiff_t operator-(const const_iterator &RHS) const;
74 /// of \a const_iterator
98 const_iterator begin(StringRef path);
103 const_iterator en
[all...]
/external/llvm/lib/Object/
H A DRecordStreamer.h28 typedef StringMap<State>::const_iterator const_iterator; typedef in class:llvm::RecordStreamer
29 const_iterator begin();
30 const_iterator end();
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCAsmLayout.h30 typedef llvm::SmallVectorImpl<MCSectionData*>::const_iterator const_iterator; typedef in class:llvm::MCAsmLayout
/external/swiftshader/third_party/LLVM/include/llvm/
H A DValueSymbolTable.h51 /// @brief A const_iterator over a ValueMap.
52 typedef ValueMap::const_iterator const_iterator; typedef in class:llvm::ValueSymbolTable
92 /// @brief Get a const_iterator that from the beginning of the symbol table.
93 inline const_iterator begin() const { return vmap.begin(); }
98 /// @brief Get a const_iterator to the end of the symbol table.
99 inline const_iterator end() const { return vmap.end(); }
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DPath.h49 class const_iterator class in namespace:llvm::sys::path
56 friend const_iterator begin(StringRef path);
57 friend const_iterator end(StringRef path);
62 const_iterator &operator++(); // preincrement
63 bool operator==(const const_iterator &RHS) const;
64 bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
67 ptrdiff_t operator-(const const_iterator &RHS) const;
74 /// of \a const_iterator
98 const_iterator begin(StringRef path);
103 const_iterator en
[all...]
/external/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h29 typedef DiagList::const_iterator const_iterator; typedef in class:clang::TextDiagnosticBuffer
33 const_iterator err_begin() const { return Errors.begin(); }
34 const_iterator err_end() const { return Errors.end(); }
36 const_iterator warn_begin() const { return Warnings.begin(); }
37 const_iterator warn_end() const { return Warnings.end(); }
39 const_iterator remark_begin() const { return Remarks.begin(); }
40 const_iterator remark_end() const { return Remarks.end(); }
42 const_iterator note_begin() const { return Notes.begin(); }
43 const_iterator note_en
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_map.h86 typedef StaticMapIterator<Key, Value, Compare> const_iterator; typedef in class:google_breakpad::StaticMap
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h29 typedef typename VectorType::const_iterator const_iterator; typedef in class:llvm::UniqueVector
61 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
81 const_iterator begin() const { return Vector.begin(); }
87 const_iterator end() const { return Vector.end(); }
H A DSetVector.h47 typedef typename vector_type::const_iterator iterator;
48 typedef typename vector_type::const_iterator const_iterator; typedef in class:llvm::SetVector
79 /// \brief Get a const_iterator to the beginning of the SetVector.
80 const_iterator begin() const {
89 /// \brief Get a const_iterator to the end of the SetVector.
90 const_iterator end() const {
165 // std:vector.erase(const_iterator) as defined in C++11. This is for
237 for (typename STy::const_iterator SI = S.begin(), SE = S.end(); SI != SE;
250 for (typename STy::const_iterator S
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLivePhysRegs.h135 typedef SparseSet<unsigned>::const_iterator const_iterator; typedef in class:llvm::LivePhysRegs
136 const_iterator begin() const { return LiveRegs.begin(); }
137 const_iterator end() const { return LiveRegs.end(); }
H A DLiveStackAnalysis.h50 typedef SS2IntervalMap::const_iterator const_iterator; typedef in class:llvm::LiveStacks
51 const_iterator begin() const { return S2IMap.begin(); }
52 const_iterator end() const { return S2IMap.end(); }
69 SS2IntervalMap::const_iterator I = S2IMap.find(Slot);
78 std::map<int, const TargetRegisterClass *>::const_iterator I =
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DPathV2.h49 class const_iterator { class in namespace:llvm::sys::path
55 friend const_iterator begin(StringRef path);
56 friend const_iterator end(StringRef path);
67 const_iterator &operator++(); // preincrement
68 const_iterator &operator++(int); // postincrement
69 const_iterator &operator--(); // predecrement
70 const_iterator &operator--(int); // postdecrement
71 bool operator==(const const_iterator &RHS) const;
72 bool operator!=(const const_iterator &RHS) const;
75 ptrdiff_t operator-(const const_iterator
[all...]
/external/bison/examples/calc++/
H A Dstack.hh53 typedef typename S::const_reverse_iterator const_iterator; typedef in class:yy::stack
99 inline const_iterator begin () const { return seq_.rbegin (); }
100 inline const_iterator end () const { return seq_.rend (); }
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h80 typedef std::vector<const CFGBlock *>::const_reverse_iterator const_iterator; typedef in class:clang::PostOrderCFGView
87 const_iterator begin() const { return Blocks.rbegin(); }
88 const_iterator end() const { return Blocks.rend(); }
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp35 typedef const _E* const_iterator; typedef in class:std::initializer_list
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp25 typedef const _E* const_iterator; typedef in class:std::initializer_list
/external/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h28 typedef typename VectorTy::const_iterator const_iterator; typedef in class:llvm::BlotMapVector
31 const_iterator begin() const { return Vector.begin(); }
32 const_iterator end() const { return Vector.end(); }
37 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end(); I != E;
42 for (typename VectorTy::const_iterator I = Vector.begin(), E = Vector.end();
80 const_iterator find(const KeyT &Key) const {
81 typename MapTy::const_iterator It = Map.find(Key);

Completed in 789 milliseconds

123456789