Searched refs:BlockStatement (Results 1 – 8 of 8) sorted by relevance
41 return dynamic_cast<const BlockStatement*>(state.getStatementStackEntry(stackDepth-1)) != DE_NULL; in isCurrentTopStatementBlock()57 { getWeight<BlockStatement>, create<BlockStatement> }, in chooseStatement()139 BlockStatement::BlockStatement (GeneratorState& state) in BlockStatement() function in rsg::BlockStatement144 void BlockStatement::init (GeneratorState& state) in init()153 BlockStatement::~BlockStatement (void) in ~BlockStatement()160 void BlockStatement::addChild (Statement* statement) in addChild()173 Statement* BlockStatement::createNextChild (GeneratorState& state) in createNextChild()190 float BlockStatement::getWeight (const GeneratorState& state) in getWeight()203 void BlockStatement::tokenize (GeneratorState& state, TokenStream& str) const in tokenize()213 void BlockStatement::execute (ExecutionContext& execCtx) const in execute()[all …]
88 class BlockStatement : public Statement class91 BlockStatement (GeneratorState& state);92 virtual ~BlockStatement (void);94 BlockStatement (void) : m_numChildrenToCreate(0) {} in BlockStatement() function in rsg::BlockStatement
51 BlockStatement& getBody (void) { return m_functionBlock; } in getBody()52 const BlockStatement& getBody (void) const { return m_functionBlock; } in getBody()61 BlockStatement m_functionBlock;
65 void createAssignment (BlockStatement& block, const Variable* dstVar, const Variable* srcVar) in createAssignment()
23 ParseStart<Statement> STATEMENT = ASTParser::BlockStatement;
1182 ( LOOKAHEAD(2) stmt = BlockStatement() { ret = add(ret, stmt); } )*2122 Statement BlockStatement():2743 { (LOOKAHEAD(3) ret = BlockStatement()|ret = ExplicitConstructorInvocation()) <EOF> { return ret; }…
1596 stmt = BlockStatement(); in Statements()3597 final public Statement BlockStatement() {Statement ret; in BlockStatement() method in ASTParser
1555 stmt = BlockStatement(); in Statements()3696 final public Statement BlockStatement() { in BlockStatement() method in ASTParser