HomeSort by relevance Sort by last modified time
    Searched refs:RuleStmt (Results 1 - 7 of 7) sorted by null

  /build/kati/
stmt.cc 28 string RuleStmt::DebugString() const {
29 return StringPrintf("RuleStmt(lhs=%s sep=%d rhs=%s loc=%s:%d)",
124 RuleStmt::~RuleStmt() {
129 void RuleStmt::Eval(Evaluator* ev) const {
rule.h 44 const RuleStmt* rule_stmt);
stmt.h 77 struct RuleStmt : public Stmt {
82 virtual ~RuleStmt();
rule.cc 42 const RuleStmt* rule_stmt) {
51 rule_stmt->sep != RuleStmt::SEP_SEMICOLON) {
eval.cc 208 const RuleStmt* stmt,
217 bool is_final = (stmt->sep == RuleStmt::SEP_FINALEQ);
228 StringPiece sep(stmt->sep == RuleStmt::SEP_SEMICOLON ? " ; " : " = ");
259 void Evaluator::EvalRule(const RuleStmt* stmt) {
266 if (stmt->sep == RuleStmt::SEP_SEMICOLON)
289 (stmt->sep == RuleStmt::SEP_EQ ||
290 stmt->sep == RuleStmt::SEP_FINALEQ)) {
311 if (stmt->sep == RuleStmt::SEP_SEMICOLON) {
313 } else if (stmt->sep == RuleStmt::SEP_EQ ||
314 stmt->sep == RuleStmt::SEP_FINALEQ)
    [all...]
parser.cc 224 RuleStmt* rule_stmt = new RuleStmt();
232 rule_stmt->sep = RuleStmt::SEP_SEMICOLON;
236 rule_stmt->sep = RuleStmt::SEP_FINALEQ;
239 rule_stmt->sep = RuleStmt::SEP_EQ;
242 ParseExprOpt opt = rule_stmt->sep == RuleStmt::SEP_SEMICOLON
248 rule_stmt->sep = RuleStmt::SEP_NULL;
eval.h 41 void EvalRule(const RuleStmt* stmt);
127 const RuleStmt* stmt,

Completed in 228 milliseconds