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

1 2

  /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/chromium_org/chrome/browser/
certificate_manager_model.h 25 enum Column {
56 // Get the data to be displayed in |column| for the given |cert|.
57 base::string16 GetColumnText(const net::X509Certificate& cert, Column column) const;
  /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;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 32 @Column("_id")
43 public @interface Column {
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
mosaic_mode.js 817 * @return {Mosaic.Column} The last column or null for empty layout.
848 // |Mosaic.Column.density_| tracks the state of the 'local' backtracking
850 // It starts with the current global density and decreases it until the column
856 this.newColumn_ = new Mosaic.Column(
870 continue; // Column is incomplete.
1007 var column = this.getColumnIndexByTile_(index);
1008 if (column < 0) {
1009 console.error('Cannot find column for tile #' + index);
1013 var row = this.columns_[column].getRowByTileIndex(index)
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 36 uint32_t Column;
40 Line(0), Column(0) {}
43 uint32_t line, uint32_t column)
45 Line(line), Column(column) {}
50 uint32_t getColumn() const { return Column; }
53 return Line == RHS.Line && Column == RHS.Column &&
  /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/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/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 48 , m_paginationUnit(Column)
101 enum PaginationUnit { Column, Page };
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 33 SourceLocation() : Line(), Column() {}
35 unsigned Column;
  /external/clang/unittests/AST/
MatchVerifier.h 135 void expectLocation(unsigned Line, unsigned Column) {
137 ExpectColumn = Column;
144 unsigned Column = Result.SourceManager->getSpellingColumnNumber(Loc);
145 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/chromium_org/ui/views/layout/
grid_layout.cc 27 // Reset the layout width of each column.
38 // Reset the layout width of each column.
152 // Column -------------------------------------------------------------
154 // As the name implies, this represents a Column. Column contains default
155 // values for views originating in this column.
156 class Column : public LayoutElement {
158 Column(GridLayout::Alignment h_align,
177 virtual ~Column() {}
188 Column* GetLastMasterColumn()
423 Column* column = new Column(h_align, v_align, resize_percent, size_type, local
441 Column* column = *i; local
503 Column* column = *i; local
631 Column* column = columns_[view_state->start_col]; local
742 Column* column = current_row_col_set_->columns_[next_column_]; local
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 271 unsigned Column = D.getColumnNo();
272 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
273 Loc.getLocWithOffset(Range.second - Column));
CGBuiltin.cpp 752 int Column = getTargetHooks().getDwarfEHStackPointer(CGM);
753 if (Column == -1) {
757 return RValue::get(llvm::ConstantInt::get(Ty, Column, true));
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 249 // Print source location (file:line), along with optional column
252 unsigned Line, Column;
254 &File, &Line, &Column, 0);
260 Out << Column << ":";
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 349 uint32_t &Line, uint32_t &Column) {
356 // Take file number and line/column from the row.
362 Column = Row.Column;
374 uint32_t Column = 0;
393 FileName, Line, Column);
396 Line, Column);
444 // Take file number and line/column from the row.
451 FuncNameRef, Row.Line, Row.Column)));
476 uint32_t Column = 0
    [all...]
DWARFDebugLine.h 105 // An unsigned integer indicating a column number within a source line.
108 uint16_t Column;
  /external/llvm/include/llvm/MC/
MCDwarf.h 80 // Column - the column position.
81 unsigned Column;
100 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
102 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
115 /// getColumn - Get the Column of this MCDwarfLoc.
116 unsigned getColumn() const { return Column; }
133 /// setColumn - Set the Column of this MCDwarfLoc.
134 void setColumn(unsigned column) { Column = column;
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 860 int Column;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 49 unsigned Column; // Source column.
54 : Line(L), Column(C), SourceID(S), Label(label) {}
58 unsigned getColumn() const { return Column; }
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 213 unsigned Column, unsigned Flags,
847 unsigned Column, unsigned Flags,
851 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
856 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
882 << Line << ':' << Column;
    [all...]
MCDwarf.cpp 137 unsigned Column = 0;
152 if (Column != it->getColumn()) {
153 Column = it->getColumn();
155 MCOS->EmitULEB128IntValue(Column);
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 227 The row and column are 1-based. (That is the first row and first column is
229 a row and column value.
231 Generally, the row and column value will be set when the TiXmlDocument::Load(),
239 There is a minor performance cost to computing the row and column. Computation
245 int Column() const { return location.col + 1; } ///< See Row()
    [all...]

Completed in 1083 milliseconds

1 2