Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/common/apple/
H A DSoftLinking.h51 # define SOFT_LINK_FUNCTION_HEADER(framework, functionName, resultType, parameterDeclarations, \ argument
54 resultType functionName parameterDeclarations; \
56 extern resultType init##framework##functionName parameterDeclarations; \
57 extern resultType(*softLink##framework##functionName) parameterDeclarations; \
58 inline __attribute__((__always_inline__)) resultType functionName parameterDeclarations \
63 # define SOFT_LINK_FUNCTION_SOURCE(framework, functionName, resultType, parameterDeclarations, \ argument
65 resultType(*softLink##framework##functionName) parameterDeclarations = \
67 resultType init##framework##functionName parameterDeclarations \
72 (resultType(*) parameterDeclarations)dlsym(framework##Library(), #functionName); \
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/mac/
H A DSoftLinking.h56 #define SOFT_LINK(framework, functionName, resultType, parameterDeclarations, parameterNames) \ argument
57 static resultType init##functionName parameterDeclarations; \
58 static resultType (*softLink##functionName) parameterDeclarations = init##functionName; \
60 static resultType init##functionName parameterDeclarations \
62 …softLink##functionName = (resultType (*) parameterDeclarations) dlsym(framework##Library(), #funct…
67 inline resultType functionName parameterDeclarations \
73 …SOFT_LINK_OPTIONAL(framework, functionName, resultType, callingConvention, parameterDeclarations) \ argument
74 typedef resultType (*functionName##PtrType) parameterDeclarations; \