Searched refs:Col (Results 1 - 19 of 19) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp35 unsigned Col = 1; local
37 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
40 << Line.substr(Col - 1, End - Col);
42 HighlightedRanges.push_back(std::make_pair(Col, End));
43 Col = End;
44 if (Col == ExpansionCol)
55 << Line.substr(Col - 1, Line.size() - Col + 1);
63 errs() << "Highlighted line " << LineNumber << ", " << Col << " local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h49 unsigned Col; member in struct:clang::serialized_diags::Location
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) argument
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
H A DASTUnit.h609 unsigned Line, unsigned Col) const;
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DDebugLoc.cpp59 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, argument
65 return DILocation::get(Scope->getContext(), Line, Col,
H A DDIBuilder.cpp758 unsigned Line, unsigned Col) {
762 File, Line, Col);
757 createLexicalBlock(DIScope *Scope, DIFile *File, unsigned Line, unsigned Col) argument
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DCoverageMapping.cpp277 void startSegment(unsigned Line, unsigned Col) { argument
278 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); local
279 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
283 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, argument
286 Segments.emplace_back(Line, Col, IsRegionEntry);
289 if (S.Line != Line || S.Col != Col) {
290 Segments.emplace_back(Line, Col, IsRegionEntry);
293 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); local
311 unsigned Line = Active->LineEnd, Col local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DDebugLoc.h90 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
H A DDIBuilder.h612 /// \param Col Column number.
614 unsigned Line, unsigned Col);
/freebsd-11.0-release/contrib/llvm/include/llvm/ProfileData/
H A DCoverageMapping.h352 unsigned Col; member in struct:llvm::coverage::CoverageSegment
360 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) argument
361 : Line(Line), Col(Col), Count(0), HasCount(false),
364 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, argument
366 : Line(Line), Col(Col), Count(Count), HasCount(true),
370 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
371 std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSourceLocation.h358 unsigned Line, Col; member in class:clang::SourceLocation::PresumedLoc
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
386 unsigned getColumn() const { return Col; }
H A DSourceManager.h1433 unsigned Line, unsigned Col) const;
1444 unsigned Line, unsigned Col) const;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp837 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col,
838 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset};
849 Location.Col, Location.Offset, CategoryLookup[Category],
862 Start.Line, Start.Col, Start.Offset,
863 FileLookup[End.FileID], End.Line, End.Col,
H A DASTUnit.cpp2653 unsigned Line, unsigned Col) const {
2655 SourceLocation Loc = SM.translateFileLineCol(File, Line, Col);
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DSourceMgr.cpp233 int Line, int Col, SourceMgr::DiagKind Kind,
237 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
232 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, int Line, int Col, SourceMgr::DiagKind Kind, StringRef Msg, StringRef LineStr, ArrayRef<std::pair<unsigned,unsigned> > Ranges, ArrayRef<SMFixIt> Hints) argument
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DSourceMgr.h254 int Line, int Col, SourceMgr::DiagKind Kind,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DSourceManager.cpp1588 unsigned Col) const {
1590 assert(Line && Col && "Line and column should start from 1!");
1593 return translateLineCol(FirstFID, Line, Col);
1717 unsigned Col) const {
1720 assert(Line && Col && "Line and column should start from 1!");
1735 if (Line == 1 && Col == 1)
1769 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h460 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
H A DDwarfDebug.cpp1331 void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, argument
1347 Asm->OutStreamer->EmitDwarfLocDirective(Src, Line, Col, Flags, 0,
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4080 unsigned Line = Record[0], Col = Record[1]; local
4088 LastLoc = DebugLoc::get(Line, Col, Scope, IA);

Completed in 281 milliseconds