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.cpp12965 namespace FunctionObject namespace
13906 return new FunctionObject::unaryByComponent<glw::GLdouble /* ResT */>( in getFunctionObject()
13911 return new FunctionObject::unaryByComponent<glw::GLdouble /* ResT */>( in getFunctionObject()
13916 …return new FunctionObject::tenaryByComponent(function, "clamp", Math::clamp, variable_type /* res_… in getFunctionObject()
13922 …return new FunctionObject::tenaryByComponent(function, "clamp", Math::clamp, variable_type /* res_… in getFunctionObject()
13928 …return new FunctionObject::binary<tcu::DVec3 /* ResT */, tcu::DVec3 /* Arg1T */, tcu::DVec3 /* Arg… in getFunctionObject()
13936 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat2 /* ArgT */>(function, "determinan… in getFunctionObject()
13939 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat3 /* ArgT */>(function, "determinan… in getFunctionObject()
13942 …return new FunctionObject::unary<glw::GLdouble /* ResT */, DMat4 /* ArgT */>(function, "determinan… in getFunctionObject()
13953 …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 …]