Home
last modified time | relevance | path

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

/external/armnn/src/backends/backendsCommon/test/
DDynamicBackendTests.hpp261 TestFunctionType testFunctionPointer = nullptr; in GetValidEntryPointTestImpl() local
262 …CHECK_NOTHROW(testFunctionPointer = DynamicBackendUtils::GetEntryPoint<TestFunctionType>(sharedObj… in GetValidEntryPointTestImpl()
264 CHECK((testFunctionPointer != nullptr)); in GetValidEntryPointTestImpl()
265 CHECK(testFunctionPointer(7) == 7); in GetValidEntryPointTestImpl()
282 TestFunctionType testFunctionPointer = nullptr; in GetNameMangledEntryPointTestImpl() local
283 …CHECK_THROWS_AS(testFunctionPointer = DynamicBackendUtils::GetEntryPoint<TestFunctionType>(sharedO… in GetNameMangledEntryPointTestImpl()
286 CHECK((testFunctionPointer == nullptr)); in GetNameMangledEntryPointTestImpl()
303 TestFunctionType testFunctionPointer = nullptr; in GetNoExternEntryPointTestImpl() local
304 …CHECK_THROWS_AS(testFunctionPointer = DynamicBackendUtils::GetEntryPoint<TestFunctionType>(sharedO… in GetNoExternEntryPointTestImpl()
307 CHECK((testFunctionPointer == nullptr)); in GetNoExternEntryPointTestImpl()
[all …]
/external/clang/test/SemaCXX/
Dexplicit.cpp221 void testFunctionPointer() in testFunctionPointer() function