Searched refs:ArgIndex (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/include/ftl/ |
D | static_vector.h | 320 template <std::size_t I, std::size_t ArgIndex, std::size_t ArgCount, std::size_t... Indices, 322 StaticVector(std::index_sequence<I, ArgIndex, ArgCount>, std::index_sequence<Indices...>, in StaticVector() argument 324 : StaticVector(std::index_sequence<I + 1, ArgIndex + ArgCount, Size>{}, in StaticVector() 326 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...); 330 template <std::size_t I, std::size_t ArgIndex, std::size_t ArgCount, std::size_t... Indices, 332 StaticVector(std::index_sequence<I, ArgIndex, ArgCount>, std::index_sequence<Indices...>, in StaticVector() argument 335 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...); in StaticVector()
|