Home
last modified time | relevance | path

Searched refs:Loc (Results 1 – 16 of 16) sorted by relevance

/build/kati/
Dloc.h22 struct Loc { struct
23 Loc() : filename(0), lineno(-1) {} in Loc() function
24 Loc(const char* f, int l) : filename(f), lineno(l) {} in Loc() function
Drule.h36 Loc cmd_loc() const { return Loc(loc.filename, cmd_lineno); } in cmd_loc()
57 Loc loc;
Dexpr.h26 struct Loc;
65 Value* ParseExprImpl(const Loc& loc,
71 Value* ParseExpr(const Loc& loc,
Dparser.h29 void Parse(StringPiece buf, const Loc& loc, vector<Stmt*>* out_asts);
31 const Loc& loc,
Deval.h56 const Loc& loc() const { return loc_; } in loc()
57 void set_loc(const Loc& loc) { loc_ = loc; } in set_loc()
138 Loc loc_;
157 Loc lowest_loc_;
Dstmt.h54 Loc loc() const { return loc_; } in loc()
55 void set_loc(Loc loc) { loc_ = loc; } in set_loc()
66 Loc loc_;
Dfind_test.cc46 if (!FindEmulator::Get()->HandleFind(cmd, fc, Loc(), &out)) { in main()
79 if (!FindEmulator::Get()->HandleFind(cmd, fc, Loc(), &emulated)) { in CompareFind()
Dparser.cc59 Parser(StringPiece buf, const Loc& loc, vector<Stmt*>* stmts) in Parser()
92 ERROR_LOC(Loc(loc_.filename, loc_.lineno + 1), "*** missing `endif'."); in Parse()
94 ERROR_LOC(Loc(loc_.filename, define_start_line_), in Parse()
328 stmt->set_loc(Loc(loc_.filename, define_start_line_)); in ParseInsideDefine()
551 Loc loc_;
568 void Parse(StringPiece buf, const Loc& loc, vector<Stmt*>* out_stmts) { in Parse()
575 const Loc& loc, in ParseNotAfterRule()
Dfind.h67 const Loc& loc,
Ddep.h54 Loc loc;
Dexpr.cc291 void ParseFunc(const Loc& loc, in ParseFunc()
357 Value* ParseDollar(const Loc& loc, StringPiece s, size_t* index_out) { in ParseDollar()
449 Value* ParseExprImpl(const Loc& loc, in ParseExprImpl()
580 Value* ParseExpr(const Loc& loc, StringPiece s, ParseExprOpt opt) { in ParseExpr()
Dmain.cc115 Parse(Intern(bootstrap).str(), Loc("*bootstrap*", 0), stmts); in ReadBootstrapMakefile()
263 Parse(Intern(l).str(), Loc("*bootstrap*", 0), &asts); in Run()
Dfind.cc143 const Loc& loc,
179 const Loc&, in RunFind() argument
252 const Loc& loc, in RunFind()
359 const Loc& loc, in RunFind()
793 const Loc& loc, in HandleFind()
Ddep.cc295 Loc loc; in HandleSpecialTargets()
383 bool GetRuleInputs(Symbol s, vector<Symbol>* o, Loc* l) { in GetRuleInputs()
Deval.cc170 static StringPiece ParseRuleTargets(const Loc& loc, in ParseRuleTargets()
Dfunc.cc503 const Loc& loc, in ShellFuncImpl()