HomeSort by relevance Sort by last modified time
    Searched refs:IteratorHasRoomFor (Results 1 - 5 of 5) sorted by null

  /external/chromium/net/spdy/
spdy_frame_builder.cc 40 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
54 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
70 if (!IteratorHasRoomFor(*iter, len))
85 if (!IteratorHasRoomFor(*iter, length))
spdy_frame_builder.h 105 bool IteratorHasRoomFor(const void* iter, int len) const {
  /external/chromium/base/
pickle.cc 115 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(*iter, len * sizeof(char16))
    [all...]
pickle_unittest.cc 197 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));
pickle.h 163 bool IteratorHasRoomFor(const void* iter, int len) const {

Completed in 206 milliseconds