Home
last modified time | relevance | path

Searched defs:FunctionImpl (Results 1 – 1 of 1) sorted by relevance

/hardware/google/gfxstream/guest/android-emu/aemu/base/fit/
DFunction.h28 class FunctionImpl; variable
210 FunctionImpl(decltype(nullptr)) : Base(nullptr) {} in FunctionImpl() function
214 FunctionImpl(Result (*target)(Args...)) : Base(target) {} in FunctionImpl() function
230 FunctionImpl(Callable&& target) : Base(std::forward<Callable>(target)) {} in FunctionImpl() function
244 FunctionImpl(FunctionImpl&& other) : Base(static_cast<Base&&>(other)) {} in FunctionImpl() function