Searched refs:fn (Results 1 – 3 of 3) sorted by relevance
/libnativehelper/include_platform_header_only/nativehelper/ |
D | jni_macros.h | 244 #define _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn) \ argument 249 _NATIVEHELPER_JNI_MACRO_CAST(reinterpret_cast, void *)(fn) \ 256 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument 257 MAKE_CHECKED_JNI_NATIVE_METHOD(kind, name, sig, fn) 266 #define _NATIVEHELPER_JNI_MAKE_METHOD(kind, name, sig, fn) \ argument 267 _NATIVEHELPER_JNI_MAKE_METHOD_OLD(kind, name, sig, fn)
|
/libnativehelper/include_platform_header_only/nativehelper/detail/ |
D | signature_checker.h | 955 template<NativeKind native_kind, typename T, T* fn> 958 template<NativeKind native_kind, typename R, typename ... Args, R (*fn)(Args...)> 959 struct is_valid_jni_function_type_helper<native_kind, R(Args...), fn> { 969 template<NativeKind native_kind, typename T, T* fn> 971 return is_valid_jni_function_type_helper<native_kind, T, fn>::value; 1040 template<typename T, T* fn> 1045 template<typename R, typename ... Args, R (*fn)(Args...)> 1046 struct FunctionTypeMetafunction<R(Args...), fn> { 1111 T* fn, 1112 size_t kMaxSize = FunctionTypeMetafunction<T, fn>::count> [all …]
|
/libnativehelper/tests/ |
D | JniSafeRegisterNativeMethods_test.cpp | 521 #define FN_ARGS_PAIR(fn) decltype(fn), (fn) argument
|