Home
last modified time | relevance | path

Searched refs:StartColumn (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/clang/lib/Format/
H A DBreakableToken.h109 unsigned StartColumn) const = 0;
124 unsigned StartColumn) const { in getRemainingLength() argument
251 BreakableStringLiteral(const FormatToken &Tok, unsigned StartColumn,
267 unsigned StartColumn) const override;
269 unsigned StartColumn) const override;
274 unsigned StartColumn;
292 BreakableComment(const FormatToken &Token, unsigned StartColumn,
344 unsigned StartColumn; variable
369 unsigned StartColumn) const override;
371 unsigned StartColumn) const override;
[all …]
H A DBreakableToken.cpp264 return StartColumn + Prefix.size(); in getContentStartColumn()
272 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix), in BreakableStringLiteral()
292 Prefix, InPPDirective, 1, StartColumn); in insertBreak()
300 StartColumn(StartColumn) {} in BreakableComment()
367 const FormatToken &Token, unsigned StartColumn, in BreakableBlockComment() argument
381 int IndentDelta = StartColumn - OriginalStartColumn; in BreakableBlockComment()
386 ContentColumn[0] = StartColumn + 2; in BreakableBlockComment()
393 DecorationColumn = StartColumn + 1; in BreakableBlockComment()
401 static_cast<unsigned>(ContentColumn[1]) == StartColumn) { in BreakableBlockComment()
402 DecorationColumn = StartColumn; in BreakableBlockComment()
[all …]
H A DEncoding.h61 inline unsigned columnWidthWithTabs(StringRef Text, unsigned StartColumn, in columnWidthWithTabs() argument
71 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth; in columnWidthWithTabs()
H A DContinuationIndenter.cpp612 unsigned StartColumn = in addTokenToState() local
614 assert(EndColumn >= StartColumn); in addTokenToState()
615 State.Column += EndColumn - StartColumn; in addTokenToState()
1802 return StartColumn + in getLastLineEndColumn()
1813 unsigned StartColumn = State.Column - Current.ColumnWidth; in reformatRawStringLiteral() local
1839 unsigned FirstStartColumn = StartColumn + NewPrefixSize; in reformatRawStringLiteral()
1945 StartColumn + NewPrefixSize > Style.ColumnLimit in reformatRawStringLiteral()
1946 ? StartColumn + NewPrefixSize - Style.ColumnLimit in reformatRawStringLiteral()
2070 unsigned StartColumn = State.Column - Current.ColumnWidth; in createBreakableToken() local
2209 << StartColumn << ".\n"); in breakProtrudingToken()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h69 ColumnInfo(uint16_t StartColumn, uint16_t EndColumn) { in ColumnInfo() argument
71 (static_cast<uint32_t>(StartColumn) & StartColumnMask) | in ColumnInfo()
98 uint16_t StartColumn, uint16_t EndColumn, bool IsStatement) in Line() argument
100 ColumnInf(StartColumn, EndColumn) {} in Line()
H A DDebugLinesSubsection.h61 support::ulittle16_t StartColumn; member
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndexDiagnostic.cpp271 unsigned StartLine, StartColumn, EndLine, EndColumn; in clang_formatDiagnostic() local
273 &StartFile, &StartLine, &StartColumn, in clang_formatDiagnostic()
281 Out << "{" << StartLine << ":" << StartColumn << "-" in clang_formatDiagnostic()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h70 uint16_t StartColumn; member
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp140 unsigned EndLine, unsigned StartColumn, unsigned EndColumn) { in matchesRange() argument
143 EXPECT_EQ(StartColumn, Range.Start.Column); in matchesRange()
146 Range.Start.Column == StartColumn && Range.End.Column == EndColumn; in matchesRange()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp495 (Lines.hasColumnInfo()) ? Group.Columns.front().StartColumn : 0; in findLineTable()
505 ColNum = ColIt->StartColumn; in findLineTable()
514 ColNum = (Lines.hasColumnInfo()) ? Group.Columns.back().StartColumn : 0; in findLineTable()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp98 CNE.StartColumn = ColStart; in addLineAndColumnInfo()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp273 IO.mapRequired("StartColumn", Obj.StartColumn); in mapping()
430 C.StartColumn, C.EndColumn); in toCodeViewSubsection()
599 SCE.StartColumn = C.StartColumn; in fromCodeViewSubsection()
/llvm-project-15.0.7/lld/test/COFF/
H A Dsort-debug.test84 - StartColumn: 0
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A DBreakableToken-reduced.ll216 …%StartColumn = getelementptr inbounds %"class.clang::format::BreakableStringLiteral", %"class.clan…
217 %0 = load i32, i32* %StartColumn, align 8, !tbaa !2
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1197 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn); in printCodeViewSymbolSection()