Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.h110 unsigned StartColumn) const = 0;
125 unsigned StartColumn) const { in getRemainingLength() argument
256 BreakableStringLiteral(const FormatToken &Tok, unsigned StartColumn,
272 unsigned StartColumn) const override;
274 unsigned StartColumn) const override;
279 unsigned StartColumn;
297 BreakableComment(const FormatToken &Token, unsigned StartColumn,
349 unsigned StartColumn; variable
371 unsigned StartColumn) const override;
373 unsigned StartColumn) const override;
[all …]
H A DBreakableToken.cpp230 return StartColumn + Prefix.size(); in getContentStartColumn()
238 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix), in BreakableStringLiteral()
258 Prefix, InPPDirective, 1, StartColumn); in insertBreak()
266 StartColumn(StartColumn) {} in BreakableComment()
333 const FormatToken &Token, unsigned StartColumn, in BreakableBlockComment() argument
346 int IndentDelta = StartColumn - OriginalStartColumn; in BreakableBlockComment()
351 ContentColumn[0] = StartColumn + 2; in BreakableBlockComment()
358 DecorationColumn = StartColumn + 1; in BreakableBlockComment()
367 DecorationColumn = StartColumn; in BreakableBlockComment()
710 const FormatToken &Token, unsigned StartColumn, in BreakableLineCommentSection() argument
[all …]
H A DEncoding.h62 inline unsigned columnWidthWithTabs(StringRef Text, unsigned StartColumn, in columnWidthWithTabs() argument
71 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth; in columnWidthWithTabs()
H A DContinuationIndenter.cpp523 unsigned StartColumn = in addTokenToState() local
525 assert(EndColumn >= StartColumn); in addTokenToState()
526 State.Column += EndColumn - StartColumn; in addTokenToState()
1457 return StartColumn + in getLastLineEndColumn()
1468 unsigned StartColumn = State.Column - Current.ColumnWidth; in reformatRawStringLiteral() local
1494 unsigned FirstStartColumn = StartColumn + NewPrefixSize; in reformatRawStringLiteral()
1593 StartColumn + NewPrefixSize > Style.ColumnLimit ? in reformatRawStringLiteral()
1594 StartColumn + NewPrefixSize - Style.ColumnLimit : 0; in reformatRawStringLiteral()
1714 unsigned StartColumn = State.Column - Current.ColumnWidth; in createBreakableToken() local
1840 << StartColumn << ".\n"); in breakProtrudingToken()
[all …]
H A DFormatTokenLexer.cpp324 unsigned StartColumn = 0; // The template tail spans the entire line. in handleTemplateStrings() local
326 LiteralText.substr(LastBreak + 1, LiteralText.size()), StartColumn, in handleTemplateStrings()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h71 ColumnInfo(uint16_t StartColumn, uint16_t EndColumn) { in ColumnInfo() argument
73 (static_cast<uint32_t>(StartColumn) & StartColumnMask) | in ColumnInfo()
100 uint16_t StartColumn, uint16_t EndColumn, bool IsStatement) in Line() argument
102 ColumnInf(StartColumn, EndColumn) {} in Line()
H A DDebugLinesSubsection.h61 support::ulittle16_t StartColumn; member
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h71 uint16_t StartColumn; member
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp274 IO.mapRequired("StartColumn", Obj.StartColumn); in mapping()
431 C.StartColumn, C.EndColumn); in toCodeViewSubsection()
600 SCE.StartColumn = C.StartColumn; in fromCodeViewSubsection()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp99 CNE.StartColumn = ColStart; in addLineAndColumnInfo()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1139 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn); in printCodeViewSymbolSection()