Searched defs:lhs (Results 1 - 5 of 5) sorted by relevance

/build/kati/
H A Drule.h58 StringPiece lhs; member in struct:RuleVarAssignment
H A Dmain.cc111 Symbol lhs = Intern(l.substr(0, found)); local
113 lhs.SetGlobalVar(
H A Deval.cc50 Var* Evaluator::EvalRHS(Symbol lhs, Value* rhs_v, StringPiece orig_rhs, argument
70 Var* prev = LookupVarInCurrentScope(lhs);
74 Error(StringPrintf("*** cannot assign to readonly variable: %s", lhs.c_str()));
83 Var* prev = LookupVarInCurrentScope(lhs);
94 LOG("Assign: %s=%s", lhs.c_str(), rhs->DebugString().c_str());
104 Symbol lhs = stmt->GetLhsSymbol(this); local
105 if (lhs.empty())
108 if (lhs == kati_readonly_) {
121 Var* rhs = EvalRHS(lhs, stmt->rhs, stmt->orig_rhs, stmt->op,
125 lhs
169 Symbol lhs = Intern(rule_var.lhs); local
246 Symbol lhs = Intern(TrimRightSpace(var_name)); local
255 const string&& lhs = stmt->lhs->Eval(this); local
333 StringPiece lhs, rhs; local
[all...]
H A Dstmt.h83 Value* lhs; member in struct:AssignStmt
117 Value* lhs; member in struct:IfStmt
H A Dparser.cc254 StringPiece lhs; local
257 ParseAssignStatement(line, sep, &lhs, &rhs, &op);
261 stmt->lhs = ParseExpr(lhs);
312 stmt->lhs = ParseExpr(define_name_);
337 stmt->lhs = ParseExpr(line);
352 stmt->lhs = ParseExprImpl(loc_, s, terms, ParseExprOpt::NORMAL, &n, true);
370 stmt->lhs = v;
583 StringPiece* lhs, StringPiece* rhs, AssignOp* op) {
601 *lhs
582 ParseAssignStatement(StringPiece line, size_t sep, StringPiece* lhs, StringPiece* rhs, AssignOp* op) argument
[all...]

Completed in 6499 milliseconds