Home
last modified time | relevance | path

Searched refs:FunctionObject (Results 1 – 2 of 2) sorted by relevance

/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cGPUShaderFP64Tests.cpp12978 namespace FunctionObject namespace
13919 return new FunctionObject::unaryByComponent<glw::GLdouble /* ResT */>( in getFunctionObject()
13924 return new FunctionObject::unaryByComponent<glw::GLdouble /* ResT */>( in getFunctionObject()
13929 …return new FunctionObject::tenaryByComponent(function, "clamp", Math::clamp, variable_type /* res_… in getFunctionObject()
13935 …return new FunctionObject::tenaryByComponent(function, "clamp", Math::clamp, variable_type /* res_… in getFunctionObject()
13941 …return new FunctionObject::binary<tcu::DVec3 /* ResT */, tcu::DVec3 /* Arg1T */, tcu::DVec3 /* Arg… in getFunctionObject()
13949 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat2 /* ArgT */>(function, "determinan… in getFunctionObject()
13952 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat3 /* ArgT */>(function, "determinan… in getFunctionObject()
13955 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat4 /* ArgT */>(function, "determinan… in getFunctionObject()
13966 …return new FunctionObject::binary<glw::GLdouble /* ResT */, tcu::DVec2 /* Arg1T */, tcu::DVec2 /* … in getFunctionObject()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dvariant.h207 template <class ReturnType, class FunctionObject, class EndIndices,
211 template <class ReturnType, class FunctionObject, std::size_t... Indices>
212 constexpr ReturnType call_with_indices(FunctionObject&& function) {
214 std::is_same<ReturnType, decltype(std::declval<FunctionObject>()(
217 return absl::forward<FunctionObject>(function)(SizeT<Indices>()...);
220 template <class ReturnType, class FunctionObject, std::size_t... BoundIndices>
221 struct MakeVisitationMatrix<ReturnType, FunctionObject, index_sequence<>,
223 using ResultType = ReturnType (*)(FunctionObject&&);
225 return &call_with_indices<ReturnType, FunctionObject,
241 template <class ReturnType, class FunctionObject, class EndIndices,
[all …]