HomeSort by relevance Sort by last modified time
    Searched defs:Iterator (Results 51 - 75 of 142) sorted by null

1 23 4 5 6

  /external/chromium_org/v8/src/
types.cc 67 Handle<Type> Type::Iterator<T>::get_type() {
73 Handle<Map> Type::Iterator<Map>::Current() {
78 Handle<v8::internal::Object> Type::Iterator<v8::internal::Object>::Current() {
84 bool Type::Iterator<Map>::matches(Handle<Type> type) {
89 bool Type::Iterator<v8::internal::Object>::matches(Handle<Type> type) {
95 void Type::Iterator<T>::Advance() {
108 template class Type::Iterator<Map>;
109 template class Type::Iterator<v8::internal::Object>;
  /external/llvm/include/llvm/ADT/
DenseSet.h 64 class Iterator {
65 typename MapTy::iterator I;
68 typedef typename MapTy::iterator::difference_type difference_type;
74 Iterator(const typename MapTy::iterator &i) : I(i) {}
79 Iterator& operator++() { ++I; return *this; }
80 bool operator==(const Iterator& X) const { return I == X.I; }
81 bool operator!=(const Iterator& X) const { return I != X.I; }
104 typedef Iterator iterator; typedef in class:llvm::DenseSet
    [all...]
  /external/skia/src/core/
SkPictureStateTree.h 42 class Iterator;
53 * Given a list of draws, and a canvas, returns an iterator that produces the correct sequence
57 Iterator getIterator(const SkTDArray<void*>& draws, SkCanvas* canvas);
75 class Iterator {
80 Iterator() : fPlaybackMatrix(), fValid(false) { }
83 Iterator(const SkTDArray<void*>& draws, SkCanvas* canvas, Node* root);
84 // The draws this iterator is associated with
107 // Whether or not this is a valid iterator (the default public constructor sets this false)
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/stlport/
printers.py 152 class Iterator:
207 return self.Iterator (start['_M_node'], start['_M_cur'],
217 class Iterator:
247 return self.Iterator (node_type, self.val['_M_node']['_M_data'])
267 class Iterator:
299 return self.Iterator (RbtreeIterator (self.val), node_type)
313 class Iterator:
337 return self.Iterator (RbtreeIterator (self.val), node_type)
351 class Iterator:
376 return self.Iterator (node_type, self.val['_M_head']['_M_data']
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 151 class Iterator:
206 return self.Iterator (start['_M_node'], start['_M_cur'],
216 class Iterator:
246 return self.Iterator (node_type, self.val['_M_node']['_M_data'])
266 class Iterator:
298 return self.Iterator (RbtreeIterator (self.val), node_type)
312 class Iterator:
336 return self.Iterator (RbtreeIterator (self.val), node_type)
350 class Iterator:
375 return self.Iterator (node_type, self.val['_M_head']['_M_data']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 152 class Iterator:
207 return self.Iterator (start['_M_node'], start['_M_cur'],
217 class Iterator:
247 return self.Iterator (node_type, self.val['_M_node']['_M_data'])
267 class Iterator:
299 return self.Iterator (RbtreeIterator (self.val), node_type)
313 class Iterator:
337 return self.Iterator (RbtreeIterator (self.val), node_type)
351 class Iterator:
376 return self.Iterator (node_type, self.val['_M_head']['_M_data']
    [all...]
  /system/core/include/utils/
LruCache.h 52 class Iterator {
54 Iterator(const LruCache<TKey, TValue>& cache): mCache(cache), mIndex(-1) {
  /external/chromium/net/disk_cache/
rankings.cc 193 Rankings::Iterator::Iterator(Rankings* rankings) {
194 memset(this, 0, sizeof(Iterator));
198 Rankings::Iterator::~Iterator() {
603 // we have, and let the iterator logic update it when the entry changes.
850 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
861 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
867 LOG(WARNING) << "Invalidating iterator at 0x" << std::hex << address;
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage.cc 96 ResourceMetadataStorage::Iterator::Iterator(scoped_ptr<leveldb::Iterator> it)
109 ResourceMetadataStorage::Iterator::~Iterator() {
113 bool ResourceMetadataStorage::Iterator::IsAtEnd() const {
118 const ResourceEntry& ResourceMetadataStorage::Iterator::Get() const {
124 bool ResourceMetadataStorage::Iterator::GetCacheEntry(
146 void ResourceMetadataStorage::Iterator::Advance() {
158 bool ResourceMetadataStorage::Iterator::HasError() const
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 87 class Iterator
90 virtual ~Iterator() { };
97 typedef std::auto_ptr<Iterator> IteratorRef;
99 class ManipIterator : public Iterator
144 for (DLList::Iterator (it) = (list)->iterator(); !(it).end(); (it).next())
188 class Iterator : public ManipIterator
191 Iterator(Item *head, bool r) : rev(r), pos(r ? head->prev : head->next),
213 inline void erase(Iterator& pos)
218 Iterator iterator( function in class:nv50_ir::DLList
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 87 class Iterator
90 virtual ~Iterator() { };
97 typedef std::auto_ptr<Iterator> IteratorRef;
99 class ManipIterator : public Iterator
144 for (DLList::Iterator (it) = (list)->iterator(); !(it).end(); (it).next())
188 class Iterator : public ManipIterator
191 Iterator(Item *head, bool r) : rev(r), pos(r ? head->prev : head->next),
213 inline void erase(Iterator& pos)
218 Iterator iterator( function in class:nv50_ir::DLList
    [all...]
  /frameworks/av/media/libstagefright/id3/
ID3.cpp 394 ID3::Iterator::Iterator(const ID3 &parent, const char *id)
407 ID3::Iterator::~Iterator() {
414 bool ID3::Iterator::done() const {
418 void ID3::Iterator::next() {
428 void ID3::Iterator::getID(String8 *id) const {
516 void ID3::Iterator::getString(String8 *id, String8 *comment) const {
526 void ID3::Iterator::getstring(String8 *id, bool otherdata) const {
612 const uint8_t *ID3::Iterator::getData(size_t *length) const
    [all...]
  /external/chromium/testing/gtest/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/chromium_org/net/disk_cache/
rankings.cc 202 Rankings::Iterator::Iterator(Rankings* rankings) {
203 memset(this, 0, sizeof(Iterator));
207 Rankings::Iterator::~Iterator() {
625 // we have, and let the iterator logic update it when the entry changes.
884 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
895 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
898 DLOG(INFO) << "Invalidating iterator at 0x" << std::hex << address;
  /external/chromium_org/testing/gtest/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/chromium_org/third_party/mesa/src/src/gtest/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/gtest/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/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/mesa3d/src/gtest/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/open-vcdiff/gtest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
94 // Used only for the purposes of iterator comparison
97 // Advances iterator to point to the next element
99 // for not calling Advance() on an iterator equal to
102 // Clones the iterator object. Used for implementing copy semantics
105 // Dereferences the current iterator and provides (read-only) access
107 // Current() on an iterator equal to BaseGenerator()->End().
110 // Determines whether the given iterator and other point to the same
118 // and implements the const forward iterator concept.
182 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 37 #include <iterator>
92 // Used only for the purposes of iterator comparison
95 // Advances iterator to point to the next element
97 // for not calling Advance() on an iterator equal to
100 // Clones the iterator object. Used for implementing copy semantics
103 // Dereferences the current iterator and provides (read-only) access
105 // Current() on an iterator equal to BaseGenerator()->End().
108 // Determines whether the given iterator and other point to the same
116 // and implements the const forward iterator concept.
180 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /ndk/sources/third_party/googletest/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...]
  /art/compiler/dex/
growable_array.h 49 class Iterator {
51 explicit Iterator(GrowableArray* g_list)
70 return arena->Alloc(sizeof(GrowableArray::Iterator), ArenaAllocator::kAllocGrowableArray);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 453 public virtual IEnumerator<object> Iterator() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 537 public virtual IEnumerator<object> Iterator()

Completed in 994 milliseconds

1 23 4 5 6