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

  /external/chromium/base/
pickle.cc 105 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
122 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
144 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
161 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
175 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
189 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
203 if (!IteratorHasRoomFor(*iter, sizeof(*result)))
218 if (!IteratorHasRoomFor(*iter, len))
237 if (!IteratorHasRoomFor(*iter, len * sizeof(wchar_t)))
253 if (!IteratorHasRoomFor(*iter, len * sizeof(char16))
    [all...]
pickle_unittest.cc 147 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, 1));
149 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, 0));
150 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, 1));
151 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, -1));
152 EXPECT_TRUE(pickle.IteratorHasRoomFor(iter, sizeof(int) * 2));
153 EXPECT_FALSE(pickle.IteratorHasRoomFor(iter, (sizeof(int) * 2) + 1));
pickle.h 162 bool IteratorHasRoomFor(const void* iter, int len) const {
  /external/chromium/net/flip/
flip_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))
flip_frame_builder.h 108 bool IteratorHasRoomFor(const void* iter, int len) const {

Completed in 2827 milliseconds