| /minix3/external/bsd/llvm/dist/llvm/tools/llvm-cov/ |
| H A D | CoverageReport.cpp | 23 struct Column { struct 33 Column(StringRef Str, unsigned Width) in Column() argument 36 Column &set(TrimKind Value) { in set() argument 41 Column &set(AlignmentKind Value) { in set() argument 48 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) { in operator <<() 54 void Column::render(raw_ostream &OS) const { in render() 79 static Column column(StringRef Str, unsigned Width) { in column() 80 return Column(Str, Width); in column() 84 static Column column(StringRef Str, unsigned Width, const T &Value) { in column() 85 return Column(Str, Width).set(Value); in column() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Format/ |
| H A D | FormatToken.cpp | 75 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth; in formatAfterToken() 87 unsigned Column = 0; in formatAfterToken() local 96 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken() 97 ++Column; in formatAfterToken() 102 if (Column == Format->Columns || State.NextToken->MustBreakBefore) { in formatAfterToken() 103 Column = 0; in formatAfterToken() 213 unsigned Column = 0; in precomputeFormattingInfos() local 216 if (MustBreakBeforeItem[i] || Column == Columns) { in precomputeFormattingInfos() 218 Column = 0; in precomputeFormattingInfos() 220 if (Column == Columns - 1) in precomputeFormattingInfos() [all …]
|
| H A D | ContinuationIndenter.cpp | 75 State.Column = FirstIndent; in getInitialState() 129 !Style.AlwaysBreakAfterDefinitionReturnType && State.Column < 6) in canBreak() 155 State.Column > State.Stack.back().Indent && // Breaking saves columns. in mustBreak() 163 getLengthToMatchingParen(Previous) + State.Column > getColumnLimit(State)) in mustBreak() 170 if (State.Column < getNewLineColumn(State)) in mustBreak() 253 State.Column += WhitespaceLength; in addTokenToState() 274 State.Stack.back().VariablePos = State.Column; in addTokenOnCurrentLine() 291 Spaces, State.Column + Spaces); in addTokenOnCurrentLine() 298 State.Column + Spaces + Current.ColumnWidth) in addTokenOnCurrentLine() 302 State.Stack.back().ColonPos = State.Column + Spaces + Current.ColumnWidth; in addTokenOnCurrentLine() [all …]
|
| H A D | ContinuationIndenter.h | 314 unsigned Column; member 363 if (Column != Other.Column) 364 return Column < Other.Column;
|
| H A D | WhitespaceManager.h | 172 void alignTrailingComments(unsigned Start, unsigned End, unsigned Column); 179 void alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | FormattedStream.cpp | 24 unsigned &Column = Position.first; in UpdatePosition() local 30 ++Column; in UpdatePosition() 35 Column = 0; in UpdatePosition() 39 Column += (8 - (Column & 0x7)) & 0x7; in UpdatePosition()
|
| H A D | YAMLParser.cpp | 191 unsigned Column; member 486 unsigned Column; member in llvm::yaml::Scanner 717 Column = 0; in init() 862 ++Column; in scan_ns_uri_char() 878 ++Column; in consume() 886 Column += Distance; in skip() 906 SK.Column = AtColumn; in saveSimpleKeyCandidate() 916 if (i->Line != Line || i->Column + 1024 < Column) { in removeStaleSimpleKeyCandidates() 979 ++Column; in scanToNextToken() 989 Column = 0; in scanToNextToken() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/DebugInfo/ |
| H A D | DIContext.h | 35 uint32_t Column; member 38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {} in DILineInfo() 41 return Line == RHS.Line && Column == RHS.Column &&
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | DiagnosticInfo.cpp | 137 unsigned *Column) const { in getLocation() 141 *Column = DIL.getColumnNumber(); in getLocation() 147 unsigned Column = 0; in getLocationStr() local 149 getLocation(&Filename, &Line, &Column); in getLocationStr() 150 return Twine(Filename + ":" + Twine(Line) + ":" + Twine(Column)).str(); in getLocationStr()
|
| H A D | LLVMContextImpl.h | 222 unsigned Column; member 226 KeyTy(unsigned Line, unsigned Column, Metadata *Scope, Metadata *InlinedAt) in KeyTy() 227 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {} in KeyTy() 230 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getScope()), in KeyTy() 236 return Line == RHS->getLine() && Column == RHS->getColumn() && 247 return hash_combine(Key.Line, Key.Column, Key.Scope, Key.InlinedAt); in getHashValue()
|
| H A D | Metadata.cpp | 648 MDLocation::MDLocation(LLVMContext &C, unsigned Line, unsigned Column, in MDLocation() argument 656 assert(Column < (1u << 8) && "Expected 8-bit column"); in MDLocation() 659 SubclassData16 = Column; in MDLocation() 663 unsigned Column, Metadata *Scope, in constructHelper() argument 669 return new (Ops.size()) MDLocation(Context, Line, Column, Ops, AllowRAUW); in constructHelper() 678 static void adjustColumn(unsigned &Column) { in adjustColumn() argument 680 if (Column >= (1u << 8)) in adjustColumn() 681 Column = 0; in adjustColumn() 685 unsigned Column, Metadata *Scope, in getImpl() argument 689 adjustColumn(Column); in getImpl() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/ |
| H A D | LogDiagnosticPrinter.cpp | 56 if (DE.Column != 0) { in EmitDiagEntry() 59 EmitInteger(OS, DE.Column) << '\n'; in EmitDiagEntry() 142 DE.Line = DE.Column = 0; in HandleDiagnostic() 158 DE.Column = PLoc.getColumn(); in HandleDiagnostic()
|
| /minix3/share/i18n/csmapper/GB/ |
| H A D | UCS%GB2312EXT.src | 26 # 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 D | GB2312EXT%UCS.src | 26 # 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, '#')
|
| /minix3/share/i18n/csmapper/KOI/ |
| H A D | UCS%KOI8-T.src | 20 # 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, '#')
|
| H A D | KOI8-T%UCS.src | 20 # 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, '#')
|
| /minix3/share/i18n/csmapper/CBM/ |
| H A D | CBMINT%UCS.src | 25 # Column #1 is the CBMINT code (in hex) 26 # Column #2 is the Unicode (in hex as 0xXXXX) 27 # Column #3 is the Unicode name (follows a comment sign, '#')
|
| H A D | UCS%CBMINT.src | 25 # Column #1 is the CBMINT code (in hex) 26 # Column #2 is the Unicode (in hex as 0xXXXX) 27 # Column #3 is the Unicode name (follows a comment sign, '#')
|
| /minix3/external/bsd/llvm/dist/clang/unittests/Tooling/ |
| H A D | TestVisitor.h | 123 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) { in DisallowMatch() argument 124 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column)); in DisallowMatch() 131 void ExpectMatch(Twine Match, unsigned Line, unsigned Column) { in ExpectMatch() argument 132 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column)); in ExpectMatch()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
| H A D | CommandLineSourceLoc.h | 28 unsigned Column; member 40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
|
| /minix3/external/bsd/nvi/dist/docs/vi.ref/ |
| H A D | vi.cmd.texi | 400 @item Column: 428 @item Column: 459 @item Column: 475 @item Column: 500 @item Column: 520 @item Column: 545 @item Column: 579 @item Column: 594 @item Column: 621 @item Column: [all …]
|
| /minix3/share/i18n/csmapper/MISC/ |
| H A D | UCS%ATARIST.src | 45 # Column 1 is the AtariST code (in hex as 0xXX) 46 # Column 2 is the Unicode (in hex as 0xXXXX) 47 # Column 3 the Unicode name (follows a comment sign, '#') 48 # Column 4 is the actual character or <symbol> (follows a comment sign, '#') 49 # Column 5 indicates backward compatible character set mappings
|
| H A D | ATARIST%UCS.src | 45 # Column 1 is the AtariST code (in hex as 0xXX) 46 # Column 2 is the Unicode (in hex as 0xXXXX) 47 # Column 3 the Unicode name (follows a comment sign, '#') 48 # Column 4 is the actual character or <symbol> (follows a comment sign, '#') 49 # Column 5 indicates backward compatible character set mappings
|
| /minix3/share/i18n/csmapper/CP/ |
| H A D | CP869%UCS.src | 25 # Column #1 is the cp869_DOSGreek2 code (in hex) 26 # Column #2 is the Unicode (in hex as 0xXXXX) 27 # Column #3 is the Unicode name (follows a comment sign, '#')
|
| H A D | UCS%CP869.src | 25 # Column #1 is the cp869_DOSGreek2 code (in hex) 26 # Column #2 is the Unicode (in hex as 0xXXXX) 27 # Column #3 is the Unicode name (follows a comment sign, '#')
|