Searched defs:stmt (Results 1 - 2 of 2) sorted by relevance

/build/kati/
H A Deval.cc28 #include "stmt.h"
101 void Evaluator::EvalAssign(const AssignStmt* stmt) { argument
102 loc_ = stmt->loc();
104 Symbol lhs = stmt->GetLhsSymbol(this);
110 stmt->rhs->Eval(this, &rhs);
121 Var* rhs = EvalRHS(lhs, stmt->rhs, stmt->orig_rhs, stmt->op,
122 stmt->directive == AssignDirective::OVERRIDE);
126 stmt
134 EvalRule(const RuleStmt* stmt) argument
220 EvalCommand(const CommandStmt* stmt) argument
237 EvalIf(const IfStmt* stmt) argument
291 EvalInclude(const IncludeStmt* stmt) argument
318 EvalExport(const ExportStmt* stmt) argument
[all...]
H A Dparser.cc27 #include "stmt.h"
39 IfStmt* stmt; member in struct:Parser::IfState
147 ParseErrorStmt* stmt = new ParseErrorStmt(); local
148 stmt->set_loc(loc_);
149 stmt->msg = msg;
150 out_stmts_->push_back(stmt);
151 parse_errors.push_back(stmt);
174 CommandStmt* stmt = new CommandStmt(); local
175 stmt->set_loc(loc_);
176 stmt
229 RuleStmt* stmt = new RuleStmt(); local
259 AssignStmt* stmt = new AssignStmt(); local
271 IncludeStmt* stmt = new IncludeStmt(); local
310 AssignStmt* stmt = new AssignStmt(); local
324 EnterIf(IfStmt* stmt) argument
334 IfStmt* stmt = new IfStmt(); local
343 ParseIfEqCond(StringPiece s, IfStmt* stmt) argument
384 IfStmt* stmt = new IfStmt(); local
448 ExportStmt* stmt = new ExportStmt; local
[all...]

Completed in 596 milliseconds