Lines Matching refs:testFunctionPointer
261 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()
324 TestFunctionType testFunctionPointer = nullptr; in GetNotExistingEntryPointTestImpl() local
325 …CHECK_THROWS_AS(testFunctionPointer = DynamicBackendUtils::GetEntryPoint<TestFunctionType>(sharedO… in GetNotExistingEntryPointTestImpl()
328 CHECK((testFunctionPointer == nullptr)); in GetNotExistingEntryPointTestImpl()