Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.cpp544 unsigned StartColumn = in addTokenToState() local
546 assert(EndColumn >= StartColumn); in addTokenToState()
547 State.Column += EndColumn - StartColumn; in addTokenToState()
1639 return StartColumn + in getLastLineEndColumn()
1650 unsigned StartColumn = State.Column - Current.ColumnWidth; in reformatRawStringLiteral() local
1676 unsigned FirstStartColumn = StartColumn + NewPrefixSize; in reformatRawStringLiteral()
1783 StartColumn + NewPrefixSize > Style.ColumnLimit in reformatRawStringLiteral()
1784 ? StartColumn + NewPrefixSize - Style.ColumnLimit in reformatRawStringLiteral()
1907 unsigned StartColumn = State.Column - Current.ColumnWidth; in createBreakableToken() local
2037 << StartColumn << ".\n"); in breakProtrudingToken()
[all …]
H A DFormatTokenLexer.cpp608 unsigned StartColumn = 0; in handleCSharpVerbatimAndInterpolatedStrings() local
610 LiteralText.substr(LastBreak + 1, LiteralText.size()), StartColumn, in handleCSharpVerbatimAndInterpolatedStrings()
675 unsigned StartColumn = 0; // The template tail spans the entire line. in handleTemplateStrings() local
677 LiteralText.substr(LastBreak + 1, LiteralText.size()), StartColumn, in handleTemplateStrings()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h70 ColumnInfo(uint16_t StartColumn, uint16_t EndColumn) { in ColumnInfo() argument
72 (static_cast<uint32_t>(StartColumn) & StartColumnMask) | in ColumnInfo()
99 uint16_t StartColumn, uint16_t EndColumn, bool IsStatement) in Line() argument
101 ColumnInf(StartColumn, EndColumn) {} in Line()
H A DDebugLinesSubsection.h60 support::ulittle16_t StartColumn; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h70 uint16_t StartColumn; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp490 (Lines.hasColumnInfo()) ? Group.Columns.front().StartColumn : 0; in findLineTable()
500 ColNum = ColIt->StartColumn; in findLineTable()
509 ColNum = (Lines.hasColumnInfo()) ? Group.Columns.back().StartColumn : 0; in findLineTable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp98 CNE.StartColumn = ColStart; in addLineAndColumnInfo()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1193 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn); in printCodeViewSymbolSection()