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

<<61626364656667686970>>

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineBasicBlock.h 79 typedef std::vector<uint32_t>::iterator weight_iterator;
131 typedef Instructions::iterator iterator; typedef in class:llvm::MachineBasicBlock
134 typedef std::reverse_iterator<iterator> reverse_iterator;
144 iterator begin() { return Insts.begin(); }
146 iterator end() { return Insts.end(); }
154 typedef std::vector<MachineBasicBlock *>::iterator pred_iterator;
156 typedef std::vector<MachineBasicBlock *>::iterator succ_iterator;
271 /// updated. Return the iterator to the element after the one removed.
312 iterator getFirstNonPHI()
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Module.h 129 /// The Global Variable iterator.
130 typedef GlobalListType::iterator global_iterator;
131 /// The Global Variable constant iterator.
135 typedef FunctionListType::iterator iterator; typedef in class:llvm::Module
136 /// The Function constant iterator
140 typedef AliasListType::iterator alias_iterator;
141 /// The Global Alias constant iterator
145 typedef NamedMDListType::iterator named_metadata_iterator;
148 /// The Library list iterator
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TargetRegistry.h 443 class iterator { class in struct:llvm::TargetRegistry
445 explicit iterator(Target *T) : Current(T) {} function in class:llvm::TargetRegistry::iterator
448 iterator(const iterator &I) : Current(I.Current) {} function in class:llvm::TargetRegistry::iterator
449 iterator() : Current(0) {} function in class:llvm::TargetRegistry::iterator
451 bool operator==(const iterator &x) const {
454 bool operator!=(const iterator &x) const {
458 // Iterator traversal: forward iteration only
459 iterator &operator++() { // Preincrement
460 assert(Current && "Cannot increment end iterator!");
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetRegisterInfo.h 36 typedef const unsigned* iterator; typedef in class:llvm::TargetRegisterClass
66 iterator begin() const { return MC->begin(); }
67 iterator end() const { return MC->end(); }
615 virtual void resolveFrameIndex(MachineBasicBlock::iterator I,
638 MachineBasicBlock::iterator MI) const {
649 MachineBasicBlock::iterator I,
650 MachineBasicBlock::iterator &UseMI,
658 /// referenced by the iterator contains an MO_FrameIndex operand which must be
660 /// specified instruction, as long as it keeps the iterator pointing at the
663 virtual void eliminateFrameIndex(MachineBasicBlock::iterator MI
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DenseMap.h 27 #include <iterator>
62 typedef DenseMapIterator<KeyT, ValueT, KeyInfoT, BucketT> iterator; typedef in class:llvm::DenseMapBase
65 inline iterator begin() {
67 return empty() ? end() : iterator(getBuckets(), getBucketsEnd(), *this);
69 inline iterator end() {
70 return iterator(getBucketsEnd(), getBucketsEnd(), *this, true);
127 iterator find(const KeyT &Val) {
130 return iterator(TheBucket, getBucketsEnd(), *this, true);
146 iterator find_as(const LookupKeyT &Val) {
149 return iterator(TheBucket, getBucketsEnd(), *this, true)
    [all...]
STLExtras.h 25 #include <iterator>
31 #include "llvm/ADT/iterator.h"
121 // Extra additions to <iterator>
124 // mapped_iterator - This is a simple iterator adapter that causes a function to
125 // be dereferenced whenever operator* is invoked on the iterator.
201 template <class Iterator, class Func>
202 inline mapped_iterator<Iterator, Func>
203 operator+(typename mapped_iterator<Iterator, Func>::difference_type N,
204 const mapped_iterator<Iterator, Func> &X) {
205 return mapped_iterator<Iterator, Func>(X.getCurrent() - N, X.getFunc())
402 typedef ItType<decltype(std::begin(std::declval<Args>()))...> iterator; typedef in class:llvm::detail::zippy
756 class iterator { class in class:llvm::detail::enumerator_impl
762 iterator(IterOfRange<R> &&Iter, std::size_t Index) function in class:llvm::detail::enumerator_impl::iterator
    [all...]
SmallVector.h 28 #include <iterator>
102 typedef T *iterator; typedef in class:llvm::SmallVectorTemplateCommon
106 typedef std::reverse_iterator<iterator> reverse_iterator;
113 // forward iterator creation methods.
115 iterator begin() { return (iterator)this->BeginX; }
119 iterator end() { return (iterator)this->EndX; }
124 iterator capacity_ptr() { return (iterator)this->CapacityX;
325 typedef typename SuperClass::iterator iterator; typedef in class:llvm::SmallVectorImpl
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Function.h 54 typedef BasicBlockListType::iterator iterator; typedef in class:llvm::Function
57 typedef ArgumentListType::iterator arg_iterator;
529 // BasicBlock iterator forwarding functions
531 iterator begin() { return BasicBlocks.begin(); }
533 iterator end () { return BasicBlocks.end(); }
  /external/tensorflow/tensorflow/core/kernels/data/
iterator_ops.cc 19 #include "tensorflow/core/framework/iterator.pb.h"
43 const char kIteratorVariantTypeName[] = "tensorflow::Iterator";
109 "GetNext() failed because the iterator has not been initialized. "
111 "iterator before getting the next element.");
121 "Save() failed because the iterator has not been initialized. "
123 "iterator before saving it.");
154 TF_RETURN_IF_ERROR(set_iterator(dataset->MakeIterator("Iterator")));
175 "Failed to restore iterator. Make sure the checkpoint ",
177 "you will need to initialize your iterator before restoring.");
186 // Transfers ownership of iterator to this. This method is thread-safe
713 IteratorResource* iterator = nullptr; local
855 IteratorResource* iterator; variable
906 IteratorResource* iterator; variable
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
inlined_vector.h 40 #include <iterator>
66 typedef pointer iterator; typedef in class:tensorflow::gtl::InlinedVector
230 iterator begin() { return data(); }
233 iterator end() { return data() + size(); }
236 iterator insert(iterator pos, const value_type& v);
238 iterator erase(iterator pos) {
246 iterator erase(iterator first, iterator last)
    [all...]
  /external/v8/src/compiler/
node.h 122 class iterator;
123 inline iterator begin() const;
124 inline iterator end() const;
326 class iterator;
327 inline iterator begin() const;
328 inline iterator end() const;
391 friend class Node::UseEdges::iterator;
393 friend class Node::InputEdges::iterator;
431 // A forward iterator to visit the edges for the input dependencies of a node.
432 class Node::InputEdges::iterator final
440 iterator() : use_(nullptr), input_ptr_(nullptr) {} function in class:v8::internal::compiler::final
441 iterator(const iterator& other) function in class:v8::internal::compiler::final
470 explicit iterator(Use* use, Node** input_ptr) function in class:v8::internal::compiler::final
548 iterator(const iterator& other) function in class:v8::internal::compiler::final
567 iterator() : current_(nullptr), next_(nullptr) {} function in class:v8::internal::compiler::final
568 explicit iterator(Node* node) function in class:v8::internal::compiler::final
    [all...]
schedule.h 90 typedef NodeVector::iterator iterator; typedef in class:v8::internal::compiler::final
91 iterator begin() { return nodes_.begin(); }
92 iterator end() { return nodes_.end(); }
104 void InsertNodes(iterator insertion_point, InputIterator insertion_start,
  /external/v8/testing/gtest/test/
gtest-printers_test.cc 974 // Tests that a class named iterator isn't treated as a container.
976 struct iterator { struct in namespace:testing::gtest_printers_test
980 TEST(PrintStlContainerTest, Iterator) {
981 iterator it = {};
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
73 // Used only for the purposes of iterator comparison
76 // Advances iterator to point to the next element
78 // for not calling Advance() on an iterator equal to
81 // Clones the iterator object. Used for implementing copy semantics
84 // Dereferences the current iterator and provides (read-only) access
86 // Current() on an iterator equal to BaseGenerator()->End().
89 // Determines whether the given iterator and other point to the same
97 // and implements the const forward iterator concept.
161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-printers_test.cc 965 // Tests that a class named iterator isn't treated as a container.
967 struct iterator { struct in namespace:testing::gtest_printers_test
971 TEST(PrintStlContainerTest, Iterator) {
972 iterator it = {};
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
chatroommoduleimpl.cc 129 XmppChatroomModuleImpl::JidMemberMap::iterator iterator_;
148 JidMemberMap::iterator iterator = chatroom_jid_members_.begin(); local
149 while (iterator != chatroom_jid_members_.end()) {
150 delete iterator->second;
151 iterator++;
478 JidMemberMap::iterator pos = chatroom_jid_members_.find(presence->jid());
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 362 DrmSupportInfo::MimeTypeIterator iterator = info.getMimeTypeIterator(); local
363 while (iterator.hasNext()) {
364 String8 value = iterator.next();
441 env->GetMethodID(clazz, "keyIterator", "()Ljava/util/Iterator;"));
443 jclass Iterator_class = env->FindClass("java/util/Iterator");
520 env->GetMethodID(clazz, "keyIterator", "()Ljava/util/Iterator;"));
524 jclass Iterator_class = env->FindClass("java/util/Iterator");
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
XmpDepthDecode.java 172 XMPIterator iterator = xmpExtended.iterator(); local
174 XMPPropertyInfo info = (XMPPropertyInfo) iterator.next();
  /frameworks/support/navigation/runtime/src/main/java/androidx/navigation/
NavController.java 34 import java.util.Iterator;
256 Iterator<NavDestination> iterator = mBackStack.descendingIterator(); local
257 while (iterator.hasNext()) {
258 NavDestination destination = iterator.next();
267 iterator = destinationsToRemove.iterator();
268 while (iterator.hasNext()) {
269 NavDestination destination = iterator.next();
272 if (iterator.hasNext())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest4.java 41 import java.util.Iterator;
1828 Iterator iterator = LINKEDMAP.keySet().iterator(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
EnumSetTest.java 22 import java.util.Iterator;
117 * java.util.HugeEnumSet#iterator()
145 Iterator<HugeEnumCount> iterator = set.iterator(); local
146 assertTrue(iterator.hasNext());
147 assertEquals(HugeEnumCount.NO64, iterator.next());
148 assertTrue(iterator.hasNext());
149 iterator.remove();
150 assertEquals(HugeEnumCount.NO65, iterator.next())
1407 Iterator<EnumFoo> iterator = set.iterator(); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ArrayDeque.java 59 * {@link #iterator iterator.remove()},
62 * <p>The iterators returned by this class's {@link #iterator() iterator}
64 * the iterator is created, in any way except through the iterator's own
65 * {@code remove} method, the iterator will generally throw a {@link
67 * modification, the iterator fails quickly and cleanly, rather than risking
71 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
79 * <p>This class and its iterator implement all of th
587 public Iterator<E> iterator() { method in class:ArrayDeque
    [all...]
EnumMap.java 178 keyType = m.keySet().iterator().next().getDeclaringClass();
375 * {@link Map#keySet()}. The set's iterator will return the keys
391 public Iterator<K> iterator() { method in class:EnumMap.KeySet
413 * {@link Map#values()}. The collection's iterator will return the
430 public Iterator<V> iterator() { method in class:EnumMap.Values
459 * {@link Map#keySet()}. The set's iterator will return the
474 public Iterator<Map.Entry<K,V>> iterator() { method in class:EnumMap.EntrySet
    [all...]
Hashtable.java 87 * <p>The iterators returned by the <tt>iterator</tt> method of the collections
90 * after the iterator is created, in any way except through the iterator's own
91 * <tt>remove</tt> method, the iterator will throw a {@link
93 * modification, the iterator fails quickly and cleanly, rather than risking
98 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
581 Iterator<Map.Entry<K,V>> it = entrySet().iterator();
607 private <T> Iterator<T> getIterator(int type) {
631 * the iterator's own <tt>remove</tt> operation), the results o
648 public Iterator<K> iterator() { method in class:Hashtable.KeySet
688 public Iterator<Map.Entry<K,V>> iterator() { method in class:Hashtable.EntrySet
770 public Iterator<V> iterator() { method in class:Hashtable.ValueCollection
1344 boolean iterator; field in class:Hashtable.Enumerator
    [all...]

Completed in 1809 milliseconds

<<61626364656667686970>>