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

1 2 3

  /external/llvm/lib/Support/
FormattedStream.cpp 21 /// column we end up in after output, and how many line breaks are contained.
24 unsigned &Column = Position.first;
27 // Keep track of the current column and line by scanning the string for
30 ++Column;
35 Column = 0;
39 Column += (8 - (Column & 0x7)) & 0x7;
45 /// ComputePosition - Examine the current output and update line and column
53 // column.
62 /// PadToColumn - Align the output to some column number
    [all...]
  /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 36 uint32_t Column;
39 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 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_org/ui/file_manager/file_manager/foreground/js/photo/
mosaic_mode.js 838 * @return {Mosaic.Column} The last column or null for empty layout.
869 // |Mosaic.Column.density_| tracks the state of the 'local' backtracking
871 // It starts with the current global density and decreases it until the column
877 this.newColumn_ = new Mosaic.Column(
891 continue; // Column is incomplete.
1028 var column = this.getColumnIndexByTile_(index);
1029 if (column < 0) {
1030 console.error('Cannot find column for tile #' + index);
1034 var row = this.columns_[column].getRowByTileIndex(index)
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
mosaic_mode.js 838 * @return {Mosaic.Column} The last column or null for empty layout.
869 // |Mosaic.Column.density_| tracks the state of the 'local' backtracking
871 // It starts with the current global density and decreases it until the column
877 this.newColumn_ = new Mosaic.Column(
891 continue; // Column is incomplete.
1028 var column = this.getColumnIndexByTile_(index);
1029 if (column < 0) {
1030 console.error('Cannot find column for tile #' + index);
1034 var row = this.columns_[column].getRowByTileIndex(index)
    [all...]
  /external/chromium_org/chrome/browser/
certificate_manager_model.h 35 enum Column {
75 // Get the data to be displayed in |column| for the given |cert|.
76 base::string16 GetColumnText(const net::X509Certificate& cert, Column column) const;
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 136 unsigned *Column) const {
140 *Column = DIL.getColumnNumber();
146 unsigned Column = 0;
148 getLocation(&Filename, &Line, &Column);
149 return Twine(Filename + ":" + Twine(Line) + ":" + Twine(Column)).str();
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 199 # returned SELECT statement returns a single column of data.
241 proc Column {} {
250 SET [Column] = [Expr $::ColumnList]
  /external/clang/lib/Format/
FormatToken.cpp 75 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
80 // bin-packed. Add a severe penalty to this so that column layouts are
87 unsigned Column = 0;
96 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
97 ++Column;
102 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
103 Column = 0;
143 // trailing comments which are otherwise ignored for column alignment.
186 // create a column layout. If it has a nested list, column layout ensures on
    [all...]
ContinuationIndenter.h 37 /// column \p FirstIndent.
67 /// \brief Get the column limit for this line. This is the style's column
94 /// column limit violation in all lines except for the last one. The penalty
95 /// for the column limit violation in the last line (and in single line
119 /// \brief Calculate the new column for a line wrap before the next token.
184 /// \brief The column of a \c ? in a conditional expression;
213 /// contains the start column of the second line. Otherwise 0.
217 /// contains the start column of the second line. Otherwise 0.
220 /// \brief The column of the first variable name in a variable declaration
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 40 private List<Column> columns = new ArrayList<Column>();
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
112 * Adds a new <code>Column</code>
113 * @param column the column to add.
115 public void addColumn(Column column){
116 columns.add(column);
134 public Iterator<Column> getColumns()
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 32 SourceLocation() : Line(), Column() {}
34 unsigned Column;
  /external/clang/unittests/AST/
MatchVerifier.h 149 void expectLocation(unsigned Line, unsigned Column) {
151 ExpectColumn = Column;
158 unsigned Column = Result.SourceManager->getSpellingColumnNumber(Loc);
159 if (Line != ExpectLine || Column != ExpectColumn) {
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 55 u32 Column;
58 SourceLocation() : Filename(), Line(), Column() {}
59 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
60 : Filename(Filename), Line(Line), Column(Column) {}
69 (__sanitizer::atomic_uint32_t *)&Column, ~u32(0),
77 return Column == ~u32(0);
84 /// \brief Get the column within the presumed line.
85 unsigned getColumn() const { return Column; }
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 104 // An unsigned integer indicating a column number within a source line.
107 uint16_t Column;
  /external/chromium_org/ui/views/layout/
grid_layout.cc 27 // Reset the layout width of each column.
38 // Reset the layout width of each column.
153 // Column -------------------------------------------------------------
155 // As the name implies, this represents a Column. Column contains default
156 // values for views originating in this column.
157 class Column : public LayoutElement {
159 Column(GridLayout::Alignment h_align,
176 virtual ~Column() {}
187 Column* GetLastMasterColumn()
416 Column* column = new Column(h_align, v_align, resize_percent, size_type, local
433 Column* column = *i; local
495 Column* column = *i; local
623 Column* column = columns_[view_state->start_col]; local
734 Column* column = current_row_col_set_->columns_[next_column_]; local
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 327 unsigned Column = D.getColumnNo();
328 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
329 Loc.getLocWithOffset(Range.second - Column));
427 unsigned Line, Column;
428 D.getLocation(&Filename, &Line, &Column);
432 // If -gcolumn-info was not used, Column will be 0. This upsets the
433 // source manager, so pass 1 if Column is not set.
434 DILoc = SourceMgr.translateFileLineCol(FE, Line, Column ? Column : 1);
454 << Filename << Line << Column;
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 265 // Print source location (file:line), along with optional column
268 unsigned Line, Column;
270 &File, &Line, &Column, nullptr);
276 Out << Column << ":";
  /external/llvm/include/llvm/MC/
MCDwarf.h 61 // Column - the column position.
62 unsigned Column;
81 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
83 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
96 /// getColumn - Get the Column of this MCDwarfLoc.
97 unsigned getColumn() const { return Column; }
114 /// setColumn - Set the Column of this MCDwarfLoc.
115 void setColumn(unsigned column) { Column = column;
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 1053 int Column;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 55 unsigned Column; // Source column.
60 : Line(L), Column(C), SourceID(S), Label(label) {}
64 unsigned getColumn() const { return Column; }
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 192 unsigned Column, unsigned Flags,
866 unsigned Column, unsigned Flags,
870 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
872 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
898 << Line << ':' << Column;
    [all...]
MCDwarf.cpp 122 unsigned Column = 0;
138 if (Column != it->getColumn()) {
139 Column = it->getColumn();
141 MCOS->EmitULEB128IntValue(Column);
    [all...]

Completed in 623 milliseconds

1 2 3