Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Column

327         unsigned Column = D.getColumnNo();
328 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
329 Loc.getLocWithOffset(Range.second - Column));
427 unsigned Line, Column;
428 D.getLocation(&Filename, &Line, &Column);
432 // If -gcolumn-info was not used, Column will be 0. This upsets the
433 // source manager, so pass 1 if Column is not set.
434 DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1);
454 << Filename << Line << Column;