Searched refs:ArgType (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | art_method-alloc-inl.h | 46 template <char... ArgType, typename HandleScopeType> 50 typename detail::HandleShortyTraits<ArgType>::Type... args) { 58 InvokeInstance<'V', ArgType...>( 59 self, new_object.Get(), detail::HandleShortyTraits<ArgType>::Extract(args)...); 67 template <char... ArgType> 69 Thread* self, typename detail::HandleShortyTraits<ArgType>::Type... args) { 71 return NewObject<ArgType...>(hs, self, args...).Get();
|
D | art_method-inl.h | 139 template <char... ArgType> 142 ShortyTraits<ArgType>::kVRegCount... 151 template <char... ArgType> 153 [[maybe_unused]] typename ShortyTraits<ArgType>::Type... args) 156 template <char FirstArgType, char... ArgType> 159 typename ShortyTraits<ArgType>::Type... args) 162 FillVRegs<ArgType...>(vregs + ShortyTraits<FirstArgType>::kVRegCount, args...); 165 template <char... ArgType> 166 inline ALWAYS_INLINE auto MaterializeVRegs(typename ShortyTraits<ArgType>::Type... args) 168 constexpr size_t kNumVRegs = NumberOfVRegs<ArgType...>(); [all …]
|
D | art_method.h | 692 template <char ReturnType, char... ArgType> 694 InvokeStatic(Thread* self, typename detail::ShortyTraits<ArgType>::Type... args) 697 template <char ReturnType, char... ArgType> 701 typename detail::ShortyTraits<ArgType>::Type... args) 704 template <char ReturnType, char... ArgType> 708 typename detail::ShortyTraits<ArgType>::Type... args) 711 template <char ReturnType, char... ArgType> 715 typename detail::ShortyTraits<ArgType>::Type... args) 718 template <char ReturnType, char... ArgType> 722 typename detail::ShortyTraits<ArgType>::Type... args) [all …]
|
/art/cmdline/ |
D | cmdline_types.h | 429 template <typename ArgType, char Separator> 431 explicit ParseList(std::vector<ArgType>&& list) : list_(list) {} 433 operator std::vector<ArgType>() const { 437 operator std::vector<ArgType>&&() && { 454 std::vector<ArgType> list_;
|
/art/runtime/oat/ |
D | jni_stub_hash_map_test.cc | 191 TEST_F(JniStubHashMapTest, ArgType) { in TEST_F() argument
|