Home
last modified time | relevance | path

Searched refs:Column (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp27 struct Column { struct
37 Column(StringRef Str, unsigned Width) in Column() argument
40 Column &set(TrimKind Value) { in set() argument
45 Column &set(AlignmentKind Value) { in set() argument
81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } in column()
85 return Column(Str, Width).set(Value); in column()
321 Column::RightTrim) in render()
404 Column::RightAlignment) in renderFunctionReports()
538 Column::RightAlignment) in renderFileReports()
542 Column::RightAlignment) in renderFileReports()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.cpp144 unsigned Column = 0; in formatAfterToken() local
153 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken()
154 ++Column; in formatAfterToken()
160 Column = 0; in formatAfterToken()
291 unsigned Column = 0; in precomputeFormattingInfos() local
294 if (MustBreakBeforeItem[i] || Column == Columns) { in precomputeFormattingInfos()
296 Column = 0; in precomputeFormattingInfos()
298 if (Column == Columns - 1) in precomputeFormattingInfos()
302 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], Length); in precomputeFormattingInfos()
303 MinSizeInColumn[Column] = std::min(MinSizeInColumn[Column], Length); in precomputeFormattingInfos()
[all …]
H A DContinuationIndenter.cpp253 State.Column = FirstStartColumn; in getInitialState()
255 State.Column = FirstIndent; in getInitialState()
262 State.Column = 0; in getInitialState()
461 (State.Column > NewLineColumn || in mustBreak()
642 State.Column = EndColumn; in addTokenToState()
879 State.Column += Spaces; in addTokenOnCurrentLine()
896 CurrentState.Indent = State.Column; in addTokenOnCurrentLine()
910 CurrentState.Indent = State.Column; in addTokenOnCurrentLine()
1070 Whitespaces.replaceWhitespace(Current, Newlines, State.Column, State.Column, in addTokenOnNewLine()
1623 State.Column += Current.ColumnWidth; in moveStateToNextToken()
[all …]
H A DContinuationIndenter.h418 unsigned Column; member
470 if (Column != Other.Column)
471 return Column < Other.Column;
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.h47 u32 Column; variable
50 SourceLocation() : Filename(), Line(), Column() {} in SourceLocation()
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column) in SourceLocation() argument
52 : Filename(Filename), Line(Line), Column(Column) {} in SourceLocation()
61 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0), in acquire()
69 return Column == ~u32(0); in isDisabled()
77 unsigned getColumn() const { return Column; } in getColumn()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormattedStream.cpp27 unsigned &Column = Position.first; in UpdatePosition() local
30 auto ProcessUTF8CodePoint = [&Line, &Column](StringRef CP) { in UpdatePosition()
33 Column += Width; in UpdatePosition()
44 Column = 0; in UpdatePosition()
48 Column += (8 - (Column & 0x7)) & 0x7; in UpdatePosition()
H A DYAMLParser.cpp874 Column = 0; in init()
1023 ++Column; in scan_ns_uri_char()
1042 ++Column; in consume()
1081 Column = 0; in consumeLineBreakIfPresent()
1104 if (i->Line != Line || i->Column + 1024 < Column) { in removeStaleSimpleKeyCandidates()
1162 ++Column; in skipComment()
1180 Column = 0; in scanToNextToken()
1203 Column = 0; in scanStreamEnd()
1473 ++Column; in scanPlainScalar()
1538 ++Column; in scanAliasOrAnchor()
[all …]
H A DUnicodeNameToCodepoint.cpp260 char &PreviousInName, int &Pos, int Column) { in findSyllable() argument
261 assert(Column == 0 || Column == 1 || Column == 2); in findSyllable()
265 for (std::size_t I = 0; I < CountPerColumn[Column]; I++) { in findSyllable()
266 StringRef Syllable(HangulSyllables[I][Column]); in findSyllable()
485 auto Get = [&Distances, Columns](size_t Column, std::size_t Row) -> char & { in nearestMatchesForCodepointName() argument
486 assert(Column < Columns); in nearestMatchesForCodepointName()
488 return Distances[Row * Columns + Column]; in nearestMatchesForCodepointName()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslerror.c183 UINT32 Column,
196 UINT32 Column,
576 Enode->Column); in AePrintErrorSourceLine()
828 UINT32 Column, in AslInitEnode() argument
845 Enode->Column = Column; in AslInitEnode()
920 UINT32 Column, in AslCommonError2() argument
956 UINT32 Column, in AslCommonError() argument
1000 UINT32 Column, in AslLogNewError() argument
1241 NewErrorLocationNode->Column = AslGbl_CurrentColumn; in AslLogExpectedExceptionByLine()
1572 Op->Asl.Column, in AslError()
[all …]
H A Daslparseop.c199 Op->Asl.LineNumber, Op->Asl.Column, Op, in TrCreateOp()
365 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode)); in TrCreateLeafOp()
401 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName(ParseOpcode), in TrCreateValuedLeafOp()
521 Op->Asl.Column = OriginalOp->Asl.Column; in TrCreateTargetOp()
657 Operator->Asl.Column = Target->Asl.Column; in TrCreateAssignmentOp()
689 Op->Asl.LineNumber, Op->Asl.Column, Op, in TrCreateNullTargetOp()
794 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode), in TrCreateConstantLeafOp()
830 Op->Asl.Column = AslGbl_CurrentColumn; in TrAllocateOp()
H A Ddtfield.c782 Field->NameColumn = FieldKey->Column; in DtCreateField()
783 Field->Column = FieldValue->Column; in DtCreateField()
808 UINT32 Column) in DtCreateTableUnit() argument
815 Unit->Column = Column; in DtCreateTableUnit()
H A Ddtio.c325 UINT32 Column; in DtParseLine() local
374 Column = ACPI_PTR_DIFF (Colon, LineBuffer) + 3; in DtParseLine()
442 Field->Column = Column; in DtParseLine()
1044 Field->Column, Field->TableOffset, Field->Flags, in DtDumpFieldList()
1178 Field->Column-4, Field->Name, Field->Value); in DtWriteFieldToListing()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h28 unsigned Column; member
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
56 Twine(Line) + ":" + Twine(Column)) in ToString()
100 EndColumn = Begin.Column; in fromString()
103 {Begin.Line, Begin.Column}, in fromString()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h152 uint32_t Column; member
160 Column = Other.Column; in Frame()
165 : Function(Hash), LineOffset(Off), Column(Col), IsInlineFrame(Inline) {} in Frame()
171 Other.Column == Column && Other.IsInlineFrame == IsInlineFrame;
178 Column = Other.Column;
198 LE.write<uint32_t>(Column); in serialize()
221 sizeof(Frame::Column) + sizeof(Frame::IsInlineFrame); in serializedSize()
230 << " Column: " << Column << "\n" in printYAML()
249 Result ^= HashCombine(Column, Result); in hash()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h43 uint16_t Column; variable
52 Column(column), PrologueEnd(prologueend), IsStmt(isstmt) {} in MCCVLoc()
69 unsigned getColumn() const { return Column; } in getColumn()
87 Column = column; in setColumn()
176 unsigned FileNo, unsigned Line, unsigned Column,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h46 uint32_t Column = 0; member
58 return Line == RHS.Line && Column == RHS.Column &&
67 return std::tie(FileName, FunctionName, StartFileName, Line, Column,
70 RHS.Column, RHS.StartLine, RHS.Discriminator);
82 OS << "column " << Column << ", "; in dump()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp55 if (DE.Column != 0) { in EmitDiagEntry()
58 EmitInteger(OS, DE.Column) << '\n'; in EmitDiagEntry()
141 DE.Line = DE.Column = 0; in HandleDiagnostic()
156 DE.Column = PLoc.getColumn(); in HandleDiagnostic()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIALineNumber.cpp28 DWORD Column = 0; in getColumnNumber() local
29 return (S_OK == LineNumber->get_columnNumber(&Column)) ? Column : 0; in getColumnNumber()
/freebsd/share/i18n/csmapper/GB/
H A DUCS%GB2312EXT.src26 # Column #1 is the cp936 code (in hex)
27 # Column #2 is the Unicode (in hex as 0xXXXX)
28 # Column #3 is the Unicode name (follows a comment sign, '#')
H A DGB2312EXT%UCS.src26 # Column #1 is the cp936 code (in hex)
27 # Column #2 is the Unicode (in hex as 0xXXXX)
28 # Column #3 is the Unicode name (follows a comment sign, '#')
/freebsd/share/i18n/csmapper/KOI/
H A DKOI8-T%UCS.src20 # Column 1 is the KOI8-T code (in hex as 0xXX)
21 # Column 2 is the Unicode code (in hex as 0xXXXX)
22 # Column 3 is the Unicode name (follows a comment sign, '#')
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenAction.cpp533 unsigned Column = D.getColumnNo(); in SrcMgrDiagHandler() local
606 StringRef &Filename, unsigned &Line, unsigned &Column) const { in getBestLocationFromDebugLoc()
612 D.getLocation(Filename, Line, Column); in getBestLocationFromDebugLoc()
620 DILoc = SourceMgr.translateFileLineCol(*FE, Line, Column ? Column : 1); in getBestLocationFromDebugLoc()
641 << Filename << Line << Column; in getBestLocationFromDebugLoc()
663 unsigned Line, Column; in UnsupportedDiagHandler() local
690 << Filename << Line << Column; in UnsupportedDiagHandler()
700 unsigned Line, Column; in EmitOptimizationMessage() local
729 << Filename << Line << Column; in EmitOptimizationMessage()
811 unsigned Line, Column; in MisExpectDiagHandler() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h317 unsigned Column = 0; in emitLineTableRows() local
348 if (Column != Row.Column) { in emitLineTableRows()
349 Column = Row.Column; in emitLineTableRows()
351 encodeULEB128(Column, Section.OS); in emitLineTableRows()
400 RowsSinceLastSequence = Column = Isa = 0; in emitLineTableRows()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.h46 struct Column { struct
61 IndexedMap<Column> ActiveCols; argument
85 : ActiveCols(Column()), MRI(MRI), STI(STI) {} in LiveVariablePrinter()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticInfo.cpp118 Column = DL->getColumn(); in DiagnosticLocation()
127 Column = 0; in DiagnosticLocation()
150 unsigned &Column) const { in getLocation()
153 Column = Loc.getColumn(); in getLocation()
159 unsigned Column = 0; in getLocationStr() local
161 getLocation(Filename, Line, Column); in getLocationStr()
162 return (Filename + ":" + Twine(Line) + ":" + Twine(Column)).str(); in getLocationStr()

12345678910>>...14