Home
last modified time | relevance | path

Searched refs:ArgType (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dart_method-alloc-inl.h46 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();
Dart_method-inl.h139 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 …]
Dart_method.h692 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/
Dcmdline_types.h429 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/
Djni_stub_hash_map_test.cc191 TEST_F(JniStubHashMapTest, ArgType) { in TEST_F() argument