Home
last modified time | relevance | path

Searched refs:notFoundInCode (Results 1 – 10 of 10) sorted by relevance

/external/angle/src/tests/compiler_tests/
DPrunePureLiteralStatements_test.cpp39 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
55 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
68 ASSERT_TRUE(notFoundInCode("21")); in TEST_F()
69 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
82 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
101 ASSERT_TRUE(notFoundInCode("default")); in TEST_F()
102 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
123 ASSERT_TRUE(notFoundInCode("default")); in TEST_F()
124 ASSERT_TRUE(notFoundInCode("case")); in TEST_F()
125 ASSERT_TRUE(notFoundInCode("42")); in TEST_F()
[all …]
DRemoveUnreferencedVariables_test.cpp35 ASSERT_TRUE(notFoundInCode("myUnreferencedVec")); in TEST_F()
51 ASSERT_TRUE(notFoundInCode("myUnreferencedVec")); in TEST_F()
66 ASSERT_TRUE(notFoundInCode("myUnreferencedVec")); in TEST_F()
142 ASSERT_TRUE(notFoundInCode("myUnreferencedVec3")); in TEST_F()
143 ASSERT_TRUE(notFoundInCode("myUnreferencedVec2")); in TEST_F()
144 ASSERT_TRUE(notFoundInCode("myUnreferencedVec1")); in TEST_F()
185 ASSERT_TRUE(notFoundInCode("myUnreferencedVec3")); in TEST_F()
186 ASSERT_TRUE(notFoundInCode("myUnreferencedVec2")); in TEST_F()
187 ASSERT_TRUE(notFoundInCode("myUnreferencedVec1")); in TEST_F()
258 ASSERT_TRUE(notFoundInCode("unreferencedInt")); in TEST_F()
[all …]
DDebugShaderPrecision_test.cpp120 ASSERT_TRUE(notFoundInCode("mat2x")); in TEST_F()
121 ASSERT_TRUE(notFoundInCode("mat3x")); in TEST_F()
122 ASSERT_TRUE(notFoundInCode("mat4x")); in TEST_F()
190 ASSERT_TRUE(notFoundInCode("angle_frm")); in TEST_F()
257 ASSERT_TRUE(notFoundInCode("angle_frm(0")); in TEST_F()
259 ASSERT_TRUE(notFoundInCode("angle_frm(_uuu")); in TEST_F()
260 ASSERT_TRUE(notFoundInCode("angle_frm(_uvv")); in TEST_F()
261 ASSERT_TRUE(notFoundInCode("angle_frm(_ugg")); in TEST_F()
262 ASSERT_TRUE(notFoundInCode("angle_frm(_uaa")); in TEST_F()
264 ASSERT_TRUE(notFoundInCode("angle_frm(_uu")); in TEST_F()
[all …]
DPruneEmptyDeclarations_test.cpp40 ASSERT_TRUE(notFoundInCode("float, _uf")); in TEST_F()
41 ASSERT_TRUE(notFoundInCode("float, f")); in TEST_F()
42 ASSERT_TRUE(notFoundInCode("float _u, _uf")); in TEST_F()
58 ASSERT_TRUE(notFoundInCode("const struct _uS")); in TEST_F()
DPruneEmptyCases_test.cpp49 ASSERT_TRUE(notFoundInCode("switch")); in TEST_F()
50 ASSERT_TRUE(notFoundInCode("case")); in TEST_F()
78 ASSERT_TRUE(notFoundInCode("switch")); in TEST_F()
79 ASSERT_TRUE(notFoundInCode("case")); in TEST_F()
DEmulateGLBaseVertexBaseInstance_test.cpp91 EXPECT_TRUE(notFoundInCode("gl_BaseVertex")); in TEST_F()
93 EXPECT_TRUE(notFoundInCode("gl_BaseInstance")); in TEST_F()
95 EXPECT_TRUE(notFoundInCode("GL_ANGLE_base_vertex_base_instance")); in TEST_F()
DPruneUnusedFunctions_test.cpp46 EXPECT_TRUE(notFoundInCode("unused(")); in TEST_F()
60 EXPECT_TRUE(notFoundInCode("unused(")); in TEST_F()
DEmulateGLDrawID_test.cpp91 EXPECT_TRUE(notFoundInCode("gl_DrawID")); in TEST_F()
93 EXPECT_TRUE(notFoundInCode("GL_ANGLE_multi_draw")); in TEST_F()
/external/angle/src/tests/test_utils/
Dcompiler_test.h92 bool notFoundInCode(const char *stringToFind) const;
Dcompiler_test.cpp317 bool MatchOutputCodeTest::notFoundInCode(const char *stringToFind) const in notFoundInCode() function in sh::MatchOutputCodeTest