HomeSort by: relevance | last modified time | path
    Searched refs:Column (Results 1 - 25 of 143) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/lib/Support/
FormattedStream.cpp 23 /// column we end up in after output, and how many line breaks are contained.
27 unsigned &Column = Position.first;
30 auto ProcessUTF8CodePoint = [&Line, &Column](StringRef CP) {
33 Column += Width;
44 Column = 0;
48 Column += (8 - (Column & 0x7)) & 0x7;
65 // Concatenate them and process their effect on the line and column
94 /// ComputePosition - Examine the current output and update line and column
102 // column
    [all...]
YAMLParser.cpp 181 unsigned Column = 0;
381 /// This updates Cur and Column while scanning.
386 /// \a Expected. This updates \a Column.
389 /// Skip \a Distance UTF-8 code units. Updates \a Cur and \a Column.
519 /// Current column number in Unicode code points.
520 unsigned Column;
852 Column = 0;
980 Column += Final - Current;
1000 ++Column;
1019 ++Column;
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.h 48 u32 Column;
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
53 : Filename(Filename), Line(Line), Column(Column) {}
62 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0),
70 return Column == ~u32(0);
77 /// \brief Get the column within the presumed line.
78 unsigned getColumn() const { return Column; }
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_value.h 47 u32 Column;
50 SourceLocation() : Filename(), Line(), Column() {}
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
52 : Filename(Filename), Line(Line), Column(Column) {}
61 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0),
69 return Column == ~u32(0);
76 /// \brief Get the column within the presumed line.
77 unsigned getColumn() const { return Column; }
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_value.h 47 u32 Column;
50 SourceLocation() : Filename(), Line(), Column() {}
51 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
52 : Filename(Filename), Line(Line), Column(Column) {}
61 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0),
69 return Column == ~u32(0);
76 /// \brief Get the column within the presumed line.
77 unsigned getColumn() const { return Column; }
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatToken.cpp 96 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
102 // bin-packed. Add a severe penalty to this so that column layouts are
109 unsigned Column = 0;
118 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
119 ++Column;
124 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
125 Column = 0;
138 // Formatting with 1 Column isn't really a column layout, so we don't need the
166 // Limit column layout for JavaScript array initializers to 20 or more item
    [all...]
