Searched refs:IteratorHasRoomFor (Results 1 - 5 of 5) sorted by relevance

/external/chromium/base/
H A Dpickle.cc115 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
132 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
148 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
165 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
179 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
193 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
207 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
222 if (!IteratorHasRoomFor(*iter, len))
241 if (!IteratorHasRoomFor(*iter, len * sizeof(wchar_t)))
257 if (!IteratorHasRoomFor(*ite
[all...]
H A Dpickle_unittest.cc197 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, 1));
199 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, 0));
200 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, 1));
201 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, -1));
202 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, sizeof(int) * 2));
203 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, (sizeof(int) * 2) + 1));
H A Dpickle.h163 bool IteratorHasRoomFor(const void* iter, int len) const { function in class:Pickle
/external/chromium/net/spdy/
H A Dspdy_frame_builder.cc40 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
54 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
70 if (!IteratorHasRoomFor(*iter, len))
85 if (!IteratorHasRoomFor(*iter, length))
H A Dspdy_frame_builder.h105 bool IteratorHasRoomFor(const void* iter, int len) const { function in class:spdy::SpdyFrameBuilder

Completed in 77 milliseconds