| /external/parameter-framework/asio-1.10.6/include/asio/detail/ | 
| hash_map.hpp | 48   // The type of a non-const iterator over the hash map. 49   typedef typename std::list<value_type>::iterator iterator;  typedef in class:asio::detail::hash_map
 51   // The type of a const iterator over the hash map.
 68   // Get an iterator for the beginning of the map.
 69   iterator begin()
 74   // Get an iterator for the beginning of the map.
 80   // Get an iterator for the end of the map.
 81   iterator end()
 86   // Get an iterator for the end of the map
 [all...]
 | 
| /external/pdfium/third_party/agg23/ | 
| agg_scanline_u.h | 40     typedef span* iterator;  typedef in class:agg::scanline_u 132     iterator       begin()
 
 | 
| /external/proguard/src/proguard/ | 
| OutputWriter.java | 200         Iterator iterator = classPool.classNames();  local 201         while (iterator.hasNext())
 203             String className     = (String)iterator.next();
 
 | 
| /external/protobuf/src/google/protobuf/ | 
| repeated_field_reflection.h | 76   typedef void Iterator; 97   // Create an iterator that points at the begining of the repeated field.
 98   virtual Iterator* BeginIterator(const Field* data) const = 0;
 99   // Create an iterator that points at the end of the repeated field.
 100   virtual Iterator* EndIterator(const Field* data) const = 0;
 101   // Make a copy of an iterator and return the new copy.
 102   virtual Iterator* CopyIterator(const Field* data,
 103                                  const Iterator* iterator) const = 0;
 104   // Move an iterator to point to the next element
 264  typedef RepeatedFieldRefIterator<T> iterator;  typedef in struct:google::protobuf::internal::RefTypeTraits
 279  typedef RepeatedFieldRefIterator<T> iterator;  typedef in struct:google::protobuf::internal::RefTypeTraits
 295  typedef RepeatedFieldRefIterator<T> iterator;  typedef in struct:google::protobuf::internal::RefTypeTraits
 323  typedef RepeatedFieldRefIterator<T> iterator;  typedef in struct:google::protobuf::internal::RefTypeTraits
 [all...]
 | 
