Searched refs:iter (Results 326 - 350 of 2684) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/base/
H A Ddata_url.cc42 std::vector<std::string>::iterator iter = meta_data.begin(); local
43 if (iter != meta_data.end()) {
44 mime_type->swap(*iter);
46 ++iter;
54 for (; iter != meta_data.end(); ++iter) {
55 if (!base64_encoded && *iter == kBase64Tag) {
58 iter->compare(0, kCharsetTagLength, kCharsetTag) == 0) {
59 charset->assign(iter->substr(kCharsetTagLength));
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableValueKeyframe.cpp15 for (PropertyValueMap::const_iterator iter = copyFrom.m_propertyValues.begin(); iter != copyFrom.m_propertyValues.end(); ++iter)
16 setPropertyValue(iter->key, iter->value.get());
24 for (PropertyValueMap::const_iterator iter = m_propertyValues.begin(); iter != m_propertyValues.end(); ++iter)
25 properties.add(*iter.keys());
/external/deqp/framework/delibs/depool/
H A DdePoolHash.h105 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \
106 DE_INLINE deBool TYPENAME##Iter_hasItem (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \
107 DE_INLINE void TYPENAME##Iter_next (TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \
108 DE_INLINE KEYTYPE TYPENAME##Iter_getKey (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \
109 DE_INLINE VALUETYPE TYPENAME##Iter_getValue (const TYPENAME##Iter* iter) DE_UNUSED_FUNCTION; \
116 DE_INLINE void TYPENAME##Iter_init (const TYPENAME* hash, TYPENAME##Iter* iter) \
118 iter->hash = hash; \
119 iter->curSlotIndex = 0; \
120 iter->curSlot = DE_NULL; \
121 iter
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java132 CodeIterator iter = codeAttribute.iterator();
140 frames[iter.lookAhead()] = firstFrame(method, maxLocals, maxStack);
141 queue.add(iter.next());
143 analyzeNextEntry(method, iter, queue, executor);
167 private void analyzeNextEntry(MethodInfo method, CodeIterator iter, argument
170 iter.move(pos);
171 iter.next();
177 executor.execute(method, pos, iter, frame, subroutine);
182 int opcode = iter.byteAt(pos);
185 mergeTableSwitch(queue, pos, iter, fram
258 getNext(CodeIterator iter, int of, int restore) argument
268 lookAhead(CodeIterator iter, int pos) argument
347 mergeLookupSwitch(IntQueue queue, int pos, CodeIterator iter, Frame frame) argument
361 mergeRet(IntQueue queue, CodeIterator iter, int pos, Frame frame, Subroutine subroutine) argument
400 mergeTableSwitch(IntQueue queue, int pos, CodeIterator iter, Frame frame) argument
[all...]
/external/chromium_org/ash/display/
H A Ddisplay_error_observer_chromeos.cc63 for (message_center::NotificationList::Notifications::const_iterator iter =
64 notifications.begin(); iter != notifications.end(); ++iter) {
65 if ((*iter)->id() == kDisplayErrorNotificationId)
66 return (*iter)->title();
/external/chromium_org/ash/system/chromeos/managed/
H A Dtray_locally_managed_user_unittest.cc35 for (NotificationList::PopupNotifications::const_iterator iter =
36 popups.begin(); iter != popups.end(); ++iter) {
37 if ((*iter)->id() == TrayLocallyManagedUser::kNotificationId)
38 return *iter;
/external/chromium_org/chrome/browser/extensions/
H A Dextension_error_ui.cc28 for (ExtensionSet::const_iterator iter = extensions.begin();
29 iter != extensions.end();
30 ++iter) {
32 (*iter)->is_app() ? app_template_message_id
34 base::UTF8ToUTF16((*iter)->name())) + base::char16('\n');
/external/chromium_org/chrome/installer/util/
H A Duninstall_metrics.cc31 for (base::DictionaryValue::Iterator iter(*uninstall_metrics_dict);
32 !iter.IsAtEnd();
33 iter.Advance()) {
36 metrics->append(base::UTF8ToWide(iter.key()));
40 iter.value().GetAsString(&value);
/external/chromium_org/chrome/test/base/
H A Dchrome_test_launcher.cc72 for (CommandLine::SwitchMap::const_iterator iter = switches.begin();
73 iter != switches.end(); ++iter) {
74 new_command_line.AppendSwitchNative((*iter).first, (*iter).second);
/external/chromium_org/components/nacl/browser/
H A Dnacl_validation_cache.h46 ValidationCacheType::const_iterator iter = validation_cache_.begin(); local
47 for (iter = validation_cache_.begin();
48 iter != validation_cache_.end();
49 iter++) {
50 contents.push_back(iter->first);
/external/chromium_org/content/child/
H A Dquota_message_filter.cc32 for (RequestIdToThreadId::iterator iter = request_id_map_.begin();
33 iter != request_id_map_.end();) {
34 if (iter->second == thread_id)
35 request_id_map_.erase(iter++);
37 iter++;
/external/chromium_org/content/public/common/
H A Dcommon_param_traits.h53 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
61 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
69 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
77 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
85 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
93 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
101 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
109 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
117 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
125 static bool Read(const Message* m, PickleIterator* iter, param_typ
164 Read(const Message* m, PickleIterator* iter, param_type* r) argument
193 Read(const Message* m, PickleIterator* iter, param_type* r) argument
[all...]
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker.cc23 ReverseTable::iterator iter = reverse_notification_table_.find(notification); local
24 if (iter == reverse_notification_table_.end())
26 id = iter->second;
64 ReverseTable::iterator iter = reverse_notification_table_.begin(); local
65 UnregisterNotification((*iter).second);
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_service_chromeos.cc38 for (std::vector<dbus::ObjectPath>::const_iterator iter = gatt_chars.begin();
39 iter != gatt_chars.end(); ++iter)
40 GattCharacteristicAdded(*iter);
54 for (CharacteristicMap::iterator iter = characteristics.begin();
55 iter != characteristics.end(); ++iter) {
57 GattCharacteristicRemoved(this, iter->second));
58 delete iter->second;
105 for (CharacteristicMap::const_iterator iter
121 CharacteristicMap::const_iterator iter = local
243 CharacteristicMap::iterator iter = characteristics_.find(object_path); local
[all...]
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record.cc43 for (DictionaryValue::Iterator iter(*data);
44 !iter.IsAtEnd(); iter.Advance()) {
46 required_fields.find(iter.key());
49 field_iter = optional_fields.find(iter.key());
55 << iter.key();
62 if (field_iter->second != iter.value().GetType()) {
63 VLOG(1) << "Provided value for field \"" << iter.key() << "\" has type "
64 << iter.value().GetType() << ", expected: "
70 if (iter
[all...]
/external/chromium_org/extensions/common/features/
H A Djson_feature_provider_source.cc41 for (base::DictionaryValue::Iterator iter(*value_as_dict); !iter.IsAtEnd();
42 iter.Advance()) {
43 if (dictionary_.GetWithoutPathExpansion(iter.key(), NULL))
44 LOG(FATAL) << "Key " << iter.key() << " is defined in " << name_
/external/chromium_org/ipc/
H A Dipc_message_utils.cc53 bool ReadValue(const Message* m, PickleIterator* iter, base::Value** value,
129 bool ReadDictionaryValue(const Message* m, PickleIterator* iter, argument
132 if (!ReadParam(m, iter, &size))
138 if (!ReadParam(m, iter, &key) ||
139 !ReadValue(m, iter, &subval, recursion + 1))
149 bool ReadListValue(const Message* m, PickleIterator* iter, argument
152 if (!ReadParam(m, iter, &size))
157 if (!ReadValue(m, iter, &subval, recursion + 1))
165 bool ReadValue(const Message* m, PickleIterator* iter, base::Value** value, argument
173 if (!ReadParam(m, iter,
260 Read(const Message* m, PickleIterator* iter, param_type* r) argument
277 Read(const Message* m, PickleIterator* iter, param_type* r) argument
322 Read(const Message* m, PickleIterator* iter, param_type* r) argument
360 Read(const Message* m, PickleIterator* iter, param_type* r) argument
387 Read(const Message* m, PickleIterator* iter, param_type* r) argument
414 Read(const Message* m, PickleIterator* iter, param_type* r) argument
444 Read( const Message* m, PickleIterator* iter, param_type* r) argument
471 Read(const Message* m, PickleIterator* iter, param_type* r) argument
501 Read(const Message* m, PickleIterator* iter, param_type* r) argument
515 Read( const Message* m, PickleIterator* iter, param_type* r) argument
536 Read(const Message* m, PickleIterator* iter, param_type* r) argument
567 Read(const Message* m, PickleIterator* iter, param_type* p) argument
606 Read(const Message* m, PickleIterator* iter, param_type* r) argument
623 Read(const Message* m, PickleIterator* iter, param_type* r) argument
642 Read(const Message* m, PickleIterator* iter, param_type* r) argument
668 Read(const Message* m, PickleIterator* iter, param_type* r) argument
700 Read(const Message* m, PickleIterator* iter, param_type* r) argument
742 Read(const Message* m, PickleIterator* iter, Message* r) argument
770 Read(const Message* m, PickleIterator* iter, param_type* r) argument
787 Read(const Message* m, PickleIterator* iter, param_type* r) argument
811 Read(const Message* m, PickleIterator* iter, param_type* r) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppapi_message_utils.h74 PickleIterator iter(msg);
75 return IPC::ReadParam(&msg, &iter, a);
84 PickleIterator iter(msg);
85 return IPC::ReadParam(&msg, &iter, a) && IPC::ReadParam(&msg, &iter, b);
94 PickleIterator iter(msg);
95 return IPC::ReadParam(&msg, &iter, a) &&
96 IPC::ReadParam(&msg, &iter, b) &&
97 IPC::ReadParam(&msg, &iter, c);
106 PickleIterator iter(ms
[all...]
H A Dppapi_param_traits.cc41 PickleIterator* iter,
46 if (!m->ReadLength(iter, &size))
55 if (!ReadParam(m, iter, &cur))
84 PickleIterator* iter,
90 if (!ParamTraits<bool>::Read(m, iter, &result))
111 PickleIterator* iter,
114 if (!ReadParam(m, iter, &size))
121 if (!m->ReadBytes(iter, &data, size))
146 PickleIterator* iter,
150 if (!ParamTraits<PP_Instance>::Read(m, iter,
40 ReadVectorWithoutCopy(const Message* m, PickleIterator* iter, std::vector<T>* output) argument
83 Read(const Message* m, PickleIterator* iter, param_type* r) argument
110 Read(const Message* m, PickleIterator* iter, param_type* p) argument
145 Read(const Message* m, PickleIterator* iter, param_type* r) argument
171 Read(const Message* m, PickleIterator* iter, param_type* r) argument
191 Read( const Message* m, PickleIterator* iter, param_type* r) argument
212 Read(const Message* m, PickleIterator* iter, param_type* r) argument
248 Read(const Message* m, PickleIterator* iter, param_type* r) argument
306 Read( const Message* m, PickleIterator* iter, param_type* r) argument
352 Read( const Message* m, PickleIterator* iter, param_type* r) argument
395 Read(const Message* m, PickleIterator* iter, param_type* r) argument
424 Read( const Message* m, PickleIterator* iter, param_type* r) argument
461 Read( const Message* m, PickleIterator* iter, param_type* r) argument
492 Read(const Message* m, PickleIterator* iter, param_type* p) argument
527 Read(const Message* m, PickleIterator* iter, param_type* r) argument
549 Read(const Message* m, PickleIterator* iter, param_type* r) argument
596 Read(const Message* m, PickleIterator* iter, param_type* r) argument
647 Read( const Message* m, PickleIterator* iter, param_type* r) argument
[all...]
/external/chromium_org/third_party/leveldatabase/
H A Dchromium_logger.h30 for (int iter = 0; iter < 2; iter++) {
33 if (iter == 0) {
67 if (iter == 0) {
/external/chromium_org/third_party/leveldatabase/src/table/
H A Diterator_wrapper.h17 explicit IteratorWrapper(Iterator* iter): iter_(NULL) { argument
18 Set(iter);
21 Iterator* iter() const { return iter_; } function in class:leveldb::IteratorWrapper
23 // Takes ownership of "iter" and will delete it when destroyed, or
25 void Set(Iterator* iter) { argument
27 iter_ = iter;
40 // Methods below require iter() != NULL
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h912 L_SC void L_(init_iter)(L_(iter) *iter) {
913 iter->depth = ~0;
921 { if (AVL_READ_ERROR) { iter->depth = ~0; return; } }
932 L_(avl) *l_tree, L_(iter) *iter, AVL_KEY k, avl_search_type st) {
939 iter->tree_ = l_tree;
941 iter->depth = ~0;
963 iter->depth = d;
971 iter
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
H A Dcso_cache.c178 struct cso_hash_iter iter = cso_hash_first_node(hash); local
179 void *cso = cso_hash_take(hash, cso_hash_iter_key(iter));
211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key); local
212 while (!cso_hash_iter_is_null(iter)) {
213 void *iter_data = cso_hash_iter_data(iter);
219 iter = cso_hash_iter_next(iter);
229 struct cso_hash_iter iter = cso_find_state(sc, hash_key, type); local
230 while (!cso_hash_iter_is_null(iter)) {
231 void *iter_data = cso_hash_iter_data(iter);
267 struct cso_hash_iter iter; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
H A Dtranslate_cache.c55 struct cso_hash_iter iter = cso_hash_first_node(hash); local
56 while (!cso_hash_iter_is_null(iter)) {
57 struct translate *state = (struct translate*)cso_hash_iter_data(iter);
58 iter = cso_hash_iter_next(iter);
/external/chromium_org/ui/compositor/
H A Dlayer_animator_collection.cc47 for (std::set<scoped_refptr<LayerAnimator> >::iterator iter = list.begin();
48 iter != list.end();
49 ++iter) {
51 if (animators_.count(*iter) > 0)
52 (*iter)->Step(now);

Completed in 685 milliseconds

<<11121314151617181920>>