Searched refs:it (Results 51 - 75 of 4721) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/drive/
H A Dremove_stale_cache_files.cc17 scoped_ptr<ResourceMetadata::Iterator> it = resource_metadata->GetIterator(); local
18 for (; !it->IsAtEnd(); it->Advance()) {
19 const ResourceEntry& entry = it->GetValue();
25 FileError error = cache->Remove(it->GetID());
28 << it->GetID();
/external/chromium_org/chrome/browser/extensions/api/web_navigation/
H A Dframe_navigation_state.cc42 FrameHostToStateMap::const_iterator it = local
44 if (it == frame_host_state_map_.end() || it->second.error_occurred) {
47 return IsValidUrl(it->second.url);
89 for (std::set<content::RenderFrameHost*>::iterator it = frame_hosts_.begin();
90 it != frame_hosts_.end();) {
91 if ((*it)->GetRenderViewHost() != render_view_host ||
92 *it == frame_host_to_skip) {
93 ++it;
96 if (*it
105 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
119 FrameHostToStateMap::const_iterator it = local
137 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
147 FrameHostToStateMap::const_iterator it = local
155 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
165 FrameHostToStateMap::const_iterator it = local
173 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
183 FrameHostToStateMap::const_iterator it = local
191 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
203 FrameHostToStateMap::const_iterator it = local
211 FrameHostToStateMap::iterator it = frame_host_state_map_.find(frame_host); local
221 FrameHostToStateMap::const_iterator it = local
[all...]
/external/chromium_org/media/cast/net/rtp/
H A Dframer.cc62 FrameList::iterator it = frames_.find(frame_id); local
63 if (it == frames_.end()) {
68 it = retval.first;
72 if (!it->second->InsertPacket(payload_data, payload_size, rtp_header)) {
80 return it->second->Complete();
105 ConstFrameIterator it = frames_.find(frame_id); local
106 DCHECK(it != frames_.end());
107 if (it == frames_.end())
110 return it->second->AssembleEncodedFrame(frame);
132 FrameList::iterator it; local
153 FrameList::iterator it = frames_.begin(); local
169 FrameList::const_iterator it; local
182 FrameList::const_iterator it; local
200 FrameList::const_iterator it; local
219 FrameList::const_iterator it; local
239 FrameList::const_iterator it; local
255 FrameList::const_iterator it = frames_.find(frame_id); local
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
H A Dvec2-spec.js30 it("should return a 2 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0]); });
35 it("should return a 2 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
40 it("should return a 2 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2]); });
45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); });
46 it("should return out", function() { expect(result).toBe(out); });
51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2]); });
52 it("should return out", function() { expect(result).toBe(out); });
59 it("should place values into out", function() { expect(out).toBeEqualish([4, 6]); });
60 it("should return out", function() { expect(result).toBe(out); });
61 it("shoul
[all...]
H A Dquat-spec.js30 it("should return a 4 element array initialized to an identity quaternion", function() { expect(result).toBeEqualish([0, 0, 0, 1]); });
35 it("should return a 4 element array initialized to the values in quatA", function() { expect(result).toBeEqualish(quatA); });
40 it("should return a 4 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2, 3, 4]); });
45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
46 it("should return out", function() { expect(result).toBe(out); });
51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
52 it("should return out", function() { expect(result).toBe(out); });
57 it("should place values into out", function() { expect(result).toBeEqualish([0, 0, 0, 1]); });
58 it("should return out", function() { expect(result).toBe(out); });
63 it("shoul
[all...]
H A Dmat2-spec.js42 it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(result).toBeEqualish(identity); });
47 it("should return a 4 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
52 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
53 it("should return out", function() { expect(result).toBe(out); });
58 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
59 it("should return out", function() { expect(result).toBe(out); });
66 it("should place values into out", function() { expect(out).toBeEqualish([1, 3, 2, 4]); });
67 it("should return out", function() { expect(result).toBe(out); });
68 it("should not modify matA", function() { expect(matA).toBeEqualish([1, 2, 3, 4]); });
74 it("shoul
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_manager_impl.cc27 for (typename MapType::const_iterator it = socket_pools.begin();
28 it != socket_pools.end(); it++) {
29 list->Append(it->second->GetInfoAsValue(it->first.ToString(),
115 for (SSLSocketPoolMap::const_iterator it =
117 it != ssl_socket_pools_for_proxies_.end();
118 ++it)
119 it->second->FlushWithError(error);
121 for (HTTPProxySocketPoolMap::const_iterator it
221 SOCKSSocketPoolMap::const_iterator it = socks_socket_pools_.find(socks_proxy); local
258 HTTPProxySocketPoolMap::const_iterator it = local
337 SSLSocketPoolMap::const_iterator it = local
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Dpicasa_albums_indexer_unittest.cc44 AlbumImagesMap::const_iterator it; local
46 it = albums_images.find("e66fb059001aabcc69b262b7009fad90");
47 ASSERT_NE(albums_images.end(), it);
48 EXPECT_EQ(2u, it->second.size());
49 EXPECT_EQ(1u, it->second.count("InBoth.jpg"));
50 EXPECT_EQ(1u, it->second.count("InFirst.jpg"));
52 it = albums_images.find("18cb2df48aaa98e1c276b45cfcd81c95");
53 ASSERT_NE(albums_images.end(), it);
54 EXPECT_EQ(2u, it->second.size());
55 EXPECT_EQ(1u, it
102 AlbumImagesMap::const_iterator it; local
134 AlbumImagesMap::const_iterator it; local
[all...]
/external/oprofile/libutil++/
H A Dsparse_array.h29 typename container_type::const_iterator it = container.find(index); local
30 if (it != container.end())
31 return it->second;
50 typename container_type::const_iterator it = rhs.container.begin(); local
52 for ( ; it != it_end; it++)
53 container[it->first] += it->second;
64 typename container_type::const_iterator it = rhs.container.begin(); local
66 for ( ; it !
88 typename container_type::const_iterator it = container.begin(); local
[all...]
/external/chromium_org/extensions/common/
H A Dvalue_counter.cc29 for (EntryList::iterator it = entries_.begin(); it != entries_.end(); it++) {
30 (*it)->value()->GetType();
31 if ((*it)->value()->Equals(&value)) {
32 int remaining = (*it)->Decrement();
34 std::swap(*it, entries_.back());
48 for (EntryList::iterator it = entries_.begin(); it != entries_.end(); it
[all...]
/external/chromium_org/media/video/capture/win/
H A Dcapability_list_win.cc65 for (Capabilities::const_iterator it = capabilities_.begin();
66 it != capabilities_.end(); ++it) {
68 diff.capability = &(*it);
69 diff.diff_width = it->supported_format.frame_size.width() - requested_width;
71 it->supported_format.frame_size.height() - requested_height;
74 1000 * ((static_cast<float>(it->frame_rate_numerator) /
75 it->frame_rate_denominator) -
83 for (std::list<ResolutionDiff>::iterator it = diff_list.begin();
84 it !
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssGrammar.java34 CssTokens.TokenIterator it) {
36 for (; it.hasNext(); it.advance()) {
37 switch (it.type()) {
39 it.advance();
51 if (bracketDepth != 0) { it.advance(); }
67 CssTokens.TokenIterator it = tokens.iterator();
69 while (it.hasTokenAfterSpace()) {
71 if (it.type() != CssTokens.TokenType.IDENT) {
72 errorRecoveryUntilSemiOrCloseBracket(it);
33 errorRecoveryUntilSemiOrCloseBracket( CssTokens.TokenIterator it) argument
91 parsePropertyValue( CssTokens.TokenIterator it, PropertyHandler handler) argument
[all...]
/external/chromium_org/sync/test/
H A Dnull_directory_change_delegate.cc16 for (EntryKernelMutationMap::const_iterator it =
18 it != write_transaction_info.Get().mutations.Get().end(); ++it) {
19 entries_changed->push_back(it->first);
27 for (EntryKernelMutationMap::const_iterator it =
29 it != write_transaction_info.Get().mutations.Get().end(); ++it) {
30 entries_changed->push_back(it->first);
/external/chromium_org/chrome/browser/extensions/
H A Dglobal_shortcut_listener.cc31 AcceleratorMap::const_iterator it = accelerator_map_.find(accelerator);
32 if (it != accelerator_map_.end()) {
56 AcceleratorMap::iterator it = accelerator_map_.find(accelerator);
58 DCHECK(it != accelerator_map_.end());
60 DCHECK(it->second == observer);
63 accelerator_map_.erase(it);
73 AcceleratorMap::iterator it = accelerator_map_.begin();
74 while (it != accelerator_map_.end()) {
75 if (it->second == observer) {
76 AcceleratorMap::iterator to_remove = it
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dmulti_client_status_change_checker.cc26 for (std::vector<ProfileSyncService*>::iterator it = services_.begin();
27 it != services_.end(); ++it) {
28 obs.Add(*it);
/external/chromium_org/chrome/browser/ui/ash/
H A Dash_util.cc26 for (aura::Window::Windows::const_iterator it = root_windows.begin();
27 it != root_windows.end(); ++it) {
28 if ((*it)->Contains(native_view))
/external/chromium_org/device/hid/
H A Dhid_service_unittest.cc23 for (std::vector<HidDeviceInfo>::iterator it = devices.begin();
24 it != devices.end();
25 ++it) {
26 ASSERT_TRUE(it->device_id != kInvalidHidDeviceId);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_messaging_interface.cc14 for (std::vector<PP_Var>::iterator it = messages.begin();
15 it != messages.end(); ++it) {
16 manager_->Release(*it);
/external/chromium_org/net/cert/
H A Dpem_tokenizer.cc45 std::vector<PEMType>::const_iterator it;
46 // Check to see if it is of an acceptable block type.
47 for (it = block_types_.begin(); it != block_types_.end(); ++it) {
48 if (!str_.substr(pos_).starts_with(it->header))
53 StringPiece::size_type footer_pos = str_.find(it->footer, pos_);
60 StringPiece::size_type data_begin = pos_ + it->header.size();
61 pos_ = footer_pos + it->footer.size();
62 block_type_ = it
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastream.cc36 typename V::iterator it = vector->begin(); local
37 for (; it != vector->end(); ++it) {
38 if ((*it)->id() == track_id) {
42 return it;
74 AudioTrackVector::iterator it = FindTrack(&audio_tracks_, track_id); local
75 if (it == audio_tracks_.end())
77 return *it;
82 VideoTrackVector::iterator it = FindTrack(&video_tracks_, track_id); local
83 if (it
90 typename TrackVector::iterator it = FindTrack(tracks, track->id()); local
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer_tree_owner.cc16 for (std::vector<Layer*>::const_iterator it = children.begin();
17 it != children.end();
18 ++it) {
19 Layer* child = *it;
/external/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp50 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
52 << it->second;
53 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
55 << it->second;
56 for (const_iterator it = remark_begin(), ie = remark_end(); it !
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCollectionUtils.java30 for (Iterator it = c.iterator(); it.hasNext();) {
31 Object value = (Object)it.next();
43 for (Iterator it = source.keySet().iterator(); it.hasNext();) {
44 Object key = it.next();
50 Iterator it = c.iterator();
51 while (it.hasNext()) {
52 if (!p.evaluate(it.next())) {
53 it
[all...]
/external/ceres-solver/internal/ceres/
H A Dsingle_linkage_clustering.cc53 for (HashSet<int>::const_iterator it = vertices.begin();
54 it != vertices.end();
55 ++it) {
56 (*membership)[*it] = *it;
95 for (HashMap<int, int>::iterator it = membership->begin();
96 it != membership->end();
97 ++it) {
98 it->second = FindConnectedComponent(it
[all...]
/external/chromium_org/cc/test/
H A Dfake_content_layer_client.cc27 for (RectPaintVector::const_iterator it = draw_rects_.begin();
28 it != draw_rects_.end(); ++it) {
29 const gfx::RectF& draw_rect = it->first;
30 const SkPaint& paint = it->second;
38 for (BitmapVector::const_iterator it = draw_bitmaps_.begin();
39 it != draw_bitmaps_.end(); ++it) {
40 canvas->drawBitmap(it->bitmap, it
[all...]

Completed in 1060 milliseconds

1234567891011>>