/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_util.h | 149 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 …]
|
D | crazy_linker_library_list.h | 98 size_t count_; variable
|
D | crazy_linker_library_list.cpp | 52 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/ |
D | uninitialized_fill.pass.cpp | 22 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/ |
D | uninitialized_copy_n.pass.cpp | 22 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()
|
D | uninitialized_copy.pass.cpp | 22 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/ |
D | uninitialized_fill_n.pass.cpp | 21 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/ |
D | dwarf_defs.h | 722 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/ |
D | gtest-param-test_test.cc | 768 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()
|
D | gtest_unittest.cc | 4943 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
|