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

  /art/runtime/
handle_scope-inl.h 30 template<size_t kNumReferences>
31 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link,
33 : HandleScope(link, kNumReferences) {
37 static_assert(kNumReferences >= 1, "FixedSizeHandleScope must contain at least 1 reference");
39 for (size_t i = 0; i < kNumReferences; ++i) {
44 template<size_t kNumReferences>
45 inline StackHandleScope<kNumReferences>::StackHandleScope(Thread* self, mirror::Object* fill_value)
46 : FixedSizeHandleScope<kNumReferences>(self->GetTopHandleScope(), fill_value),
52 template<size_t kNumReferences>
53 inline StackHandleScope<kNumReferences>::~StackHandleScope()
    [all...]
handle_scope.h 214 template<size_t kNumReferences>
236 return kNumReferences - pos_;
246 DCHECK_LT(i, kNumReferences);
251 StackReference<mirror::Object> storage_[kNumReferences];
261 template<size_t kNumReferences>
262 class PACKED(4) StackHandleScope FINAL : public FixedSizeHandleScope<kNumReferences> {
handle_scope_test.cc 51 static const size_t kNumReferences = 0x9ABC;
52 StackHandleScope<kNumReferences> test_table(soa.Self());
67 EXPECT_EQ(*num_ptr, static_cast<size_t>(kNumReferences));
handle.h 110 template<size_t kNumReferences> friend class StackHandleScope;
160 template<size_t kNumReferences> friend class StackHandleScope;
class_linker.h 82 template<size_t kNumReferences> class PACKED(4) StackHandleScope;
    [all...]
  /art/runtime/mirror/
class.h 51 template<size_t kNumReferences> class PACKED(4) StackHandleScope;
    [all...]

Completed in 84 milliseconds