Home
last modified time | relevance | path

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

/external/angle/src/tests/preprocessor_tests/
Dlocation_test.cpp23 ASSERT_TRUE(mPreprocessor.init(count, string, length)); in expectLocation()
26 mPreprocessor.lex(&token); in expectLocation()
84 ASSERT_TRUE(mPreprocessor.init(1, &str, nullptr)); in TEST_F()
89 mPreprocessor.lex(&token); in TEST_F()
116 ASSERT_TRUE(mPreprocessor.init(1, str, nullptr)); in TEST_F()
119 mPreprocessor.lex(&token); in TEST_F()
125 mPreprocessor.lex(&token); in TEST_F()
134 ASSERT_TRUE(mPreprocessor.init(1, str, nullptr)); in TEST_F()
137 mPreprocessor.lex(&token); in TEST_F()
143 mPreprocessor.lex(&token); in TEST_F()
[all …]
Dspace_test.cpp23 ASSERT_TRUE(mPreprocessor.init(1, &cstr, 0)); in expectSpace()
27 mPreprocessor.lex(&token); in expectSpace()
87 ASSERT_TRUE(mPreprocessor.init(1, &str, 0)); in TEST_F()
90 mPreprocessor.lex(&token); in TEST_F()
95 mPreprocessor.lex(&token); in TEST_F()
99 mPreprocessor.lex(&token); in TEST_F()
103 mPreprocessor.lex(&token); in TEST_F()
DPreprocessorTest.h24 : mPreprocessor(&mDiagnostics, &mDirectiveHandler, pp::PreprocessorSettings(shaderSpec)) in PreprocessorTest()
29 pp::Preprocessor mPreprocessor; variable
Dchar_test.cpp51 ASSERT_TRUE(mPreprocessor.init(1, &cstr, &length)); in TEST_P()
88 mPreprocessor.lex(&token); in TEST_P()
Dinput_test.cpp22 EXPECT_TRUE(mPreprocessor.init(0, nullptr, nullptr)); in TEST_F()
25 mPreprocessor.lex(&token); in TEST_F()
31 EXPECT_FALSE(mPreprocessor.init(1, nullptr, nullptr)); in TEST_F()
/external/swiftshader/src/OpenGL/compiler/
DParseHelper.h59 mPreprocessor(&mDiagnostics, &mDirectiveHandler, pp::PreprocessorSettings()), in TParseContext()
71 const pp::Preprocessor &getPreprocessor() const { return mPreprocessor; } in getPreprocessor()
72 pp::Preprocessor &getPreprocessor() { return mPreprocessor; } in getPreprocessor()
272 pp::Preprocessor mPreprocessor; variable
/external/angle/src/compiler/translator/
DParseContext.h48 const angle::pp::Preprocessor &getPreprocessor() const { return mPreprocessor; } in getPreprocessor()
49 angle::pp::Preprocessor &getPreprocessor() { return mPreprocessor; } in getPreprocessor()
682 angle::pp::Preprocessor mPreprocessor; variable
DParseContext.cpp218 mPreprocessor(mDiagnostics, &mDirectiveHandler, angle::pp::PreprocessorSettings(spec)), in TParseContext()