Lines Matching defs:LocStart
511 SourceLocation LocStart;
515 : NamedDecl(Label, DC, IdentL, II), TheStmt(S), LocStart(StartL) {}
530 bool isGnuLocal() const { return LocStart != getLocation(); }
531 void setLocStart(SourceLocation L) { LocStart = L; }
534 return SourceRange(LocStart, getLocation());
554 SourceLocation LocStart;
647 return SourceRange(LocStart, RBraceLoc);
650 SourceLocation getBeginLoc() const LLVM_READONLY { return LocStart; }
652 void setLocStart(SourceLocation L) { LocStart = L; }
3402 SourceLocation LocStart;
3409 : NamedDecl(DK, DC, L, Id), LocStart(StartL) {}
3419 SourceLocation getBeginLoc() const LLVM_READONLY { return LocStart; }
3420 void setLocStart(SourceLocation L) { LocStart = L; }
3422 if (LocStart.isValid())
3423 return SourceRange(LocStart, getLocation());