FormatTokenLexer.h 40 FormatTokenLexer(const SourceManager &SourceMgr, FileID ID, unsigned Column,
101 unsigned Column;
ContinuationIndenter.cpp 242 State.Column = FirstStartColumn;
244 State.Column = FirstIndent;
245 // With preprocessor directive indentation, the line starts on column 0
251 State.Column = 0;
312 if (Current.is(TT_FunctionDeclarationName) && State.Column < 6) {
381 getLengthToMatchingParen(Previous, State.Stack) + State.Column - 1 >
390 (State.Column + State.Line->Last->TotalLength - Previous.TotalLength >
410 State.Column + getLengthToNextOperator(Current) > Style.ColumnLimit &&
411 (State.Column > NewLineColumn ||
423 !(State.Column <= NewLineColumn &
    [all...]
ContinuationIndenter.h 53 /// column \p FirstIndent.
64 /// the column at which the state of the parent formatter is.
87 /// Get the column limit for this line. This is the style's column
130 /// when tokens are broken or lines exceed the column limit, and exceeded
132 /// column limit.
135 /// and column limit violation in all lines except for the last one. The
136 /// penalty for the column limit violation in the last line (and in single
140 /// protruding the column limit; if true, lines will be split strictly within
141 /// the column limit where possible; if false, words are allowed to protrud
    [all...]
WhitespaceManager.h 49 /// \p StartOfTokenColumn is the column at which the token will start after
71 /// relative column offset between a line of a block comment and the start of
156 // comment. \c IndentationOffset is a relative column offset to this
157 // change, so that the correct column can be reconstructed at the end of
200 /// the specified \p Column.
201 void alignTrailingComments(unsigned Start, unsigned End, unsigned Column);
207 /// the specified \p Column.
208 void alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageReport.cpp 27 struct Column {
37 Column(StringRef Str, unsigned Width)
40 Column &set(TrimKind Value) {
45 Column &set(AlignmentKind Value) {
76 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) {
81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); } function in namespace:__anon5631
84 Column column(StringRef Str, unsigned Width, const T &Value) function in namespace:__anon5631
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CommandLineSourceLoc.h 27 unsigned Column;
39 if (!ColSplit.second.getAsInteger(10, PSL.Column) &&
55 Twine(Line) + ":" + Twine(Column))
64 /// the second element is the column.
67 /// second element is the column.
77 /// If the end line and column are omitted, the starting line and columns
99 EndColumn = Begin.Column;
102 {Begin.Line, Begin.Column},
112 /// Source locations are of the form filename:line:column.
130 << "source location must be of the form filename:line:column\n"
    [all...]
LogDiagnosticPrinter.h 32 /// The source file column number, if available.
33 unsigned Column;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 28 DWORD Column = 0;
29 return (S_OK == LineNumber->get_columnNumber(&Column)) ? Column : 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCCodeView.h 36 uint16_t Column;
43 unsigned line, unsigned column, bool prologueend, bool isstmt)
45 Column(column), PrologueEnd(prologueend), IsStmt(isstmt) {}
61 /// Get the Column of this MCCVLoc.
62 unsigned getColumn() const { return Column; }
77 /// Set the Column of this MCCVLoc.
78 void setColumn(unsigned column) {
79 assert(column <= UINT16_MAX);
80 Column = column
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslerror.c 75 UINT32 Column,
88 UINT32 Column,
294 SourceColumn = Enode->Column + Enode->FilenameLength + 6 + 2;
467 "\n[*** iASL: Very long input line, message below refers to column %u ***]",
468 Enode->Column);
701 * Column - Column in current line
720 UINT32 Column,
737 Enode->Column = Column;
    [all...]
aslparseop.c 91 Op->Asl.LineNumber, Op->Asl.Column, Op,
257 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode));
293 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName(ParseOpcode),
413 Op->Asl.Column = OriginalOp->Asl.Column;
549 Operator->Asl.Column = Target->Asl.Column;
581 Op->Asl.LineNumber, Op->Asl.Column, Op,
686 Op->Asl.LineNumber, Op->Asl.Column, Op, UtGetOpName (ParseOpcode),
722 Op->Asl.Column = AslGbl_CurrentColumn
    [all...]
dtfield.c 640 * Column
674 Field->NameColumn = FieldKey->Column;
675 Field->Column = FieldValue->Column;
688 * Column
700 UINT32 Column)
707 Unit->Column = Column;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.h 42 // Information we want to track about one column in which we are printing a
44 struct Column {
59 IndexedMap<Column> ActiveCols;
68 // Get the column number (in characters) at which the first live variable
72 // Indent to the first live-range column to the right of the currently
73 // printed line, and return the index of that column.
74 // TODO: formatted_raw_ostream uses "column" to mean a number of characters
83 : LiveVariables(), ActiveCols(Column()), MRI(MRI), STI(STI) {}
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 55 if (DE.Column != 0) {
56 OS << " <key>column</key>\n"
58 EmitInteger(OS, DE.Column) << '\n';
142 DE.Line = DE.Column = 0;
158 DE.Column = PLoc.getColumn();
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
DIContext.h 41 uint32_t Column = 0;
53 return Line == RHS.Line && Column == RHS.Column &&
64 return std::tie(FileName, FunctionName, StartFileName, Line, Column,
67 RHS.Column, RHS.StartLine, RHS.Discriminator);
79 OS << "column " << Column << ", ";
  /src/sys/external/bsd/gnu-efi/dist/lib/
event.c 141 IN UINTN Column,
150 PrintAt (Column, Row, String, Timeout);
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 31 SourceLocation() : Line(), Column() {}
33 unsigned Column;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DiagnosticInfo.cpp 117 Column = DL->getColumn();
126 Column = 0;
149 unsigned &Column) const {
152 Column = Loc.getColumn();
158 unsigned Column = 0;
160 getLocation(Filename, Line, Column);
161 return (Filename + ":" + Twine(Line) + ":" + Twine(Column)).str();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenAction.cpp 376 unsigned &Line, unsigned &Column) const;
522 unsigned Column = D.getColumnNo();
523 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
524 Loc.getLocWithOffset(Range.second - Column));
583 StringRef &Filename, unsigned &Line, unsigned &Column) const {
589 D.getLocation(Filename, Line, Column);
595 // If -gcolumn-info was not used, Column will be 0. This upsets the
596 // source manager, so pass 1 if Column is not set.
597 DILoc = SourceMgr.translateFileLineCol(*FE, Line, Column ? Column : 1)
    [all...]

Completed in 40 milliseconds

1 2 3 4 5 6