Searched defs:iterator (Results 201 - 225 of 669) sorted by relevance

1234567891011>>

/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_scanline_u.h40 typedef span* iterator; typedef in class:agg::scanline_u
132 iterator begin()
/external/qemu/android/base/
H A DStringView.h82 typedef const char* iterator; typedef in class:android::base::StringView
/external/smali/util/src/main/java/org/jf/util/
H A DArraySortedSet.java71 public Iterator<T> iterator() { method in class:ArraySortedSet
187 return Iterators.elementsEqual(iterator(), other.iterator());
/external/chromium_org/base/containers/
H A Dmru_cache.h53 typename PayloadList::iterator>::Type KeyIndex;
58 typedef typename PayloadList::iterator iterator; typedef in class:base::MRUCacheBase
77 iterator i = begin();
85 // the same key, it is removed prior to insertion. An iterator indicating the
90 iterator Put(const KeyType& key, const PayloadType& payload) {
92 typename KeyIndex::iterator index_iter = index_.find(key);
113 iterator Get(const KeyType& key) {
114 typename KeyIndex::iterator index_iter = index_.find(key);
117 typename PayloadList::iterator ite
[all...]
/external/chromium_org/base/
H A Did_map.h83 typename HashTable::iterator i = data_.find(id);
102 for (typename HashTable::iterator i = data_.begin();
207 typedef Iterator<T> iterator; typedef in class:IDMap
222 for (typename HashTable::iterator i = table->begin();
244 // finished. This way we manage to not invalidate the iterator when an element
H A Dvalues.h346 // This class provides an iterator over both keys and values in the
377 typedef ValueVector::iterator iterator; typedef in class:base::ListValue
438 // Returns an iterator pointing to the location of the element that
440 iterator Erase(iterator iter, scoped_ptr<Value>* out_value);
472 iterator begin() { return list_.begin(); }
473 iterator end() { return list_.end(); }
/external/chromium_org/base/memory/
H A Dscoped_vector.h30 typedef typename std::vector<T*>::iterator iterator; typedef in class:ScopedVector
56 iterator begin() { return v_.begin(); }
58 iterator end() { return v_.end(); }
103 iterator insert(iterator position, T* x) {
109 void insert(iterator position, InputIterator first, InputIterator last) {
113 iterator erase(iterator position) {
118 iterator eras
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfileapi_util.cc66 // Converts the element under the iterator to an entry. First, converts
70 FileDefinitionList::const_iterator iterator);
75 FileDefinitionList::const_iterator iterator,
81 // Called when the iterator is converted. Adds the |entry_definition| to
84 FileDefinitionList::const_iterator iterator,
122 FileDefinitionList::const_iterator iterator) {
123 if (iterator == file_definition_list_.end()) {
132 iterator,
141 iterator->virtual_path);
151 iterator));
120 ConvertNextIterator( scoped_ptr<FileDefinitionListConverter> self_deleter, FileDefinitionList::const_iterator iterator) argument
154 OnResolvedURL( scoped_ptr<FileDefinitionListConverter> self_deleter, FileDefinitionList::const_iterator iterator, base::File::Error error, const storage::FileSystemInfo& info, const base::FilePath& file_path, storage::FileSystemContext::ResolvedEntryType type) argument
199 OnIteratorConverted( scoped_ptr<FileDefinitionListConverter> self_deleter, FileDefinitionList::const_iterator iterator, const EntryDefinition& entry_definition) argument
[all...]
/external/chromium_org/chrome/browser/drive/
H A Ddrive_app_registry.cc35 typedef std::multimap<std::string, std::string>::const_iterator iterator; typedef
36 std::pair<iterator, iterator> range = map.equal_range(selector);
37 for (iterator it = range.first; it != range.second; ++it)
43 typedef std::multimap<std::string, std::string>::iterator iterator; typedef
44 for (iterator it = map->begin(); it != map->end(); ) {
45 iterator now = it++;
/external/chromium_org/chrome/browser/service_process/
H A Dservice_process_control.h68 typedef IDMap<ServiceProcessControl>::iterator iterator; typedef in class:ServiceProcessControl
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_term_feature_extractor.cc58 // An iterator for word breaking.
59 scoped_ptr<base::i18n::BreakIterator> iterator; member in struct:safe_browsing::PhishingTermFeatureExtractor::ExtractionState
76 iterator = i.Pass();
78 DLOG(ERROR) << "failed to open iterator";
143 if (!state_->iterator.get()) {
144 // We failed to initialize the break iterator, so stop now.
151 while (state_->iterator->Advance()) {
152 if (state_->iterator->IsWord()) {
153 const size_t start = state_->iterator->prev();
154 const size_t length = state_->iterator
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node_data.cc61 PickleIterator* iterator) {
63 if (!pickle->ReadBool(iterator, &is_url) ||
64 !pickle->ReadString(iterator, &url_spec) ||
65 !pickle->ReadString16(iterator, &title) ||
66 !pickle->ReadInt64(iterator, &id_)) {
74 if (!pickle->ReadUInt64(iterator, &meta_field_count))
79 if (!pickle->ReadString(iterator, &key) ||
80 !pickle->ReadString(iterator, &value)) {
88 if (!pickle->ReadUInt64(iterator, &children_count))
93 if (!children.back().ReadFromPickle(pickle, iterator))
60 ReadFromPickle(Pickle* pickle, PickleIterator* iterator) argument
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpolicy_service_impl.cc106 ObserverMap::iterator it = observers_.find(domain);
173 ObserverMap::iterator iterator = observers_.find(ns.domain); local
174 if (iterator != observers_.end()) {
176 *iterator->second,
251 ObserverMap::iterator iter = observers_.find(policy_domain);
266 std::vector<base::Closure>::iterator it;
/external/chromium_org/components/sessions/
H A Dserialized_navigation_entry.cc268 bool SerializedNavigationEntry::ReadFromPickle(PickleIterator* iterator) { argument
272 if (!iterator->ReadInt(&index_) ||
273 !iterator->ReadString(&virtual_url_spec) ||
274 !iterator->ReadString16(&title_) ||
275 !iterator->ReadString(&page_state_data) ||
276 !iterator->ReadInt(&transition_type_int))
285 bool has_type_mask = iterator->ReadInt(&type_mask);
292 if (!iterator->ReadString(&referrer_spec))
298 if (iterator->ReadInt(&policy_int))
306 if (!iterator
[all...]
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc30 for (DataType::iterator it = data_.begin(); it != data_.end(); ++it) {
42 DataType::iterator it = data_.find(key);
101 for (DataType::iterator iterator = data_.begin(); iterator != data_.end();
102 ++iterator) {
103 if (!iterator->second->deleted)
104 write_batch->Put(iterator->first, iterator->second->value);
106 write_batch->Remove(iterator
436 RegisterIterator(TransactionIterator* iterator) argument
441 UnregisterIterator(TransactionIterator* iterator) argument
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dmock_browsertest_indexed_db_class_factory.cc114 LevelDBTraceIteratorImpl(scoped_ptr<leveldb::Iterator> iterator, int inst_num) argument
115 : LevelDBIteratorImpl(iterator.Pass()),
170 LevelDBTestIteratorImpl(scoped_ptr<leveldb::Iterator> iterator, argument
173 : LevelDBIteratorImpl(iterator.Pass()),
224 scoped_ptr<leveldb::Iterator> iterator) {
229 iterator.Pass(), instance_count_[FAIL_CLASS_LEVELDB_ITERATOR]);
235 iterator.Pass(),
239 return new LevelDBIteratorImpl(iterator.Pass());
223 CreateIteratorImpl( scoped_ptr<leveldb::Iterator> iterator) argument
/external/chromium_org/device/hid/
H A Dhid_service_mac.cc174 io_iterator_t iterator; local
181 &iterator);
188 // Drain the iterator to arm the notification.
189 devices_added_iterator_.reset(iterator);
191 iterator = IO_OBJECT_NULL;
198 &iterator);
206 devices_removed_iterator_.reset(iterator);
214 void HidServiceMac::FirstMatchCallback(void* context, io_iterator_t iterator) { argument
217 DCHECK_EQ(service->devices_added_iterator_, iterator);
222 void HidServiceMac::TerminatedCallback(void* context, io_iterator_t iterator) { argument
[all...]
/external/chromium_org/net/base/
H A Dpriority_queue.h54 // An uninitialized iterator behaves like an uninitialized pointer as per
100 // Note that we need iterator and not const_iterator to pass to
104 typedef typename PriorityQueue::List::iterator ListIterator;
108 // It is guaranteed that Pointer will treat |iterator| as a
110 Pointer(Priority priority, const ListIterator& iterator) argument
111 : priority_(priority), iterator_(iterator) {
121 // initialize a NULL iterator to the end of a valid list.
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3_unittest.cc521 disk_cache::IndexIterator iterator; local
522 iterator.timestamp = index.CalculateTimestamp(time) + 1;
523 iterator.forward = false; // Back in time.
525 ASSERT_TRUE(index.GetNextCells(&iterator));
526 ASSERT_EQ(3u, iterator.cells.size());
527 EXPECT_EQ(entries[41].hash, iterator.cells[0].hash);
528 EXPECT_EQ(entries[42].hash, iterator.cells[1].hash);
529 EXPECT_EQ(entries[43].hash, iterator.cells[2].hash);
531 ASSERT_TRUE(index.GetNextCells(&iterator));
532 ASSERT_EQ(10u, iterator
[all...]
/external/chromium_org/net/disk_cache/
H A Ddisk_cache_test_base.cc56 scoped_ptr<disk_cache::Backend::Iterator> iterator)
57 : iterator_(iterator.Pass()) {
55 TestIterator( scoped_ptr<disk_cache::Backend::Iterator> iterator) argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIteratorTest.cpp88 TextIterator iterator(range.get(), iteratorBehavior);
89 return iterateWithIterator(iterator);
94 TextIterator iterator(start, end, iteratorBehavior);
95 return iterateWithIterator(iterator);
98 Vector<String> TextIteratorTest::iterateWithIterator(TextIterator& iterator) argument
101 while (!iterator.atEnd()) {
102 textChunks.append(iterator.substring(0, iterator.length()));
103 iterator.advance();
141 static const char* input = "<p>Hello, \ntext</p><p>iterator
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextRunRenderingContext.cpp153 GlyphData SVGTextRunRenderingContext::glyphDataForCharacter(const Font& font, const TextRun& run, WidthIterator& iterator, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) argument
204 if (svgFontData->applySVGGlyphSelection(iterator, glyphData, mirror, currentCharacter, advanceLength))
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFontData.cpp150 bool SVGFontData::applySVGGlyphSelection(WidthIterator& iterator, GlyphData& glyphData, bool mirror, int currentCharacter, unsigned& advanceLength) const argument
152 const TextRun& run = iterator.run();
153 Vector<SVGGlyph::ArabicForm>& arabicForms = iterator.arabicForms();
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.h167 typedef Dictionary::iterator iterator; typedef in class:blink::JSONObjectBase
187 iterator find(const String& name);
206 iterator begin() { return m_data.begin(); }
207 iterator end() { return m_data.end(); }
256 typedef Vector<RefPtr<JSONValue> >::iterator iterator; typedef in class:blink::JSONArrayBase
282 iterator begin() { return m_data.begin(); }
283 iterator end() { return m_data.end(); }
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DHRTFElevation.cpp79 AudioBusMap::iterator iterator = audioBusMap.find(subjectName); local
80 if (iterator == audioBusMap.end()) {
89 bus = iterator->value;

Completed in 738 milliseconds

1234567891011>>