HomeSort by relevance Sort by last modified time
    Searched defs:collection_ (Results 1 - 4 of 4) sorted by null

  /external/webrtc/webrtc/base/
scopedptrcollection_unittest.cc 40 collection_(new ScopedPtrCollection<InstanceCounter>()) {
44 scoped_ptr<ScopedPtrCollection<InstanceCounter> > collection_; member in class:rtc::ScopedPtrCollectionTest
48 EXPECT_EQ(0u, collection_->collection().size());
52 collection_->PushBack(new InstanceCounter(&num_instances_));
54 EXPECT_EQ(static_cast<size_t>(kNum), collection_->collection().size());
56 collection_.reset();
62 collection_->PushBack(ic);
63 EXPECT_EQ(1u, collection_->collection().size());
64 collection_->Remove(ic);
66 collection_.reset()
    [all...]
scopedptrcollection.h 32 for (typename VectorT::iterator it = collection_.begin();
33 it != collection_.end(); ++it) {
38 const VectorT& collection() const { return collection_; }
40 collection_.reserve(size);
43 collection_.push_back(t);
48 collection_.erase(std::remove(collection_.begin(), collection_.end(), t),
49 collection_.end());
53 VectorT collection_; member in class:rtc::ScopedPtrCollection
    [all...]
  /art/dexlayout/
dex_ir.h 129 collection_.push_back(std::unique_ptr<T>(object));
131 uint32_t Size() const { return collection_.size(); }
132 std::vector<std::unique_ptr<T>>& Collection() { return collection_; }
135 std::vector<std::unique_ptr<T>> collection_; member in class:art::dex_ir::CollectionVector
146 auto it = collection_.find(offset);
147 return it != collection_.end() ? it->second.get() : nullptr;
152 auto it = collection_.emplace(offset, std::unique_ptr<T>(object));
156 uint32_t Size() const { return collection_.size(); }
157 std::map<uint32_t, std::unique_ptr<T>>& Collection() { return collection_; }
160 std::map<uint32_t, std::unique_ptr<T>> collection_; member in class:art::dex_ir::CollectionMap
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/
htmlunit-2.14.jar 

Completed in 347 milliseconds