| /external/proguard/src/proguard/evaluation/value/ |
| TypedReferenceValue.java | 423 Iterator commonSuperClasses = superClasses1.iterator(); 478 Iterator iterator = classes.iterator(); local 480 while (iterator.hasNext()) 482 Clazz clazz = (Clazz)iterator.next();
|
| /external/protobuf/python/google/protobuf/pyext/ |
| descriptor_pool.cc | 154 typedef PyDescriptorPool::ClassesByMessageMap::iterator iterator; typedef 156 for (iterator it = self->classes_by_descriptor->begin(); 161 for (hash_map<const void*, PyObject*>::iterator it = 196 typedef PyDescriptorPool::ClassesByMessageMap::iterator iterator; typedef 197 std::pair<iterator, bool> ret = self->classes_by_descriptor->insert( 210 typedef PyDescriptorPool::ClassesByMessageMap::iterator iterator; typedef 211 iterator ret = self->classes_by_descriptor->find(message_descriptor) [all...] |
| /external/protobuf/src/google/protobuf/ |
| reflection.h | 67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; 81 typedef IteratorType iterator; typedef in class:google::protobuf::RepeatedFieldRef 83 iterator begin() const { 84 return iterator(data_, accessor_, true); 86 iterator end() const { 87 return iterator(data_, accessor_, false); 145 typedef typename Container::const_iterator Iterator; 146 for (Iterator it = container.begin(); it != container.end(); ++it) { 175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; 203 typedef IteratorType iterator; typedef in class:google::protobuf::RepeatedFieldRef 526 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits 541 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits 557 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits 585 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits [all...] |
| /external/protobuf/src/google/protobuf/stubs/ |
| stringpiece.h | 356 typedef const char* iterator; typedef in class:google::protobuf::StringPiece 358 typedef std::reverse_iterator<iterator> reverse_iterator; 359 iterator begin() const { return ptr_; } 360 iterator end() const { return ptr_ + length_; }
|
| /external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
| LoggerFactory.java | 31 import java.util.Iterator; 260 Iterator<URL> iterator = staticLoggerBinderPathSet.iterator(); local 261 while (iterator.hasNext()) { 262 URL path = (URL) iterator.next();
|
| /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
| DebugInfo.java | 50 import java.util.Iterator; 54 * Gets an iterator that yields the parameter names from the debug_info_item 58 * @return An iterator that yields the parameter names as strings 60 @Nonnull public abstract Iterator<String> getParameterNames(@Nullable DexReader reader); 81 @Nonnull @Override public Iterator<DebugItem> iterator() { method in class:DebugInfo.EmptyDebugInfo 82 return ImmutableSet.<DebugItem>of().iterator(); 85 @Nonnull @Override public Iterator<String> getParameterNames(@Nullable DexReader reader) { 86 return ImmutableSet.<String>of().iterator(); 116 public Iterator<DebugItem> iterator() method in class:DebugInfo.DebugInfoImpl [all...] |
| /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/ |
| CompactConstructor.java | 20 import java.util.Iterator; 164 NodeTuple nodeTuple = mnode.getValue().iterator().next(); 186 NodeTuple nodeTuple = mnode.getValue().iterator().next(); 220 for (Iterator<Property> iterator = properties.iterator(); iterator.hasNext();) { 221 Property property = iterator.next(); 223 iterator.remove(); 234 return properties.iterator().next().getName() [all...] |
| /external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
| EquivalenceClasses.h | 41 /// for (EquivalenceClasses<int>::iterator I = EC.begin(), E = EC.end(); 122 for (iterator I = RHS.begin(), E = RHS.end(); I != E; ++I) 136 /// iterator* - Provides a way to iterate over all values in the set. 137 typedef typename std::set<ECValue>::const_iterator iterator; typedef in class:llvm::EquivalenceClasses 138 iterator begin() const { return TheMapping.begin(); } 139 iterator end() const { return TheMapping.end(); } 146 member_iterator member_begin(iterator I) const { 154 /// findValue - Return an iterator to the specified value. If it does not 156 iterator findValue(const ElemTy &V) const { 182 for (iterator I = begin(), E = end(); I != E; ++I [all...] |
| ImmutableList.h | 82 class iterator { class in class:llvm::ImmutableList 85 iterator() : L(0) {} function in class:llvm::ImmutableList::iterator 86 iterator(ImmutableList l) : L(l.getInternalPointer()) {} function in class:llvm::ImmutableList::iterator 88 iterator& operator++() { L = L->getTail(); return *this; } 89 bool operator==(const iterator& I) const { return L == I.L; } 90 bool operator!=(const iterator& I) const { return L != I.L; } 95 /// begin - Returns an iterator referring to the head of the list, or 96 /// an iterator denoting the end of the list if the list is empty. 97 iterator begin() const { return iterator(X); [all...] |
| ImmutableMap.h | 206 class iterator { class in class:llvm::ImmutableMap 207 typename TreeTy::iterator itr; 209 iterator() {} function in class:llvm::ImmutableMap::iterator 210 iterator(TreeTy* t) : itr(t) {} function in class:llvm::ImmutableMap::iterator 221 iterator& operator++() { ++itr; return *this; } 222 iterator operator++(int) { iterator tmp(*this); ++itr; return tmp; } 223 iterator& operator--() { --itr; return *this; } 224 iterator operator--(int) { iterator tmp(*this); --itr; return tmp; 359 class iterator { class in class:llvm::ImmutableMapRef 362 iterator() {} function in class:llvm::ImmutableMapRef::iterator 363 iterator(TreeTy* t) : itr(t) {} function in class:llvm::ImmutableMapRef::iterator [all...] |
| ScopedHashTable.h | 180 typename DenseMap<K, ValTy*, KInfo>::iterator I = TopLevelMap.find(Key); 191 typedef ScopedHashTableIterator<K, V, KInfo> iterator; typedef in class:llvm::ScopedHashTable 193 iterator end() { return iterator(0); } 195 iterator begin(const K &Key) { 196 typename DenseMap<K, ValTy*, KInfo>::iterator I = 199 return iterator(I->second);
|
| SmallPtrSet.h | 21 #include <iterator> 57 /// it, so that the end iterator actually points to valid memory. 71 // iterator. 238 /// ensures that the end iterator actually points to valid memory. 273 typedef SmallPtrSetIterator<PtrType> iterator; typedef in class:llvm::SmallPtrSet 275 inline iterator begin() const { 276 return iterator(CurArray); 278 inline iterator end() const { 279 return iterator(CurArray+CurArraySize);
|
| /external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
| CallGraph.h | 84 typedef FunctionMapTy::iterator iterator; typedef in class:llvm::CallGraph 91 inline iterator begin() { return FunctionMap.begin(); } 92 inline iterator end() { return FunctionMap.end(); } 207 typedef std::vector<CallRecord>::iterator iterator; typedef in class:llvm::CallGraphNode 213 inline iterator begin() { return CalledFunctions.begin(); } 214 inline iterator end() { return CalledFunctions.end(); } 269 void removeCallEdge(iterator I) { 317 typedef mapped_iterator<NodeType::iterator, CGNDerefFun> ChildIteratorType [all...] |
| RegionInfo.h | 464 /// These iterators iterator over all subregions of this Region. 466 typedef RegionSet::iterator iterator; typedef in class:llvm::Region 469 iterator begin() { return children.begin(); } 470 iterator end() { return children.end(); } 479 /// contained in this Region. The iterator also iterates over BasicBlocks 481 /// flat iterator.
|
| /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
| GCMetadata.h | 84 typedef std::vector<GCPoint>::iterator iterator; typedef in class:llvm::GCFunctionInfo 85 typedef std::vector<GCRoot>::iterator roots_iterator; 138 iterator begin() { return SafePoints.begin(); } 139 iterator end() { return SafePoints.end(); } 150 live_iterator live_begin(const iterator &p) { return roots_begin(); } 151 live_iterator live_end (const iterator &p) { return roots_end(); } 152 size_t live_size(const iterator &p) const { return roots_size(); } 170 typedef list_type::const_iterator iterator; typedef in class:llvm::GCModuleInfo 183 iterator begin() const { return StrategyList.begin(); [all...] |
| LiveIntervalAnalysis.h | 33 #include <iterator> 78 typedef Reg2IntervalMap::iterator iterator; typedef in class:llvm::LiveIntervals 82 iterator begin() { return r2iMap_.begin(); } 83 iterator end() { return r2iMap_.end(); } 87 Reg2IntervalMap::iterator I = r2iMap_.find(reg); 143 Reg2IntervalMap::iterator I = r2iMap_.find(reg); 171 DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.find(Reg); 316 MachineBasicBlock::iterator getLastSplitPoint(const LiveInterval &li, 331 MachineBasicBlock::iterator MI [all...] |
| MachineInstrBuilder.h | 52 operator MachineBasicBlock::iterator() const { return MI; } 203 MachineBasicBlock::iterator I, 217 MachineBasicBlock::iterator I,
|
| /external/swiftshader/third_party/LLVM/include/llvm/MC/ |
| MCInst.h | 150 typedef SmallVector<MCOperand, 8>::iterator iterator; typedef in class:llvm::MCInst 151 iterator begin() { return Operands.begin(); } 152 iterator end() { return Operands.end(); } 153 iterator insert(iterator I, const MCOperand &Op) {
|
| MCRegisterInfo.h | 27 typedef const unsigned* iterator; typedef in class:llvm::MCRegisterClass 35 const iterator RegsBegin, RegsEnd; 41 iterator RB, iterator RE, const unsigned char *Bits, 46 for (iterator i = RegsBegin; i != RegsEnd; ++i) 60 iterator begin() const { return RegsBegin; } 61 iterator end() const { return RegsEnd; }
|
| /external/swiftshader/third_party/LLVM/include/llvm/ |
| PassManagers.h | 145 typedef std::vector<PMDataManager *>::const_reverse_iterator iterator; typedef in class:llvm::PMStack 146 iterator begin() const { return S.rbegin(); } 147 iterator end() const { return S.rend(); } 362 for (PMStack::iterator I = PMS.begin(), E = PMS.end();
|
| /external/swiftshader/third_party/LLVM/include/llvm/Support/ |
| Registry.h | 63 class iterator; 83 friend class iterator; 103 class iterator { class in class:llvm::Registry 107 explicit iterator(const node *N) : Cur(N) {} function in class:llvm::Registry::iterator 109 bool operator==(const iterator &That) const { return Cur == That.Cur; } 110 bool operator!=(const iterator &That) const { return Cur != That.Cur; } 111 iterator &operator++() { Cur = Cur->Next; return *this; } 116 static iterator begin() { return iterator(Head); } 117 static iterator end() { return iterator(0); [all...] |
| /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| ArrayRef.h | 35 typedef const T *iterator; typedef in class:llvm::ArrayRef 39 typedef std::reverse_iterator<iterator> reverse_iterator; 129 iterator begin() const { return Data; } 130 iterator end() const { return Data + Length; } 285 typedef T *iterator; 287 typedef std::reverse_iterator<iterator> reverse_iterator; 324 iterator begin() const { return data(); } 325 iterator end() const { return data() + this->size(); }
|
| simple_ilist.h | 36 /// takes an iterator or iterator range and returns the next one, and \a 91 typedef ilist_iterator<OptionsT, false, false> iterator; typedef in class:llvm::simple_ilist 113 iterator begin() { return ++iterator(Sentinel); } 115 iterator end() { return iterator(Sentinel); } 155 iterator insert(iterator I, reference Node) { 157 return iterator(&Node) [all...] |
| /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
| Attributes.h | 377 typedef ArrayRef<Attribute>::iterator iterator; typedef 379 iterator begin(unsigned Slot) const; 380 iterator end(unsigned Slot) const; 563 typedef std::map<std::string, std::string>::iterator td_iterator;
|
| /external/tensorflow/tensorflow/core/kernels/data/ |
| parallel_interleave_dataset_op.cc | 116 return std::unique_ptr<IteratorBase>(new Iterator( 164 // will move to `interleave_` when an iterator in `interleave_` is 171 // `input_impl_` is the input iterator that generates arguments for the 172 // flat-map function (`captured_func_`). It is set to an iterator at 173 // Iterator construction, and is fixed until we consume all input elements. 184 class Iterator : public DatasetIterator<Dataset> { 186 explicit Iterator(const Params& params) 191 ~Iterator() override { 239 // iterator. 241 // We have advanced to a new iterator; reset block counts 400 std::unique_ptr<IteratorBase> iterator; local [all...] |