Lines Matching refs:kNumReferences

32 template<size_t kNumReferences>
33 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link, in FixedSizeHandleScope()
35 : HandleScope(link, kNumReferences) { in FixedSizeHandleScope()
39 static_assert(kNumReferences >= 1, "FixedSizeHandleScope must contain at least 1 reference"); in FixedSizeHandleScope()
41 for (size_t i = 0; i < kNumReferences; ++i) { in FixedSizeHandleScope()
46 template<size_t kNumReferences>
47 inline StackHandleScope<kNumReferences>::StackHandleScope(Thread* self, in StackHandleScope()
49 : FixedSizeHandleScope<kNumReferences>(self->GetTopHandleScope(), fill_value), in StackHandleScope()
58 template<size_t kNumReferences>
59 inline StackHandleScope<kNumReferences>::~StackHandleScope() { in ~StackHandleScope()
124 template<size_t kNumReferences> template<class T>
125 inline MutableHandle<T> FixedSizeHandleScope<kNumReferences>::NewHandle(T* object) { in NewHandle()
129 template<size_t kNumReferences> template<class MirrorType>
130 inline MutableHandle<MirrorType> FixedSizeHandleScope<kNumReferences>::NewHandle( in NewHandle()
138 template<size_t kNumReferences> template<class T>
139 inline HandleWrapper<T> FixedSizeHandleScope<kNumReferences>::NewHandleWrapper(T** object) { in NewHandleWrapper()
143 template<size_t kNumReferences> template<class T>
144 inline HandleWrapperObjPtr<T> FixedSizeHandleScope<kNumReferences>::NewHandleWrapper( in NewHandleWrapper()
149 template<size_t kNumReferences>
150 inline void FixedSizeHandleScope<kNumReferences>::SetReference(size_t i, in SetReference()
155 DCHECK_LT(i, kNumReferences); in SetReference()