HomeSort by relevance Sort by last modified time
    Searched defs:iterator (Results 1901 - 1925 of 3929) sorted by null

<<71727374757677787980>>

  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 148 MachineBasicBlock::iterator MBBI, const DebugLoc &DL,
152 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
157 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
164 MachineBasicBlock::iterator &MBBI);
456 MachineBasicBlock::iterator MBBI,
594 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
791 MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore,
853 typedef MachineBasicBlock::iterator iterator; typedef
855 iterator InsertBefore = std::next(iterator(LatestMI))
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.h 92 std::pair<CompMap::iterator, bool> Ins =
462 typedef std::vector<unsigned>::const_iterator iterator; typedef in struct:llvm::RegUnitSet
541 std::list<CodeGenRegisterClass>::iterator FirstSubRegRC);
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 1065 typedef Element* iterator; typedef in class:testing::internal::NativeArray
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_shader.h 157 typedef typename container::iterator iterator; typedef in class:r600_sb::queue
159 iterator begin() { return cont.begin(); }
160 iterator end() { return cont.end(); }
162 iterator insert(const T& t) {
163 iterator I = std::upper_bound(begin(), end(), t, Comp());
173 std::pair<iterator, iterator> R =
175 iterator F = std::find(R.first, R.second, t);
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 840 // will be viable (since both C::iterator* and C::const_iterator* are
843 // the type of argument 0. If C::iterator or C::const_iterator is not
849 // Note that we look for both C::iterator and C::const_iterator. The
968 typedef Element* iterator; typedef in class:testing::internal::NativeArray
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 206 CvSparseMatIterator iterator; local
209 for( node = cvInitSparseMatIterator( mat, &iterator );
210 node != 0; node = cvGetNextSparseNode( &iterator ))
246 CvSparseMatIterator iterator; local
250 for( node = cvInitSparseMatIterator( mat, &iterator );
251 node != 0; node = cvGetNextSparseNode( &iterator ))
260 for( node = cvInitSparseMatIterator( mat, &iterator );
261 node != 0; node = cvGetNextSparseNode( &iterator ))
339 CvSparseMatIterator iterator; local
348 for( node = cvInitSparseMatIterator( mat, &iterator );
515 CvSparseMatIterator iterator; local
1496 CvSparseMatIterator iterator; local
1534 CvSparseMatIterator iterator; local
2277 CvNArrayIterator iterator; local
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 481 CvNArrayIterator* iterator, int flags )
499 if( !iterator )
500 CV_ERROR( CV_StsNullPtr, "Iterator pointer is NULL" );
524 iterator->hdr[i] = hdr;
584 iterator->hdr[i] = (CvMatND*)hdr;
585 iterator->ptr[i] = (uchar*)hdr->data.ptr;
593 iterator->dims = dims;
594 iterator->count = count;
595 iterator->size = cvSize(size,1);
598 iterator->stack[i] = hdr0->dim[i].size
846 CvSparseMatIterator iterator; local
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteString.java 49 import java.util.Iterator;
152 * {@link ByteIterator} returned by {@link #iterator()}, and call {@link
163 * To avoid auto-boxing, you may get the iterator manually and call
166 * @return the iterator
169 public final ByteIterator iterator() { method in class:ByteString
202 * This interface extends {@code Iterator<Byte>}, so that we can return an
205 public interface ByteIterator extends Iterator<Byte> {
207 * An alternative to {@link Iterator#next()} that returns an
537 for (Iterator<ByteString> iter = byteStrings.iterator(); iter.hasNext()
    [all...]
FieldSet.java 38 import java.util.Iterator;
211 * Get an iterator to the field map. This iterator should not be leaked out
215 public Iterator<Map.Entry<FieldDescriptorType, Object>> iterator() { method in class:FieldSet
218 fields.entrySet().iterator());
220 return fields.entrySet().iterator();
  /external/python/cpython2/Modules/
_csv.c 925 PyObject * iterator, * dialect = NULL; local
943 if (!PyArg_UnpackTuple(args, "", 1, 2, &iterator, &dialect)) {
947 self->input_iter = PyObject_GetIter(iterator);
950 "argument 1 must be an iterator");
    [all...]
  /external/python/cpython3/Modules/
_csv.c 821 "iterator should return strings, "
951 PyObject * iterator, * dialect = NULL; local
969 if (!PyArg_UnpackTuple(args, "", 1, 2, &iterator, &dialect)) {
973 self->input_iter = PyObject_GetIter(iterator);
976 "argument 1 must be an iterator");
    [all...]
  /external/python/cpython3/Objects/
odictobject.c 2279 PyObject *pair, *iterator, *unexpected; local
2374 PyObject *keys, *iterator, *key; local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
ScannerImpl.java 22 import java.util.Iterator;
436 return this.possibleSimpleKeys.values().iterator().next().getTokenNumber();
453 for (Iterator<SimpleKey> iterator = this.possibleSimpleKeys.values().iterator(); iterator
455 SimpleKey key = iterator.next();
468 iterator.remove();
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ImmutableSet.h 50 typedef ImutAVLTreeInOrderIterator<ImutInfo> iterator; typedef in class:llvm::ImutAVLTree
107 /// begin - Returns an iterator that iterates over the nodes of the tree
108 /// in an inorder traversal. The returned iterator thus refers to the
110 iterator begin() const { return iterator(this); }
112 /// end - Returns an iterator for the tree that denotes the end of an
114 iterator end() const { return iterator(); }
141 iterator LItr = begin(), LEnd = end();
142 iterator RItr = RHS.begin(), REnd = RHS.end()
1050 class iterator { class in class:llvm::ImmutableSet
1052 iterator(TreeTy* t) : itr(t) {} function in class:llvm::ImmutableSet::iterator
1055 iterator() {} function in class:llvm::ImmutableSet::iterator
1176 class iterator { class in class:llvm::ImmutableSetRef
1178 iterator(TreeTy* t) : itr(t) {} function in class:llvm::ImmutableSetRef::iterator
1181 iterator() {} function in class:llvm::ImmutableSetRef::iterator
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DebugInfo.h 826 typedef SmallVector<MDNode *, 8>::const_iterator iterator; typedef in class:llvm::DebugInfoFinder
827 iterator compile_unit_begin() const { return CUs.begin(); }
828 iterator compile_unit_end() const { return CUs.end(); }
829 iterator subprogram_begin() const { return SPs.begin(); }
830 iterator subprogram_end() const { return SPs.end(); }
831 iterator global_variable_begin() const { return GVs.begin(); }
832 iterator global_variable_end() const { return GVs.end(); }
833 iterator type_begin() const { return TYs.begin(); }
834 iterator type_end() const { return TYs.end(); }
Dominators.h 73 typedef typename std::vector<DomTreeNodeBase<NodeT> *>::iterator iterator; typedef in class:llvm::DomTreeNodeBase
77 iterator begin() { return Children.begin(); }
78 iterator end() { return Children.end(); }
109 for (iterator I = Other->begin(), E = Other->end(); I != E; ++I) {
114 for (iterator I = begin(), E = end(); I != E; ++I) {
125 typename std::vector<DomTreeNodeBase<NodeT>*>::iterator I =
214 for (typename DomTreeNodeMapType::iterator I = this->DomTreeNodes.begin(),
519 typename std::vector<DomTreeNodeBase<NodeT>*>::iterator I =
587 typename DomTreeNodeBase<NodeT>::iterator>, 32> WorkStack
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ScheduleDAG.h 240 typedef SmallVector<SDep, 4>::iterator pred_iterator;
241 typedef SmallVector<SDep, 4>::iterator succ_iterator;
488 MachineBasicBlock::iterator InsertPos;// The position to insert instructions
548 void Run(MachineBasicBlock *bb, MachineBasicBlock::iterator insertPos);
586 class SUnitIterator : public std::iterator<std::forward_iterator_tag,
649 typedef std::vector<SUnit>::iterator nodes_iterator;
710 typedef std::vector<int>::iterator iterator; typedef in class:llvm::ScheduleDAGTopologicalSort
712 iterator begin() { return Index2Node.begin(); }
714 iterator end() { return Index2Node.end();
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAssembler.h 116 typedef std::vector<MCFixup>::iterator fixup_iterator;
174 typedef SmallVectorImpl<MCFixup>::iterator fixup_iterator;
436 typedef FragmentListType::iterator iterator; typedef in class:llvm::MCSectionData
490 iterator begin() { return Fragments.begin(); }
493 iterator end() { return Fragments.end(); }
648 typedef SectionDataListType::iterator iterator; typedef in class:llvm::MCAssembler
651 typedef SymbolDataListType::iterator symbol_iterator;
655 typedef std::vector<IndirectSymbolData>::iterator indirect_symbol_iterator
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 1056 typedef Element* iterator; typedef in class:testing::internal::NativeArray
    [all...]
  /external/v8/src/
deoptimizer.h 176 class iterator { class in class:v8::internal::TranslatedFrame
178 iterator& operator++() {
183 iterator operator++(int) {
184 iterator original(position_);
189 bool operator==(const iterator& other) const {
192 bool operator!=(const iterator& other) const { return !(*this == other); }
200 explicit iterator(std::deque<TranslatedValue>::iterator position) function in class:v8::internal::TranslatedFrame::iterator
203 std::deque<TranslatedValue>::iterator position_;
209 iterator begin() { return iterator(values_.begin());
291 typedef std::vector<TranslatedFrame>::iterator iterator; typedef in class:v8::internal::TranslatedState
    [all...]
  /external/v8/src/runtime/
runtime-debug.cc 148 Handle<IteratorType> iterator = Handle<IteratorType>::cast(object); local
149 CHECK(iterator->kind()->IsSmi());
151 switch (Smi::cast(iterator->kind())->value()) {
169 result->set(1, isolate->heap()->ToBoolean(iterator->HasMore()));
174 result->set(3, iterator->index());
212 Handle<JSMapIterator> iterator = Handle<JSMapIterator>::cast(object); local
213 return GetIteratorInternalProperties(isolate, iterator);
215 Handle<JSSetIterator> iterator = Handle<JSSetIterator>::cast(object); local
216 return GetIteratorInternalProperties(isolate, iterator);
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-internal.h 1038 typedef Element* iterator; typedef in class:testing::internal::NativeArray
    [all...]
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 840 // will be viable (since both C::iterator* and C::const_iterator* are
843 // the type of argument 0. If C::iterator or C::const_iterator is not
849 // Note that we look for both C::iterator and C::const_iterator. The
968 typedef Element* iterator; typedef in class:testing::internal::NativeArray
    [all...]
  /external/webrtc/webrtc/base/
httpcommon.h 292 typedef HeaderMap::iterator iterator; typedef in struct:rtc::HttpData
312 // Returns iterator to next header
313 iterator clearHeader(iterator header);
324 inline iterator begin() {
327 inline iterator end() {
336 inline iterator begin(const std::string& name) {
339 inline iterator end(const std::string& name) {
368 inline iterator begin(HttpHeader header)
    [all...]

Completed in 1359 milliseconds

<<71727374757677787980>>