Lines Matching defs:execute
134 void ExpressionStatement::execute (ExecutionContext& execCtx) const
213 void BlockStatement::execute (ExecutionContext& execCtx) const
216 (*i)->execute(execCtx);
345 void DeclarationStatement::execute (ExecutionContext& execCtx) const
496 void ConditionalStatement::execute (ExecutionContext& execCtx) const
506 // And mask, execute true statement and pop
508 m_trueStatement->execute(execCtx);
513 // Construct negated mask, execute false statement and pop
521 m_falseStatement->execute(execCtx);
562 void AssignStatement::execute (ExecutionContext& execCtx) const