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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.h105 /// \p StartColumn is the column at which the text starts in the formatted
109 unsigned StartColumn) const = 0;
118 /// \p StartColumn is the column at which the text starts in the formatted
124 unsigned StartColumn) const {
125 return getRangeLength(LineIndex, Offset, StringRef::npos, StartColumn);
249 /// \p StartColumn specifies the column in which the token will start
251 BreakableStringLiteral(const FormatToken &Tok, unsigned StartColumn,
267 unsigned StartColumn) const override;
269 unsigned StartColumn) const override;
274 unsigned StartColumn; member in class:clang::format::BreakableStringLiteral
344 unsigned StartColumn; member in class:clang::format::BreakableComment
[all...]
H A DBreakableToken.cpp216 unsigned StartColumn) const {
223 unsigned StartColumn) const {
226 StartColumn, Style.TabWidth, Encoding);
231 return StartColumn + Prefix.size();
235 const FormatToken &Tok, unsigned StartColumn, StringRef Prefix,
239 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix),
259 Prefix, InPPDirective, 1, StartColumn);
263 unsigned StartColumn, bool InPPDirective,
267 StartColumn(StartColum
234 BreakableStringLiteral( const FormatToken &Tok, unsigned StartColumn, StringRef Prefix, StringRef Postfix, unsigned UnbreakableTailLength, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style) argument
262 BreakableComment(const FormatToken &Token, unsigned StartColumn, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style) argument
333 BreakableBlockComment( const FormatToken &Token, unsigned StartColumn, unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style, bool UseCRLF) argument
720 BreakableLineCommentSection( const FormatToken &Token, unsigned StartColumn, unsigned OriginalStartColumn, bool FirstInLine, bool InPPDirective, encoding::Encoding Encoding, const FormatStyle &Style) argument
[all...]
H A DEncoding.h59 /// starting from the \p StartColumn on a terminal with the \p TabWidth. The
61 inline unsigned columnWidthWithTabs(StringRef Text, unsigned StartColumn, argument
71 TotalWidth += TabWidth - (TotalWidth + StartColumn) % TabWidth;
H A DContinuationIndenter.cpp542 unsigned StartColumn = local
544 assert(EndColumn >= StartColumn);
545 State.Column += EndColumn - StartColumn;
1614 static unsigned getLastLineEndColumn(StringRef Text, unsigned StartColumn, argument
1619 return StartColumn +
1620 encoding::columnWidthWithTabs(Text, StartColumn, TabWidth, Encoding);
1623 /*StartColumn=*/0, TabWidth, Encoding);
1630 unsigned StartColumn = State.Column - Current.ColumnWidth; local
1656 unsigned FirstStartColumn = StartColumn + NewPrefixSize;
1763 StartColumn
1887 unsigned StartColumn = State.Column - Current.ColumnWidth; local
1981 unsigned StartColumn = State.Column - Current.ColumnWidth; local
[all...]
H A DFormatTokenLexer.cpp609 unsigned StartColumn = 0;
611 LiteralText.substr(LastBreak + 1, LiteralText.size()), StartColumn,
676 unsigned StartColumn = 0; // The template tail spans the entire line.
678 LiteralText.substr(LastBreak + 1, LiteralText.size()), StartColumn,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h70 ColumnInfo(uint16_t StartColumn, uint16_t EndColumn) { argument
72 (static_cast<uint32_t>(StartColumn) & StartColumnMask) |
99 uint16_t StartColumn, uint16_t EndColumn, bool IsStatement)
101 ColumnInf(StartColumn, EndColumn) {}
98 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, uint16_t StartColumn, uint16_t EndColumn, bool IsStatement) argument
H A DDebugLinesSubsection.h60 support::ulittle16_t StartColumn; member in struct:llvm::codeview::ColumnNumberEntry
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h70 uint16_t StartColumn; member in struct:llvm::CodeViewYAML::SourceColumnEntry
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp98 CNE.StartColumn = ColStart;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp273 IO.mapRequired("StartColumn", Obj.StartColumn);
430 C.StartColumn, C.EndColumn);
599 SCE.StartColumn = C.StartColumn;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp476 ColNum = ColIt->StartColumn;
487 (Lines.hasColumnInfo()) ? Group.Columns.back().StartColumn : 0;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1173 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn);

Completed in 162 milliseconds