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

  /external/gtest/src/
gtest-test-part.cc 67 : list_(new internal::List<TestPartResult>) {
72 delete list_;
77 list_->PushBack(result);
87 const internal::ListNode<TestPartResult>* p = list_->Head();
97 return list_->size();
  /external/chromium/base/
observer_list.h 116 : list_(list),
121 ++list_.notify_depth_;
125 if (--list_.notify_depth_ == 0)
126 list_.Compact();
130 ListType& observers = list_.observers_;
139 const ObserverList<ObserverType>& list_; member in class:ObserverList::Iterator
observer_list_unittest.cc 40 : list_(list), doomed_(doomed) { }
43 list_->RemoveObserver(doomed_);
46 ObserverList<Foo>* list_; member in class:__anon2367::Disrupter
53 : list_(list), doomed_(doomed) { }
56 list_->RemoveObserver(doomed_);
59 ObserverListThreadSafe<Foo>* list_; member in class:__anon2367::ThreadSafeDisrupter
95 : list_(list),
131 list_->AddObserver(this);
136 list_->Notify(&Foo::Observe, 10);
157 list_->RemoveObserver(this)
162 ObserverListThreadSafe<Foo>* list_; member in class:__anon2367::AddRemoveThread
    [all...]
values.cc 660 for (ValueVector::iterator i(list_.begin()); i != list_.end(); ++i)
662 list_.clear();
669 if (index >= list_.size()) {
671 while (index > list_.size())
675 DCHECK(list_[index] != in_value);
676 delete list_[index];
677 list_[index] = in_value;
683 if (index >= list_.size())
687 *out_value = list_[index]
    [all...]
values.h 353 size_t GetSize() const { return list_.size(); }
356 bool empty() const { return list_.empty(); }
405 ListValue::iterator begin() { return list_.begin(); }
406 ListValue::iterator end() { return list_.end(); }
408 ListValue::const_iterator begin() const { return list_.begin(); }
409 ListValue::const_iterator end() const { return list_.end(); }
412 ValueVector list_; member in class:ListValue
  /external/qemu/android/utils/
reflist.h 100 #define AREFLIST_FOREACH(list_,item_,statement_) \
101 ({ ARefList* _reflist = (list_); \
  /external/gtest/include/gtest/
gtest-test-part.h 141 internal::List<TestPartResult>* const list_; member in class:testing::TestPartResultArray::internal
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-spi.h 124 internal::List<TestPartResult>* const list_; member in class:testing::TestPartResultArray::internal
gtest.cc 445 : list_(new internal::List<TestPartResult>) {
450 delete list_;
455 list_->PushBack(result);
465 const internal::ListNode<TestPartResult>* p = list_->Head();
475 return list_->size();
    [all...]
  /external/kernel-headers/original/linux/
skbuff.h 556 * @list_: list to peek at
567 static inline struct sk_buff *skb_peek(struct sk_buff_head *list_)
569 struct sk_buff *list = ((struct sk_buff *)list_)->next;
570 if (list == (struct sk_buff *)list_)
577 * @list_: list to peek at
588 static inline struct sk_buff *skb_peek_tail(struct sk_buff_head *list_)
590 struct sk_buff *list = ((struct sk_buff *)list_)->prev;
591 if (list == (struct sk_buff *)list_)
598 * @list_: list to measure
602 static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
    [all...]
  /external/v8/src/
jsregexp.h 497 SiblingList() : list_(NULL) { }
499 return list_ == NULL ? 0 : list_->length();
502 if (list_ == NULL) {
503 list_ = new ZoneList<RegExpNode*>(2);
504 list_->Add(parent);
507 void Add(RegExpNode* node) { list_->Add(node); }
508 RegExpNode* Get(int index) { return list_->at(index); }
510 ZoneList<RegExpNode*>* list_; member in class:v8::internal::SiblingList
    [all...]
parser.cc 332 list_(NULL), last_(NULL) {}
339 if (list_ == NULL) {
340 list_ = new ZoneList<T*>(initial_size);
342 list_->Add(last_);
355 if (list_ != NULL && list_->length() > 0)
356 last_ = list_->RemoveLast();
364 if (list_ == NULL) {
368 if (i == list_->length()) {
372 return list_->at(i)
399 ZoneList<T*>* list_; member in class:v8::internal::BufferedZoneList
784 ZoneList<T*>* list_; member in class:v8::internal::ZoneListWrapper
    [all...]
  /external/openssl/crypto/conf/
conf_mod.c 580 int CONF_parse_list(const char *list_, int sep, int nospc,
586 if(list_ == NULL)
592 lstart = list_;
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp     [all...]
  /external/v8/src/mips/
simulator-mips.cc 529 next_(list_) {
530 list_ = this;
542 for (current = list_; current != NULL; current = current->next_) {
560 static Redirection* list_; member in class:assembler::mips::Redirection
564 Redirection* Redirection::list_ = NULL; member in class:assembler::mips::Redirection
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 486 next_(list_) {
487 list_ = this;
499 for (current = list_; current != NULL; current = current->next_) {
517 static Redirection* list_; member in class:assembler::arm::Redirection
521 Redirection* Redirection::list_ = NULL; member in class:assembler::arm::Redirection
    [all...]

Completed in 134 milliseconds