Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
DCoverageReport.cpp27 struct Column { struct
37 Column(StringRef Str, unsigned Width) in Column() function
40 Column &set(TrimKind Value) { in set() argument
45 Column &set(AlignmentKind Value) { in set() argument
76 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) { in operator <<()
81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } in column()
84 Column column(StringRef Str, unsigned Width, const T &Value) { in column()
85 return Column(Str, Width).set(Value); in column()
184 OS << column(FileName, FileReportColumns[0], Column::NoTrim); in render()
199 OS << column("-", FileReportColumns[3], Column::RightAlignment); in render()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
DFormatToken.cpp96 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth; in formatAfterToken()
109 unsigned Column = 0; in formatAfterToken() local
118 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken()
119 ++Column; in formatAfterToken()
124 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { in formatAfterToken()
125 Column = 0; in formatAfterToken()
249 unsigned Column = 0; in precomputeFormattingInfos() local
252 if (MustBreakBeforeItem[i] || Column == Columns) { in precomputeFormattingInfos()
254 Column = 0; in precomputeFormattingInfos()
256 if (Column == Columns - 1) in precomputeFormattingInfos()
[all …]
DContinuationIndenter.cpp242 State.Column = FirstStartColumn; in getInitialState()
244 State.Column = FirstIndent; in getInitialState()
251 State.Column = 0; in getInitialState()
312 if (Current.is(TT_FunctionDeclarationName) && State.Column < 6) { in canBreak()
381 getLengthToMatchingParen(Previous, State.Stack) + State.Column - 1 > in mustBreak()
390 (State.Column + State.Line->Last->TotalLength - Previous.TotalLength > in mustBreak()
410 State.Column + getLengthToNextOperator(Current) > Style.ColumnLimit && in mustBreak()
411 (State.Column > NewLineColumn || in mustBreak()
423 !(State.Column <= NewLineColumn && in mustBreak()
425 !(Previous.closesScopeAfterBlock() && State.Column <= NewLineColumn)) in mustBreak()
[all …]
DContinuationIndenter.h408 unsigned Column; member
460 if (Column != Other.Column)
461 return Column < Other.Column;
DFormatTokenLexer.cpp26 const SourceManager &SourceMgr, FileID ID, unsigned Column, in FormatTokenLexer() argument
31 Column(Column), TrailingWhitespace(0), SourceMgr(SourceMgr), ID(ID),
865 Column = 0; in getNextToken()
869 Column = 0; in getNextToken()
873 Column = 0; in getNextToken()
876 ++Column; in getNextToken()
879 Column += in getNextToken()
880 Style.TabWidth - (Style.TabWidth ? Column % Style.TabWidth : 0); in getNextToken()
946 Column = 0; in getNextToken()
953 FormatTok->OriginalColumn = Column; in getNextToken()
[all …]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
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-12-stable/contrib/llvm-project/llvm/lib/Support/
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()
DYAMLParser.cpp181 unsigned Column = 0; member
520 unsigned Column; member in llvm::yaml::Scanner
852 Column = 0; in init()
980 Column += Final - Current; in advanceWhile()
1000 ++Column; in scan_ns_uri_char()
1019 ++Column; in consume()
1027 Column += Distance; in skip()
1042 Column = 0; in consumeLineBreakIfPresent()
1055 SK.Column = AtColumn; in saveSimpleKeyCandidate()
1065 if (i->Line != Line || i->Column + 1024 < Column) { in removeStaleSimpleKeyCandidates()
[all …]
/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
Daslerror.c183 UINT32 Column,
196 UINT32 Column,
402 SourceColumn = Enode->Column + Enode->FilenameLength + 6 + 2; in AeDecodeErrorMessageId()
576 Enode->Column); in AePrintErrorSourceLine()
828 UINT32 Column, in AslInitEnode() argument
845 Enode->Column = Column; in AslInitEnode()
920 UINT32 Column, in AslCommonError2() argument
925 AslLogNewError (Level, MessageId, LineNumber, LineNumber, 0, Column, in AslCommonError2()
956 UINT32 Column, in AslCommonError() argument
968 LogicalByteOffset, Column, Filename, ExtraMessage, in AslCommonError()
[all …]
Daslparseop.c199 Op->Asl.LineNumber, Op->Asl.Column, Op, in TrCreateOp()
365 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode)); in TrCreateLeafOp()
399 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName(ParseOpcode), in TrCreateValuedLeafOp()
495 Op->Asl.Column = OriginalOp->Asl.Column; in TrCreateTargetOp()
631 Operator->Asl.Column = Target->Asl.Column; in TrCreateAssignmentOp()
663 Op->Asl.LineNumber, Op->Asl.Column, Op, in TrCreateNullTargetOp()
768 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode), in TrCreateConstantLeafOp()
802 Op->Asl.Column = AslGbl_CurrentColumn; in TrAllocateOp()
Ddtfield.c776 Field->NameColumn = FieldKey->Column; in DtCreateField()
777 Field->Column = FieldValue->Column; in DtCreateField()
802 UINT32 Column) in DtCreateTableUnit() argument
809 Unit->Column = Column; in DtCreateTableUnit()
Dprutils.c261 UINT32 Column) in PrError() argument
269 if (Column > 120) in PrError()
271 Column = 0; in PrError()
277 AslGbl_CurrentLineNumber, Column, in PrError()
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-12-stable/contrib/llvm-project/clang/include/clang/Frontend/
DCommandLineSourceLoc.h27 unsigned Column; member
39 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
55 Twine(Line) + ":" + Twine(Column)) in ToString()
99 EndColumn = Begin.Column; in fromString()
102 {Begin.Line, Begin.Column}, in fromString()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
DMCCodeView.h36 uint16_t Column; variable
45 Column(column), PrologueEnd(prologueend), IsStmt(isstmt) {} in MCCVLoc()
62 unsigned getColumn() const { return Column; } in getColumn()
80 Column = column; in setColumn()
166 unsigned FileNo, unsigned Line, unsigned Column,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/
DDIContext.h41 uint32_t Column = 0; member
53 return Line == RHS.Line && Column == RHS.Column &&
62 return std::tie(FileName, FunctionName, StartFileName, Line, Column,
65 RHS.Column, RHS.StartLine, RHS.Discriminator);
77 OS << "column " << Column << ", "; in dump()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
DLogDiagnosticPrinter.cpp55 if (DE.Column != 0) { in EmitDiagEntry()
58 EmitInteger(OS, DE.Column) << '\n'; in EmitDiagEntry()
142 DE.Line = DE.Column = 0; in HandleDiagnostic()
158 DE.Column = PLoc.getColumn(); in HandleDiagnostic()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
DDIALineNumber.cpp28 DWORD Column = 0; in getColumnNumber() local
29 return (S_OK == LineNumber->get_columnNumber(&Column)) ? Column : 0; in getColumnNumber()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCodeGenAction.cpp376 unsigned &Line, unsigned &Column) const;
522 unsigned Column = D.getColumnNo(); in SrcMgrDiagHandler() local
523 B << SourceRange(Loc.getLocWithOffset(Range.first - Column), in SrcMgrDiagHandler()
524 Loc.getLocWithOffset(Range.second - Column)); in SrcMgrDiagHandler()
585 StringRef &Filename, unsigned &Line, unsigned &Column) const { in getBestLocationFromDebugLoc()
591 D.getLocation(Filename, Line, Column); in getBestLocationFromDebugLoc()
599 DILoc = SourceMgr.translateFileLineCol(*FE, Line, Column ? Column : 1); in getBestLocationFromDebugLoc()
619 << Filename << Line << Column; in getBestLocationFromDebugLoc()
631 unsigned Line, Column; in UnsupportedDiagHandler() local
640 Loc = getBestLocationFromDebugLoc(D, BadDebugInfo, Filename, Line, Column); in UnsupportedDiagHandler()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DDiagnosticInfo.cpp115 Column = DL->getColumn(); in DiagnosticLocation()
124 Column = 0; in DiagnosticLocation()
147 unsigned &Column) const { in getLocation()
150 Column = Loc.getColumn(); in getLocation()
156 unsigned Column = 0; in getLocationStr() local
158 getLocation(Filename, Line, Column); in getLocationStr()
159 return (Filename + ":" + Twine(Line) + ":" + Twine(Column)).str(); in getLocationStr()
/freebsd-12-stable/share/i18n/csmapper/GB/
DGB2312EXT%UCS.src27 # Column #1 is the cp936 code (in hex)
28 # Column #2 is the Unicode (in hex as 0xXXXX)
29 # Column #3 is the Unicode name (follows a comment sign, '#')
DUCS%GB2312EXT.src27 # Column #1 is the cp936 code (in hex)
28 # Column #2 is the Unicode (in hex as 0xXXXX)
29 # Column #3 is the Unicode name (follows a comment sign, '#')
/freebsd-12-stable/share/i18n/csmapper/KOI/
DKOI8-T%UCS.src21 # Column 1 is the KOI8-T code (in hex as 0xXX)
22 # Column 2 is the Unicode code (in hex as 0xXXXX)
23 # Column 3 is the Unicode name (follows a comment sign, '#')
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
DSourcePrinter.h44 struct Column { struct
59 IndexedMap<Column> ActiveCols; argument
83 : LiveVariables(), ActiveCols(Column()), MRI(MRI), STI(STI) {} in LiveVariablePrinter()
/freebsd-12-stable/share/i18n/csmapper/MISC/
DATARIST%UCS.src46 # Column 1 is the AtariST code (in hex as 0xXX)
47 # Column 2 is the Unicode (in hex as 0xXXXX)
48 # Column 3 the Unicode name (follows a comment sign, '#')
49 # Column 4 is the actual character or <symbol> (follows a comment sign, '#')
50 # Column 5 indicates backward compatible character set mappings

12345678910>>...14