Searched refs:it (Results 126 - 150 of 4721) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A DgUnitTestResult.stg35 <failure:{<it.header>
36 expected: <it.expectedResult>
37 actual: <it.actualResult>
42 <invalid:{<it.header>
43 invalid input: <it.actual>
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DDescendantInvalidationSet.cpp59 for (WillBeHeapHashSet<AtomicString>::const_iterator it = m_classes->begin(); it != m_classes->end(); ++it) {
60 if (classNames.contains(*it))
66 for (WillBeHeapHashSet<AtomicString>::const_iterator it = m_attributes->begin(); it != m_attributes->end(); ++it) {
67 if (element.hasAttribute(*it))
94 for (WillBeHeapHashSet<AtomicString>::const_iterator it = other.m_classes->begin(); it !
[all...]
/external/chromium_org/third_party/webrtc/
H A Dcommon.h55 for (OptionMap::iterator it = options_.begin();
56 it != options_.end(); ++it) {
57 delete it->second;
103 OptionMap::const_iterator it = options_.find(identifier<T>()); local
104 if (it != options_.end()) {
105 const T* t = static_cast<Option<T>*>(it->second)->value;
115 BaseOption*& it = options_[identifier<T>()]; local
116 delete it;
117 it
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddelay_peak_detector.cc45 std::list<Peak>::const_iterator it; local
46 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
47 max_height = std::max(max_height, it->peak_height_packets);
54 std::list<Peak>::const_iterator it; local
55 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
56 max_period = std::max(max_period, it
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dframedrop_primitives.cc285 "useful to fill that gap with and it is impossible to detect it without "
291 for (std::vector<Frame*>::const_iterator it = frames.begin();
292 it != frames.end(); ++it) {
293 if ((*it)->dropped_at_render) {
351 std::map<unsigned int, int64_t>::const_iterator it; local
352 for (it = sent_frames_.begin(); it != sent_frames_.end(); ++it) {
[all...]
/external/chromium_org/sync/syncable/
H A Dsyncable_delete_journal.cc39 JournalIndex::iterator it = delete_journals_.find(&entry); local
42 if (it == delete_journals_.end()) {
57 if (it != delete_journals_.end()) {
58 delete_journals_to_purge_.insert((*it)->ref(META_HANDLE));
59 delete *it;
60 delete_journals_.erase(it);
71 for (JournalIndex::const_iterator it = delete_journals_.begin();
72 it != delete_journals_.end(); ++it) {
73 if ((*it)
84 JournalIndex::iterator it = delete_journals_.begin(); local
103 JournalIndex::iterator it = delete_journals_.begin(); local
[all...]
/external/chromium_org/net/http/
H A Dhttp_request_headers.cc74 HeaderVector::const_iterator it = FindHeader(key); local
75 if (it == headers_.end())
77 out->assign(it->value);
89 HeaderVector::iterator it = FindHeader(key); local
90 if (it != headers_.end())
91 it->value.assign(value.data(), value.size());
100 HeaderVector::iterator it = FindHeader(key); local
101 if (it == headers_.end())
106 HeaderVector::iterator it = FindHeader(key); local
107 if (it !
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema_map.cc27 DomainMap::const_iterator it = map_.find(domain); local
28 return it == map_.end() ? NULL : &it->second;
35 ComponentMap::const_iterator it = map->find(ns.component_id);
36 return it == map->end() ? NULL : &it->second;
40 for (PolicyBundle::iterator it = bundle->begin(); it != bundle->end(); ++it) {
43 if (it
[all...]
H A Dpolicy_service.cc33 for (CallbackMap::iterator it = callback_map_.begin();
34 it != callback_map_.end(); ++it) {
35 const base::Value* prev = previous.GetValue(it->first);
36 const base::Value* cur = current.GetValue(it->first);
38 it->second.Run(prev, cur);
/external/chromium_org/cc/surfaces/
H A Dsurface_manager.cc29 SurfaceMap::iterator it = surface_map_.find(surface_id); local
30 DCHECK(it != surface_map_.end());
31 surface_map_.erase(it);
36 SurfaceMap::iterator it = surface_map_.find(surface_id); local
37 if (it == surface_map_.end())
39 return it->second;
H A Dsurface_factory.cc30 OwningSurfaceMap::iterator it = surface_map_.find(surface_id); local
31 DCHECK(it != surface_map_.end());
32 DCHECK(it->second->factory() == this);
34 surface_map_.erase(it);
40 OwningSurfaceMap::iterator it = surface_map_.find(surface_id); local
41 DCHECK(it != surface_map_.end());
42 DCHECK(it->second->factory() == this);
43 it->second->QueueFrame(frame.Pass(), callback);
50 OwningSurfaceMap::iterator it = surface_map_.find(surface_id); local
51 if (it
[all...]
/external/chromium_org/chromecast/media/cma/base/
H A Dbuffering_controller.cc44 // Currently, we set it to one third of the high level threshold:
54 for (StreamList::iterator it = stream_list_.begin();
55 it != stream_list_.end(); ++it) {
56 (*it)->OnConfigChanged();
83 for (StreamList::iterator it = stream_list_.begin();
84 it != stream_list_.end(); ++it) {
85 (*it)->SetMediaTime(time);
91 for (StreamList::const_iterator it
[all...]
/external/chromium_org/net/quic/test_tools/
H A Ddelayed_verify_strike_register_client.cc45 for (vector<VerifyArgs>::const_iterator it = pending.begin(),
46 end = pending.end(); it != end; ++it) {
48 it->nonce, it->now, it->cb);
/external/chromium_org/sync/engine/
H A Dcommit_processor.cc27 for (ModelTypeSet::Iterator it = commit_types.First();
28 it.Good(); it.Inc()) {
30 commit_contributor_map_->find(it.Get());
33 << "Could not find requested type " << ModelTypeToString(it.Get())
42 contributions->insert(std::make_pair(it.Get(), contribution.release()));
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementObserver.cpp50 ElementObserverMap::iterator it = elementObservers().find(element); local
51 if (it == elementObservers().end())
53 it->value->elementDidFinishParsingChildren(element);
58 ElementObserverMap::iterator it = elementObservers().find(element); local
59 if (it == elementObservers().end())
61 it->value->elementWasDestroyed(element);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAllowList.java82 for ( Iterator<Allow> it = this.hlist.iterator(); it.hasNext();) {
83 Allow a = (Allow)it.next();
106 ListIterator<String> it = methods.listIterator();
107 while (it.hasNext()) {
109 allow.setMethod((String) it.next());
/external/eigen/Eigen/src/SparseCore/
H A DTriangularSolver.h40 for(typename Lhs::InnerIterator it(lhs, i); it; ++it)
42 lastVal = it.value();
43 lastIndex = it.index();
73 typename Lhs::InnerIterator it(lhs, i);
74 while(it && it.index()<i)
75 ++it;
78 eigen_assert(it
[all...]
/external/chromium_org/content/browser/media/capture/
H A Daudio_mirroring_manager.cc42 for (StreamRoutes::const_iterator it = routes_.begin();
43 it != routes_.end(); ++it) {
44 DCHECK_NE(diverter, it->diverter);
62 // diverted, it is stopped.
63 for (StreamRoutes::iterator it = routes_.begin(); it != routes_.end(); ++it) {
64 if (it->diverter == diverter) {
65 ChangeRoute(&(*it), NUL
[all...]
/external/chromium_org/ash/
H A Ddebug.cc19 for (aura::Window::Windows::iterator it = root_windows.begin();
20 it != root_windows.end(); ++it) {
21 ui::Compositor* compositor = (*it)->GetHost()->compositor();
34 for (aura::Window::Windows::iterator it = root_windows.begin();
35 it != root_windows.end(); ++it) {
36 ui::Compositor* compositor = (*it)->GetHost()->compositor();
49 for (aura::Window::Windows::iterator it = root_windows.begin();
50 it !
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_working_set.h35 CacheMap::iterator it = caches_.find(id); local
36 return (it != caches_.end()) ? it->second : NULL;
42 GroupMap::iterator it = groups_.find(manifest_url); local
43 return (it != groups_.end()) ? it->second : NULL;
53 ResponseInfoMap::iterator it = response_infos_.find(id); local
54 return (it != response_infos_.end()) ? it->second : NULL;
63 GroupsByOriginMap::iterator it local
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dmock_source.cc29 std::map<std::string, std::string>::const_iterator it = data_.find(key); local
30 bool success = it != data_.end();
31 data_ready(success, key, success ? new std::string(it->second) : NULL);
/external/chromium_org/sync/sessions/
H A Dnudge_tracker.cc62 for (ModelTypeSet::Iterator it = protocol_types.First(); it.Good();
63 it.Inc()) {
64 type_trackers_.insert(std::make_pair(it.Get(), new DataTypeTracker()));
74 for (TypeTrackerMap::const_iterator it = type_trackers_.begin();
75 it != type_trackers_.end(); ++it) {
76 if (it->second->IsSyncRequired()) {
91 for (TypeTrackerMap::const_iterator it = type_trackers_.begin();
92 it !
[all...]
/external/chromium_org/ash/high_contrast/
H A Dhigh_contrast_controller.cc27 for (aura::Window::Windows::iterator it = root_window_list.begin();
28 it != root_window_list.end(); it++) {
29 UpdateDisplay(*it);
/external/chromium_org/base/test/
H A Dmultiprocess_test_android.cc42 for (FileHandleMappingVector::const_iterator it = fds_to_remap->begin();
43 it != fds_to_remap->end(); ++it) {
44 fds_to_keep_open.insert(it->first);
54 for (FileHandleMappingVector::const_iterator it = fds_to_remap->begin();
55 it != fds_to_remap->end(); ++it) {
56 int old_fd = it->first;
57 int new_fd = it->second;
/external/chromium_org/cc/output/
H A Doverlay_processor.cc36 for (StrategyList::iterator it = strategies_.begin(); it != strategies_.end();
37 ++it) {
38 if ((*it)->Attempt(render_passes_in_draw_order, candidate_list))

Completed in 793 milliseconds

1234567891011>>