Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DBreakableToken.h109 unsigned StartColumn) const = 0;
124 unsigned StartColumn) const { in getRemainingLength() argument
125 return getRangeLength(LineIndex, Offset, StringRef::npos, StartColumn); in getRemainingLength()
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
359 BreakableBlockComment(const FormatToken &Token, unsigned StartColumn,
[all …]
H A DBreakableToken.cpp249 unsigned StartColumn) const { in getRangeLength()
256 unsigned StartColumn) const { in getRemainingLength()
258 encoding::columnWidthWithTabs(Line.substr(Offset), StartColumn, in getRemainingLength()
264 return StartColumn + Prefix.size(); in getContentStartColumn()
268 const FormatToken &Tok, unsigned StartColumn, StringRef Prefix, in BreakableStringLiteral() argument
272 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix), in BreakableStringLiteral()
292 Prefix, InPPDirective, 1, StartColumn); in insertBreak()
296 unsigned StartColumn, bool InPPDirective, in BreakableComment() argument
300 StartColumn(StartColumn) {} in BreakableComment()
367 const FormatToken &Token, unsigned StartColumn, in BreakableBlockComment() argument
[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.cpp627 unsigned StartColumn = in addTokenToState() local
629 assert(EndColumn >= StartColumn); in addTokenToState()
630 State.Column += EndColumn - StartColumn; in addTokenToState()
1832 static unsigned getLastLineEndColumn(StringRef Text, unsigned StartColumn, in getLastLineEndColumn() argument
1837 return StartColumn + in getLastLineEndColumn()
1838 encoding::columnWidthWithTabs(Text, StartColumn, TabWidth, Encoding); in getLastLineEndColumn()
1848 unsigned StartColumn = State.Column - Current.ColumnWidth; in reformatRawStringLiteral() local
1874 unsigned FirstStartColumn = StartColumn + NewPrefixSize; in reformatRawStringLiteral()
1980 StartColumn + NewPrefixSize > Style.ColumnLimit in reformatRawStringLiteral()
1981 ? StartColumn + NewPrefixSize - Style.ColumnLimit in reformatRawStringLiteral()
[all …]
H A DFormatTokenLexer.cpp726 unsigned StartColumn = 0; in handleCSharpVerbatimAndInterpolatedStrings() local
729 StartColumn, Style.TabWidth, Encoding); in handleCSharpVerbatimAndInterpolatedStrings()
792 unsigned StartColumn = 0; // The template tail spans the entire line. in handleTemplateStrings() local
795 StartColumn, Style.TabWidth, Encoding); in handleTemplateStrings()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h70 uint16_t StartColumn; member
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DDebugLinesSubsection.cpp98 CNE.StartColumn = ColStart; in addLineAndColumnInfo()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1251 W.printNumber("ColStart", Entry.Columns[ColumnIndex].StartColumn); in printCodeViewSymbolSection()