Home
last modified time | relevance | path

Searched refs:mASTRoot (Results 1 – 8 of 8) sorted by relevance

/external/angle/src/tests/compiler_tests/
DShaderImage_test.cpp146 CheckImageDeclaration(mASTRoot, ImmutableString("myImage"), EbtImage2D, EiifRGBA32F, true, in TEST_F()
166 CheckImageDeclaration(mASTRoot, ImmutableString("myImage"), EbtUImage3D, EiifRGBA32UI, true, in TEST_F()
191 CheckImageLoadCall(mASTRoot, mangledName2D.c_str(), EbtImage2D, 2); in TEST_F()
197 CheckImageLoadCall(mASTRoot, mangledName3D.c_str(), EbtIImage3D, 3); in TEST_F()
222 CheckImageStoreCall(mASTRoot, mangledName2D.c_str(), EbtImage2D, 2, EbtFloat, 4); in TEST_F()
229 CheckImageStoreCall(mASTRoot, mangledName2DArray.c_str(), EbtUImage2DArray, 3, EbtUInt, 4); in TEST_F()
251 CheckImageDeclaration(mASTRoot, ImmutableString("image1"), EbtImage2D, EiifRGBA32F, true, false, in TEST_F()
253 CheckImageDeclaration(mASTRoot, ImmutableString("image2"), EbtImage2D, EiifRGBA32F, false, true, in TEST_F()
255 CheckImageDeclaration(mASTRoot, ImmutableString("image3"), EbtImage2D, EiifRGBA32F, true, true, in TEST_F()
DInitOutputVariables_test.cpp271 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
291 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
312 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
315 mASTRoot->traverse(&findStruct); in TEST_F()
335 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
353 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
371 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
389 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
410 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
429 VerifyOutputVariableInitializers verifier(mASTRoot); in TEST_F()
[all …]
DOVR_multiview_test.cpp512 mASTRoot->traverse(&glInstanceIDByName); in TEST_F()
516 mASTRoot->traverse(&glInstanceIDByQualifier); in TEST_F()
520 mASTRoot->traverse(&instanceIDByName); in TEST_F()
544 mASTRoot->traverse(&glViewIDOVRByName); in TEST_F()
549 mASTRoot->traverse(&viewIDByNameAndQualifier); in TEST_F()
620 VariableOccursNTimes(mASTRoot, ImmutableString("ViewID_OVR"), EvqViewIDOVR, 1u); in TEST_F()
DOVR_multiview2_test.cpp496 mASTRoot->traverse(&glInstanceIDByName); in TEST_F()
500 mASTRoot->traverse(&glInstanceIDByQualifier); in TEST_F()
504 mASTRoot->traverse(&instanceIDByName); in TEST_F()
528 mASTRoot->traverse(&glViewIDOVRByName); in TEST_F()
533 mASTRoot->traverse(&viewIDByNameAndQualifier); in TEST_F()
602 VariableOccursNTimes(mASTRoot, ImmutableString("ViewID_OVR"), EvqViewIDOVR, 1u); in TEST_F()
DQualificationOrderESSL31_test.cpp30 return FindSymbolNode(mASTRoot, symbolName); in findSymbolInAST()
/external/angle/src/tests/test_utils/
DConstantFoldingTest.h147 mASTRoot->traverse(&finder); in constantFoundInAST()
155 mASTRoot->traverse(&finder); in constantVectorFoundInAST()
169 mASTRoot->traverse(&finder); in constantVectorNearFoundInAST()
175 return FindSymbolNode(mASTRoot, ImmutableString(symbolName)) != nullptr; in symbolFoundInAST()
180 return FindSymbolNode(FindMain(mASTRoot), ImmutableString(symbolName)) != nullptr; in symbolFoundInMain()
DShaderCompileTreeTest.cpp137 mASTRoot = mTranslator->compileTreeForTesting(shaderStrings, 1, mCompileOptions); in compile()
140 return mASTRoot != nullptr; in compile()
DShaderCompileTreeTest.h51 TIntermBlock *mASTRoot; variable