Home
last modified time | relevance | path

Searched refs:handlePragma (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/
Dpragma_test.cpp23 EXPECT_CALL(mDirectiveHandler, handlePragma(_, _, _, false)).Times(0); in TEST_F()
36 EXPECT_CALL(mDirectiveHandler, handlePragma(pp::SourceLocation(0, 1), "foo", "", false)); in TEST_F()
49 EXPECT_CALL(mDirectiveHandler, handlePragma(pp::SourceLocation(0, 1), "foo", "bar", false)); in TEST_F()
62 EXPECT_CALL(mDirectiveHandler, handlePragma(_, _, _, _)).Times(0); in TEST_F()
76 handlePragma(pp::SourceLocation(0, 1), "invariant", "all", true)); in TEST_F()
104 EXPECT_CALL(mDirectiveHandler, handlePragma(pp::SourceLocation(0, 1), "foo", "bar", false)); in TEST_F()
118 EXPECT_CALL(mDirectiveHandler, handlePragma(pp::SourceLocation(0, 1), "foo", "bar", false)); in TEST_F()
135 EXPECT_CALL(mDirectiveHandler, handlePragma(_, _, _, false)).Times(0); in TEST_P()
DMockDirectiveHandler.h21 MOCK_METHOD4(handlePragma,
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
DDirectiveHandlerBase.h37 virtual void handlePragma(const SourceLocation &loc,
DDirectiveParser.cpp672 mDirectiveHandler->handlePragma(token->location, name, value, stdgl); in parsePragma()
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
DDirectiveHandlerBase.h33 virtual void handlePragma(const SourceLocation &loc,
DDirectiveParser.cpp601 mDirectiveHandler->handlePragma(token->location, name, value, stdgl); in parsePragma()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DDirectiveHandler.h38 virtual void handlePragma(const pp::SourceLocation& loc,
DDirectiveHandler.cpp55 void TDirectiveHandler::handlePragma(const pp::SourceLocation& loc, in handlePragma() function in TDirectiveHandler
DParseHelper.cpp1137 mDirectiveHandler.handlePragma(loc, name, value, stdgl); in handlePragmaDirective()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DDirectiveHandler.h34 void handlePragma(const angle::pp::SourceLocation &loc,
DDirectiveHandler.cpp54 void TDirectiveHandler::handlePragma(const angle::pp::SourceLocation &loc, in handlePragma() function in sh::TDirectiveHandler
DParseContext.cpp2127 mDirectiveHandler.handlePragma(srcLoc, name, value, stdgl); in handlePragmaDirective()
/third_party/glslang/glslang/MachineIndependent/
DParseHelper.h135 virtual void handlePragma(const TSourceLoc&, const TVector<TString>&) = 0;
329 void handlePragma(const TSourceLoc&, const TVector<TString>&) override;
DParseHelper.cpp328 void TParseContext::handlePragma(const TSourceLoc& loc, const TVector<TString>& tokens) in handlePragma() function in glslang::TParseContext
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.h72 void handlePragma(const TSourceLoc&, const TVector<TString>&) override;
DhlslParseHelper.cpp524 void HlslParseContext::handlePragma(const TSourceLoc& loc, const TVector<TString>& tokens) in handlePragma() function in glslang::HlslParseContext
/third_party/glslang/glslang/MachineIndependent/preprocessor/
DPp.cpp829 parseContext.handlePragma(loc, tokens); in CPPpragma()