HomeSort by relevance Sort by last modified time
    Searched defs:Column (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/llvm/lib/Support/
FormattedStream.cpp 22 /// column we end up in after output, and how many line breaks are contained.
25 unsigned &Column = Position.first;
28 // Keep track of the current column and line by scanning the string for
31 ++Column;
36 Column = 0;
40 Column += (8 - (Column & 0x7)) & 0x7;
46 /// ComputePosition - Examine the current output and update line and column
54 // column.
63 /// PadToColumn - Align the output to some column number
    [all...]
  /art/tools/ahat/src/
Column.java 20 * Configuration of a Doc table column.
22 class Column {
30 public Column(DocString heading, Align align) {
36 * Construct a left-aligned column with a simple heading.
38 public Column(String heading) {
43 * Construct a column with a simple heading.
45 public Column(String heading, Align align) {
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 28 unsigned Column;
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) &&
60 /// Source locations are of the form filename:line:column.
78 << "source location must be of the form filename:line:column\n";
LogDiagnosticPrinter.h 33 /// The source file column number, if available.
34 unsigned Column;
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 35 uint32_t Column;
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
41 return Line == RHS.Line && Column == RHS.Column &&
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 32 @Column("_id")
43 public @interface Column {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/
fusiontables_v1_messages.py 13 class Column(_messages.Message):
15 """Specifies the id, name and type of a column in a table.
18 BaseColumnValue: Optional identifier of the base column. If present, this
19 column is derived from the specified base column.
22 baseColumn: Optional identifier of the base column. If present, this
23 column is derived from the specified base column.
24 columnId: Identifier for the column.
25 description: Optional column description
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 28 DWORD Column = 0;
29 return (S_OK == LineNumber->get_columnNumber(&Column)) ? Column : 0;
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 147 unsigned *Column) const {
152 *Column = L->getColumn();
158 unsigned Column = 0;
160 getLocation(&Filename, &Line, &Column);
161 return (Filename + ":" + Twine(Line) + ":" + Twine(Column)).str();
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 22 struct Column {
32 Column(StringRef Str, unsigned Width)
35 Column &set(TrimKind Value) {
40 Column &set(AlignmentKind Value) {
48 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) {
54 void Column::render(raw_ostream &OS) const {
82 static Column column(StringRef Str, unsigned Width) { function
83 return Column(Str, Width);
87 static Column column(StringRef Str, unsigned Width, const T &Value) function
    [all...]
  /external/clang/lib/Format/
FormatToken.cpp 91 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
96 // bin-packed. Add a severe penalty to this so that column layouts are
103 unsigned Column = 0;
112 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
113 ++Column;
118 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
119 Column = 0;
157 // Column format doesn't really make sense if we don't align after brackets.
167 // trailing comments which are otherwise ignored for column alignment.
214 // Don't use column layout for nested lists, lists with few elements and i
    [all...]
ContinuationIndenter.h 38 /// column \p FirstIndent.
69 /// \brief Get the column limit for this line. This is the style's column
96 /// column limit violation in all lines except for the last one. The penalty
97 /// for the column limit violation in the last line (and in single line
121 /// \brief Calculate the new column for a line wrap before the next token.
182 /// \brief The column of a \c ? in a conditional expression;
196 /// contains the start column of the second line. Otherwise 0.
200 /// contains the start column of the second line. Otherwise 0.
203 /// \brief The column of the first variable name in a variable declaration
    [all...]
Format.cpp 764 LessStashed(false), Column(0), TrailingWhitespace(0),
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 32 SourceLocation() : Line(), Column() {}
34 unsigned Column;
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 264 // Print source location (file:line), along with optional column
267 unsigned Line, Column;
269 &File, &Line, &Column, nullptr);
275 Out << Column << ":";
  /external/clang/unittests/AST/
MatchVerifier.h 163 void expectLocation(unsigned Line, unsigned Column) {
165 ExpectColumn = Column;
173 unsigned Column = Result.SourceManager->getSpellingColumnNumber(Loc);
174 if (Line != ExpectLine || Column != ExpectColumn) {
  /external/compiler-rt/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; }
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 31 private final List<Column> columns;
39 this.columns = new ArrayList<Table.Column>();
43 * Adds a new column with the given properties to the table.
46 * column header caption
49 * column
51 * callback for column rendering
53 * If <code>true</code>, this column is the default sorting
54 * column. Only one column can be selected for default sorting.
59 columns.add(new Column(columns.size(), header, style, renderer
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 112 // An unsigned integer indicating a column number within a source line.
115 uint16_t Column;
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 70 unsigned Column = DIL->getColumn();
71 OS << Filename << ':' << Line << ':' << Column << ' ';
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 72 unsigned Column = DIL->getColumn();
73 OS << Filename << ':' << Line << ':' << Column << ' ';
  /external/skia/src/utils/
SkTextureCompressor_Blitter.h 46 // // block is also expected to be in column-major order.
151 // 1. Buffer each vertical column value and then construct a list
211 // Similarly, if the start and end are in the same column, then we can just update
212 // an entire column of blocks...
258 // If we need to update the right column, do that too
278 // Blit a rectangle with one alpha-blended column on the left,
279 // width (zero or more) opaque pixels, and one alpha-blended column
440 typedef uint32_t Column[BlockDim/4];
443 const int colsLeft, const Column curAlphai) {
448 memcpy(block[i], curAlphai, sizeof(Column));
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 348 unsigned Column = D.getColumnNo();
349 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
350 Loc.getLocWithOffset(Range.second - Column));
449 unsigned Line, Column;
453 D.getLocation(&Filename, &Line, &Column);
456 // If -gcolumn-info was not used, Column will be 0. This upsets the
457 // source manager, so pass 1 if Column is not set.
458 DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1);
480 << Filename << Line << Column;
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 59 uint16_t Column;
76 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
78 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
91 /// \brief Get the Column of this MCDwarfLoc.
92 unsigned getColumn() const { return Column; }
109 /// \brief Set the Column of this MCDwarfLoc.
110 void setColumn(unsigned column) {
111 assert(column <= UINT16_MAX);
112 Column = column
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h     [all...]

Completed in 304 milliseconds

1 2 3 4 5