Home | History | Annotate | Download | only in Basic

Lines Matching refs:Col

1486 /// \brief Get the source location for the given file:line:col triplet.
1492 unsigned Col) const {
1494 assert(Line && Col && "Line and column should start from 1!");
1497 return translateLineCol(FirstFID, Line, Col);
1615 /// \brief Get the source location in \arg FID for the given line:col.
1619 unsigned Col) const {
1633 if (Line == 1 && Col == 1)
1667 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
1669 if (i < Col-1)
1672 return FileLoc.getLocWithOffset(FilePos + Col - 1);