Home
last modified time | relevance | path

Searched refs:count_ (Results 1 – 10 of 10) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_util.h149 Vector() : items_(0), count_(0), capacity_(0) {} in Vector()
154 bool IsEmpty() const { return count_ == 0; } in IsEmpty()
156 void PushBack(T item) { InsertAt(static_cast<int>(count_), item); } in PushBack()
165 T result = items_[count_ - 1]; in PopLast()
166 Resize(count_ - 1); in PopLast()
184 size_t GetCount() const { return count_; } in GetCount()
192 size_t count_; variable
198 for (size_t n = 0; n < count_; ++n) { in IndexOf()
207 if (count_ >= capacity_) in InsertAt()
213 if (n > count_) in InsertAt()
[all …]
Dcrazy_linker_library_list.h98 size_t count_; variable
Dcrazy_linker_library_list.cpp52 LibraryList::LibraryList() : head_(0), count_(0), has_error_(false) { in LibraryList()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill/
Duninitialized_fill.pass.cpp22 static int count_; member
25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} in B()
29 int B::count_ = 0; member in B
46 B::count_ = 0; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
Duninitialized_copy_n.pass.cpp22 static int count_; member
25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} in B()
29 int B::count_ = 0; member in B
47 B::count_ = 0; in main()
Duninitialized_copy.pass.cpp22 static int count_; member
25 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} in B()
29 int B::count_ = 0; member in B
47 B::count_ = 0; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill.n/
Duninitialized_fill_n.pass.cpp21 static int count_; member
24 B(const B& b) {if (++count_ == 3) throw 1; data_ = b.data_;} in B()
28 int B::count_ = 0; member in B
45 B::count_ = 0; in main()
/ndk/sources/host-tools/ndk-stack/elff/
Ddwarf_defs.h722 count_(0) { in DwarfAbbrDieArray()
751 if (num <= count_) { in add()
757 assert(num == (count_ + 1)); in add()
758 if (num != (count_ + 1)) { in add()
780 memcpy(new_array, array_, count_ * sizeof(const Dwarf_Abbr_DIE*)); in add()
790 count_++; in add()
812 assert(num != 0 && num <= count_); in get()
813 if (num != 0 && num <= count_) { in get()
833 const Dwarf_Abbr_DIE* cur_abbr = get(count_); in cache_to()
844 while (num > count_) { in cache_to()
[all …]
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-param-test_test.cc768 SeparateInstanceTest() : count_(0) {} in SeparateInstanceTest()
779 int count_; member in SeparateInstanceTest
785 EXPECT_EQ(0, count_++); in TEST_P()
851 ParameterizedDerivedTest() : count_(0) { } in ParameterizedDerivedTest()
852 int count_; member in ParameterizedDerivedTest
864 EXPECT_EQ(0, count_++); in TEST_P()
Dgtest_unittest.cc4943 TestLifeCycleTest() { count_++; } in TestLifeCycleTest()
4947 ~TestLifeCycleTest() { count_--; } in ~TestLifeCycleTest()
4950 int count() const { return count_; } in count()
4953 static int count_; member in __anoncff51c580311::TestLifeCycleTest
4956 int TestLifeCycleTest::count_ = 0; member in __anoncff51c580311::TestLifeCycleTest