Searched defs:list_ (Results 1 - 25 of 52) sorted by last modified time

123

/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h61 mutable std::list<ListItem*> list_; member in class:webrtc::ListWrapper
H A Dlist_unittest.cc44 return list_.GetSize();
51 return list_.Empty();
54 return list_.First();
57 return list_.Last();
60 return list_.Next(item);
63 return list_.Previous(item);
68 const int retval = list_.Insert(existing_previous_item, new_item);
77 const int retval = list_.InsertBefore(existing_next_item, new_item);
93 ListWrapper list_; member in class:ListWrapperSimple
124 return list_
[all...]
/external/openssl/crypto/conf/
H A Dconf_mod.c580 int CONF_parse_list(const char *list_, int sep, int nospc, argument
586 if(list_ == NULL)
592 lstart = list_;
/external/deqp/executor/tools/
H A DxeExtractShaderPrograms.cpp96 explicit StackEntry (const xe::ri::List* list_) : list(list_), curNdx(0) {} argument
/external/deqp/modules/gles2/functional/
H A Des2fBufferWriteTests.cpp79 DataStoreSpecVecBuilder (std::vector<DataStoreSpec>& list_) argument
80 : list(list_)
95 RangeVecBuilder (std::vector<tcu::IVec2>& list_) argument
96 : list(list_)
/external/deqp/modules/gles3/functional/
H A Des3fBufferWriteTests.cpp79 DataStoreSpecVecBuilder (std::vector<DataStoreSpec>& list_) argument
80 : list(list_)
95 RangeVecBuilder (std::vector<tcu::IVec2>& list_) argument
96 : list(list_)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h121 : list_(list), current_(list->first_) { }
129 IntrusiveList<Item> *list_; member in class:__sanitizer::IntrusiveList::Iterator
H A Dsanitizer_quarantine.h120 list_.clear();
128 if (list_.empty() || list_.back()->count == QuarantineBatch::kSize) {
132 QuarantineBatch *b = list_.back();
139 list_.append_back(&c->list_);
145 list_.push_back(b);
150 if (list_.empty())
152 QuarantineBatch *b = list_.front();
153 list_
159 IntrusiveList<QuarantineBatch> list_; member in class:__sanitizer::QuarantineCache
[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...]
H A Dparser.h107 BufferedZoneList() : list_(NULL), last_(NULL) {}
114 if (list_ == NULL) {
115 list_ = new(zone) ZoneList<T*>(initial_size, zone);
117 list_->Add(last_, zone);
130 if ((list_ != NULL) && (list_->length() > 0))
131 last_ = list_->RemoveLast();
139 if (list_ == NULL) {
143 if (i == list_->length()) {
147 return list_
174 ZoneList<T*>* list_; member in class:v8::internal::BufferedZoneList
[all...]
/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/third_party/webrtc/base/
H A Dflags.cc108 Flag* FlagList::list_ = NULL; member in class:rtc::FlagList
112 list_ = NULL;
119 for (Flag* f = list_; f != NULL; f = f->next()) {
132 Flag* f = list_;
261 flag->next_ = list_;
262 list_ = flag;
H A Dflags.h195 static Flag* list() { return list_; }
243 static Flag* list_; member in class:rtc::FlagList
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatstypes.h311 const_iterator begin() const { return list_.begin(); }
312 const_iterator end() const { return list_.end(); }
318 const StatsReport* ret = &(*list_.insert(StatsReportCopyable(id)).first);
328 list_.erase(id);
341 Container list_; member in class:webrtc::StatsSet
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dskiplist.h89 const SkipList* list_; member in class:leveldb::SkipList::Iterator
189 list_ = list;
215 node_ = list_->FindLessThan(node_->key);
216 if (node_ == list_->head_) {
223 node_ = list_->FindGreaterOrEqual(target, NULL);
228 node_ = list_->head_->Next(0);
233 node_ = list_->FindLast();
234 if (node_ == list_->head_) {
H A Dskiplist_test.cc211 SkipList<Key, Comparator> list_; member in class:leveldb::ConcurrentTest
214 ConcurrentTest() : list_(Comparator(), &arena_) { }
221 list_.Insert(key);
233 SkipList<Key, Comparator>::Iterator iter(&list_);
H A Dsnapshot.h27 SnapshotList* list_; // just for sanity checks member in class:leveldb::SnapshotImpl
33 list_.prev_ = &list_;
34 list_.next_ = &list_;
37 bool empty() const { return list_.next_ == &list_; }
38 SnapshotImpl* oldest() const { assert(!empty()); return list_.next_; }
39 SnapshotImpl* newest() const { assert(!empty()); return list_.prev_; }
44 s->list_
61 SnapshotImpl list_; member in class:leveldb::SnapshotList
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache.cc55 HandleTable() : length_(0), elems_(0), list_(NULL) { Resize(); }
56 ~HandleTable() { delete[] list_; }
93 LRUHandle** list_; member in class:leveldb::__anon12466::HandleTable
99 LRUHandle** ptr = &list_[hash & (length_ - 1)];
116 LRUHandle* h = list_[i];
128 delete[] list_;
129 list_ = new_list;
/external/chromium_org/testing/gtest/test/
H A Dgtest-port_test.cc1186 static std::vector<DestructorCall*>& List() { return *list_; }
1189 for (size_t i = 0; i < list_->size(); ++i) {
1190 delete list_->at(i);
1192 list_->clear();
1200 static std::vector<DestructorCall*>* const list_; member in class:testing::internal::DestructorCall::std
1205 std::vector<DestructorCall*>* const DestructorCall::list_ = member in class:testing::internal::std::DestructorCall
/external/chromium_org/tools/gn/
H A Dsubstitution_list.h30 const std::vector<SubstitutionPattern>& list() const { return list_; }
41 std::vector<SubstitutionPattern> list_; member in class:SubstitutionList
/external/chromium_org/ui/events/platform/
H A Dplatform_event_source_unittest.cc81 list_(list),
101 list_->push_back(id_);
107 std::vector<int>* list_; member in class:ui::TestPlatformEventDispatcher
117 : id_(id), list_(list) {
127 list_->push_back(id_);
134 std::vector<int>* list_; member in class:ui::TestPlatformEventObserver
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.h80 int freelist_length(size_t cl) const { return list_[cl].length(); }
138 void* list_; // Linked list of nodes member in class:tcmalloc::ThreadCache::FreeList
159 list_ = NULL;
193 return list_ == NULL;
201 FL_Push(&list_, ptr);
206 ASSERT(list_ != NULL);
209 return FL_Pop(&list_);
213 if (list_ == NULL) return NULL;
214 return FL_Next(list_);
218 FL_PushRange(&list_, star
325 FreeList list_[kNumClasses]; // Array indexed by size-class member in class:tcmalloc::ThreadCache
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.h86 int freelist_length(size_t cl) const { return list_[cl].length(); }
133 void* list_; // Linked list of nodes member in class:tcmalloc::ThreadCache::FreeList
154 list_ = NULL;
188 return list_ == NULL;
196 SLL_Push(&list_, ptr);
201 ASSERT(list_ != NULL);
204 return SLL_Pop(&list_);
208 return SLL_Next(&list_);
212 SLL_PushRange(&list_, start, end);
217 SLL_PopRange(&list_,
302 FreeList list_[kNumClasses]; // Array indexed by size-class member in class:tcmalloc::ThreadCache
[all...]
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_safe_queue.h34 list_.push_back(item);
44 while (list_.empty()) pthread_cond_wait(&cond_, lock_.mutex());
47 if (list_.empty()) return NULL;
49 T* item = list_.front();
50 list_.pop_front();
55 std::list<T*> list_; member in class:sdk_util::ThreadSafeQueue
/external/chromium_org/net/base/
H A Dlinked_hash_map.h45 linked_hash_map() : map_(), list_() {
51 return list_.begin();
54 return list_.begin();
59 return list_.end();
62 return list_.end();
68 return list_.rbegin();
71 return list_.rbegin();
76 return list_.rend();
79 return list_.rend();
86 return list_
229 ListType list_; member in class:linked_hash_map
[all...]

Completed in 548 milliseconds

123