Home
last modified time | relevance | path

Searched refs:DeclarationStatement (Results 1 – 11 of 11) sorted by relevance

/external/deqp/framework/randomshaders/
DrsgStatement.cpp59 { getWeight<DeclarationStatement>, create<DeclarationStatement> }, in chooseStatement()
247 DeclarationStatement::DeclarationStatement (GeneratorState& state, Variable* variable) in DeclarationStatement() function in rsg::DeclarationStatement
317 DeclarationStatement::~DeclarationStatement (void) in ~DeclarationStatement()
322 float DeclarationStatement::getWeight (const GeneratorState& state) in getWeight()
333 void DeclarationStatement::tokenize (GeneratorState& state, TokenStream& str) const in tokenize()
346 void DeclarationStatement::execute (ExecutionContext& execCtx) const in execute()
DrsgStatement.hpp71 class DeclarationStatement : public Statement class
74 DeclarationStatement (GeneratorState& state, Variable* variable = DE_NULL);
75 virtual ~DeclarationStatement (void);
DrsgShaderGenerator.cpp326 shader.getGlobalStatements().push_back(new DeclarationStatement(m_state, *i)); in generate()
/external/llvm-project/clang/include/clang/Tooling/Syntax/
DNodes.h229 class DeclarationStatement final : public Statement {
231 DeclarationStatement() : Statement(NodeKind::DeclarationStatement) {} in DeclarationStatement() function
DNodes.td223 def DeclarationStatement : External<Statement> {}
/external/llvm-project/clang/lib/Tooling/Syntax/
DSynthesis.cpp110 case syntax::NodeKind::DeclarationStatement: in allocateTree()
111 return new (A.getAllocator()) syntax::DeclarationStatement; in allocateTree()
DBuildTree.cpp1389 new (allocator()) syntax::DeclarationStatement, S); in WalkUpFromDeclStmt()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3488 const DeclStmt* const DeclarationStatement = in AST_MATCHER_P() local
3490 return DeclarationStatement != nullptr && in AST_MATCHER_P()
3491 InnerMatcher.matches(*DeclarationStatement, Finder, Builder); in AST_MATCHER_P()
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp988 TEST(DeclarationStatement, DoesNotMatchCompoundStatements) { in TEST() argument
992 TEST(DeclarationStatement, MatchesVariableDeclarationStatements) { in TEST() argument
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h4954 const DeclStmt* const DeclarationStatement = in AST_MATCHER_P() local
4956 return DeclarationStatement != nullptr && in AST_MATCHER_P()
4957 InnerMatcher.matches(*DeclarationStatement, Finder, Builder); in AST_MATCHER_P()
/external/llvm-project/clang/unittests/Tooling/Syntax/
DBuildTreeTest.cpp288 TEST_P(BuildSyntaxTreeTest, DeclarationStatement) { in TEST_P() argument