Searched defs:list_ (Results 51 - 52 of 52) sorted by relevance

123

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-pp.c1129 free_tlist(Token * list_) argument
1131 while (list_)
1133 list_ = delete_Token(list_);
1141 free_llist(Line * list_) argument
1144 while (list_)
1146 l = list_;
1147 list_ = list_->next;
1277 Token *list_ local
[all...]
/external/chromium_org/v8/src/
H A Dast.h267 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {}
269 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); }
270 void Clear() { list_.Clear(); }
271 void Sort() { list_.Sort(); }
273 bool is_empty() const { return list_.is_empty(); }
274 int length() const { return list_.length(); }
285 for (int i = list_.length() - 1; i >= 0; i--) {
287 list_.RemoveElement(list_.at(i));
293 list_
305 SmallPointerList<Map*> list_; member in class:v8::internal::FINAL
[all...]

Completed in 286 milliseconds

123