| /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ | 
| ShadowHandler.java | 13 import java.util.Iterator; 186         for (Iterator<Message> iterator = messages.iterator(); iterator.hasNext(); ) {
 187             Message message = iterator.next();
 189                 iterator.remove();
 
 | 
| /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ | 
| BasicMarker.java | 28 import java.util.Iterator; 88     public synchronized Iterator<Marker> iterator() {  method in class:BasicMarker
 90             return referenceList.iterator();
 93             return emptyList.iterator();
 180         Iterator<Marker> it = this.iterator();
 
 | 
| /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/ | 
| ProjectConverter.java | 30 import java.util.Iterator; 86         Iterator<File> itFile = lstFiles.iterator();
 118             Iterator<ConversionException> iterator = exception.iterator();  local
 119             while (iterator.hasNext()) {
 120                 ConversionException exc = (ConversionException) iterator.next();
 
 | 
| /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ | 
| OatFile.java | 53 import java.util.Iterator; 191             @Nonnull @Override public Iterator<OatDexFile> iterator() {  method in class:OatFile
 207             @Nonnull @Override public Iterator<String> iterator() {
 218         DexEntryIterator iterator = new DexEntryIterator();
 219         while (iterator.hasNext()) {
 220             DexEntry entry = iterator.next();
 570     private class DexEntryIterator implements Iterator<DexEntry> {
 
 | 
| /external/smali/util/src/main/java/org/jf/util/ | 
| ArraySortedSet.java | 71     public Iterator<T> iterator() {  method in class:ArraySortedSet 187             return Iterators.elementsEqual(iterator(), other.iterator());
 
 | 
| /external/swiftshader/third_party/LLVM/include/llvm/ADT/ | 
| DenseSet.h | 62   class Iterator { 63     typename MapTy::iterator I;
 66     typedef typename MapTy::iterator::difference_type difference_type;
 72     Iterator(const typename MapTy::iterator &i) : I(i) {}
 77     Iterator& operator++() { ++I; return *this; }
 78     bool operator==(const Iterator& X) const { return I == X.I; }
 79     bool operator!=(const Iterator& X) const { return I != X.I; }
 102   typedef Iterator      iterator;  typedef in class:llvm::DenseSet
 [all...]
 | 
| /external/swiftshader/third_party/LLVM/include/llvm/Analysis/ | 
| DominanceFrontier.h | 57   typedef DomSetMapType::iterator iterator;  typedef in class:llvm::DominanceFrontierBase 59   iterator       begin()       { return Frontiers.begin(); }
 61   iterator       end()         { return Frontiers.end(); }
 63   iterator       find(BasicBlock *B)       { return Frontiers.find(B); }
 66   iterator addBasicBlock(BasicBlock *BB, const DomSetType &frontier) {
 74     for (iterator I = begin(), E = end(); I != E; ++I)
 79   void addToFrontier(iterator I, BasicBlock *Node) {
 84   void removeFromFrontier(iterator I, BasicBlock *Node) {
 123     for (DomSetMapType::iterator I = tmpFrontiers.begin()
 [all...]
 | 
| IVUsers.h | 161   typedef ilist<IVStrideUse>::iterator iterator;  typedef in class:llvm::IVUsers 163   iterator begin() { return IVUses.begin(); }
 164   iterator end()   { return IVUses.end(); }
 
 | 
| /external/swiftshader/third_party/LLVM/include/llvm/ | 
| BasicBlock.h | 96   typedef InstListType::iterator                              iterator;  typedef in class:llvm::BasicBlock 148   /// getFirstInsertionPt - Returns an iterator to the first instruction in this
 151   iterator getFirstInsertionPt();
 193   /// Instruction iterator methods
 195   inline iterator                begin()       { return InstList.begin(); }
 197   inline iterator                end  ()       { return InstList.end();   }
 246   /// instruction.  Note that all instructions BEFORE the specified iterator
 250   /// is returned.  This function invalidates the specified iterator.
 260   BasicBlock *splitBasicBlock(iterator I, const Twine &BBName = "")
 [all...]
 | 
| Metadata.h | 54   typedef StringRef::iterator iterator;  typedef in class:llvm::MDString 58   iterator begin() const { return Str.begin(); }
 62   iterator end() const { return Str.end(); }
 
 | 
| /external/swiftshader/third_party/LLVM/lib/CodeGen/ | 
| LiveRangeEdit.h | 109   /// Iterator for accessing the new registers added by this edit. 110   typedef SmallVectorImpl<LiveInterval*>::const_iterator iterator;  typedef in class:llvm::LiveRangeEdit
 111   iterator begin() const { return newRegs_.begin()+firstNew_; }
 112   iterator end() const { return newRegs_.end(); }
 168                             MachineBasicBlock::iterator MI,
 
 | 
| /external/swiftshader/third_party/LLVM/lib/DebugInfo/ | 
| DWARFDebugLine.cpp | 451     typedef std::vector<Row>::const_iterator iterator;  typedef 452     iterator begin_pos = Rows.begin();
 453     iterator end_pos = Rows.end();
 454     iterator pos = std::lower_bound(begin_pos, end_pos, row,
 
 | 
| /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ | 
| StringRef.h | 49     typedef const char *iterator;  typedef in class:llvm::StringRef 103     iterator begin() const { return Data; }
 105     iterator end() const { return Data + Length; }
 
 | 
| ilist_iterator.h | 1 //===- llvm/ADT/ilist_iterator.h - Intrusive List Iterator -------*- C++ -*-==// 16 #include <iterator>
 54 /// Iterator for intrusive lists  based on ilist_node.
 88   // This is templated so that we can allow constructing a const iterator from
 89   // a nonconst iterator...
 96   // This is templated so that we can allow assigning to a const iterator from
 97   // a nonconst iterator...
 105   /// Convert from an iterator to its reverse.
 174   typedef ilist_iterator<OptionsT, false, IsConst> iterator;  typedef in struct:llvm::simplify_type
 175   typedef typename iterator::pointer SimpleType
 [all...]
 | 
| /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ | 
| BasicBlock.h | 83   typedef InstListType::iterator iterator;  typedef in class:llvm::BasicBlock 156   /// \brief Returns an iterator to the first instruction in this block that is
 160   iterator getFirstInsertionPt();
 170   // \returns an iterator pointing to the element after the erased one.
 171   SymbolTableList<BasicBlock>::iterator eraseFromParent();
 226   /// Instruction iterator methods
 228   inline iterator                begin()       { return InstList.begin(); }
 230   inline iterator                end  ()       { return InstList.end();   }
 288   /// Note that all instructions BEFORE the specified iterator stay as part o
 [all...]
 | 
| /external/tensorflow/tensorflow/core/graph/ | 
| edgeset.h | 42   typedef const_iterator iterator;  typedef in class:tensorflow::EdgeSet 47   std::pair<iterator, bool> insert(value_type value);
 221       << "been modified since the iterator was constructed";
 
 | 
| /external/tensorflow/tensorflow/core/lib/gtl/ | 
| array_slice.h | 118   typedef typename Impl::iterator iterator;  typedef in class:tensorflow::gtl::ArraySlice 227   typedef typename Impl::iterator iterator;  typedef in class:tensorflow::gtl::MutableArraySlice
 282   iterator begin() const { return impl_.begin(); }
 283   iterator end() const { return impl_.end(); }
 
 | 
| compactptrset.h | 65   class iterator {  class in class:tensorflow::gtl::CompactPointerSet 73     explicit iterator(uintptr_t rep)  function in class:tensorflow::gtl::CompactPointerSet::iterator
 75     explicit iterator(typename BigRep::iterator iter)  function in class:tensorflow::gtl::CompactPointerSet::iterator
 78     iterator& operator++() {
 89     bool operator==(const iterator& other) const {
 96     bool operator!=(const iterator& other) const { return !(*this == other); }
 111     typename BigRep::iterator iter_;
 113   using const_iterator = iterator;
 125   std::pair<iterator, bool> insert(T elem)
 [all...]
 | 
| /external/v8/src/compiler/ | 
| state-values-utils.h | 92   class V8_EXPORT_PRIVATE iterator {  class in class:v8::internal::compiler::StateValuesAccess 95     bool operator!=(iterator& other);
 96     iterator& operator++();
 102     iterator() : current_depth_(-1) {}  function in class:v8::internal::compiler::StateValuesAccess::iterator
 103     explicit iterator(Node* node);
 123   iterator begin() { return iterator(node_); }
 124   iterator end() { return iterator(); }
 
 | 
| /external/v8/src/ | 
| list.h | 75   typedef T* iterator;  typedef in class:v8::internal::List 76   inline iterator begin() const { return &data_[0]; }
 77   inline iterator end() const { return &data_[length_]; }
 
 | 
| /external/webrtc/webrtc/modules/rtp_rtcp/source/ | 
| rtp_payload_registry.cc | 33     RtpUtility::PayloadTypeMap::iterator it = payload_type_map_.begin(); 73   RtpUtility::PayloadTypeMap::iterator it =
 127   RtpUtility::PayloadTypeMap::iterator it =
 144   RtpUtility::PayloadTypeMap::iterator iterator = payload_type_map_.begin();  local
 145   for (; iterator != payload_type_map_.end(); ++iterator) {
 146     RtpUtility::Payload* payload = iterator->second;
 159           payload_type_map_.erase(iterator);
 164         payload_type_map_.erase(iterator);
 [all...]
 |