Home | History | Annotate | Download | only in Frontend

Lines Matching full:loc

63   virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
66 Verify.UpdateParsedFileStatus(SM, SM.getFileID(Loc),
126 SourceLocation Loc = Info.getLocation();
127 if (Loc.isValid()) {
130 Loc = SrcManager->getExpansionLoc(Loc);
131 FileID FID = SrcManager->getFileID(Loc);
498 size_t loc = C.find('\\');
499 if (loc == StringRef::npos) {
507 for (size_t last = 0;; loc = C.find('\\', last)) {
508 if (loc == StringRef::npos || loc == C.size()) {
512 C2 += C.substr(last, loc-last);
513 last = loc + 1;