Searched refs:Contains (Results 1 - 25 of 58) sorted by relevance

123

/art/runtime/
H A Dlinear_alloc.cc51 bool LinearAlloc::Contains(void* ptr) const { function in class:art::LinearAlloc
53 return allocator_.Contains(ptr);
57 return allocator_.Contains(ptr);
H A Dmanaged_stack.cc49 if (current_frame->Contains(shadow_frame_entry)) {
H A Dlinear_alloc.h49 bool Contains(void* ptr) const REQUIRES(!lock_);
51 // Unsafe version of 'Contains' only to be used when the allocator is going
H A Dclass_table_test.cc103 EXPECT_FALSE(table.Contains(h_Y.Get()));
107 EXPECT_TRUE(table.Contains(h_X.Get()));
108 EXPECT_TRUE(table.Contains(h_Y.Get()));
145 EXPECT_FALSE(table.Contains(h_X.Get()));
156 EXPECT_TRUE(table2.Contains(h_X.Get()));
157 EXPECT_TRUE(table2.Contains(h_Y.Get()));
H A Dhandle_scope-inl.h100 inline bool HandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const { function in class:art::HandleScope
151 inline bool BaseHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const { function in class:art::BaseHandleScope
153 ? AsHandleScope()->Contains(handle_scope_entry)
154 : AsVariableSized()->Contains(handle_scope_entry);
226 inline bool VariableSizedHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) function in class:art::VariableSizedHandleScope
230 if (cur->Contains(handle_scope_entry)) {
H A Dhandle_scope_test.cc108 EXPECT_TRUE(hs.Contains(handles.back().GetReference()));
109 EXPECT_TRUE(base->Contains(handles.back().GetReference()));
118 EXPECT_TRUE(base->Contains(ref));
H A Dhandle_scope.h52 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const;
117 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const;
297 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const;
H A Dthread_list.h188 bool Contains(Thread* thread) REQUIRES(Locks::thread_list_lock_);
189 bool Contains(pid_t tid) REQUIRES(Locks::thread_list_lock_);
H A Dthread_list.cc99 contains = Contains(self);
118 bool ThreadList::Contains(Thread* thread) { function in class:art::ThreadList
122 bool ThreadList::Contains(pid_t tid) { function in class:art::ThreadList
187 contains = Contains(tid);
851 // To check Contains.
860 if (!Contains(thread)) {
940 if (!Contains(thread)) {
1058 DCHECK(Contains(thread));
1422 CHECK(!Contains(self));
1464 if (!Contains(sel
[all...]
H A Doat_quick_method_header.h137 bool Contains(uintptr_t pc) const { function
/art/test/616-cha-unloading/
H A Dcha_unload.cc49 } while (!alloc->Contains(reinterpret_cast<void*>(static_cast<uintptr_t>(art_method))));
/art/runtime/gc/space/
H A Ddlmalloc_space-inl.h62 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result)
H A Drosalloc_space-inl.h47 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result)
H A Dlarge_object_space.h95 bool Contains(const mirror::Object* obj) const { function in class:art::gc::space::LargeObjectSpace
145 bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS;
187 DCHECK(Contains(reinterpret_cast<mirror::Object*>(address)));
H A Ddlmalloc_space.cc150 CHECK(!kDebugSpaces || Contains(result));
173 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
208 if (!Contains(ptrs[i])) {
H A Drosalloc_space.cc174 CHECK(!kDebugSpaces || result == nullptr || Contains(result));
196 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this;
228 if (!Contains(ptrs[i])) {
H A Dspace.h96 virtual bool Contains(const mirror::Object* obj) const = 0;
313 bool Contains(const mirror::Object* obj) const { function in class:art::gc::space::ContinuousSpace
H A Dlarge_object_space.cc88 bool Contains(const mirror::Object* obj) const OVERRIDE {
89 return LargeObjectMapSpace::Contains(ObjectWithRedzone(obj));
219 CHECK(Contains(ptrs[i]));
235 bool LargeObjectMapSpace::Contains(const mirror::Object* obj) const { function in class:art::gc::space::LargeObjectMapSpace
318 // Contains the size of the previous free block with kAlignment as the unit. If 0 then the
406 DCHECK(Contains(obj)) << reinterpret_cast<void*>(Begin()) << " " << obj << " "
464 DCHECK(Contains(obj));
H A Dregion_space.h171 bool Contains(const mirror::Object* obj) const { function in class:art::gc::space::FINAL
475 bool Contains(mirror::Object* ref) const { function in class:art::gc::space::FINAL::Region
535 DCHECK(reg->Contains(ref));
/art/compiler/optimizing/
H A Dlocations.h304 bool Contains(Location other) const {
315 bool overlap = Contains(other) || other.Contains(*this);
320 DCHECK(!Contains(other.ToLow()));
321 DCHECK(!Contains(other.ToHigh()));
457 return Contains(core_registers_, id);
461 return Contains(floating_point_registers_, id);
464 static bool Contains(uint32_t register_set, uint32_t reg) {
625 return RegisterSet::Contains(register_mask_, reg_id);
H A Dlinear_order.cc67 if (loop->Contains(*block)) {
H A Dgvn.cc117 bool Contains(HInstruction* instruction) const { function in class:art::ValueSet
154 return !predecessor->Contains(node->GetInstruction());
/art/libdexfile/dex/
H A Ddex_file_layout.h76 bool Contains(uint32_t offset) const { function in class:art::DexLayoutSection::Subsection
/art/libartbase/base/
H A Darray_slice.h132 bool Contains(const T* element) const { function in class:art::ArraySlice
/art/runtime/base/
H A Darena_allocator.h229 bool Contains(const void* ptr) const { function in class:art::Arena
383 bool Contains(const void* ptr) const;

Completed in 245 milliseconds

123