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

1 2 3 4 5

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 36 @Column(value = "hash_code", indexed = true)
39 @Column("content_url")
42 @Column("_size")
45 @Column("etag")
48 @Column(value = "last_access", indexed = true)
51 @Column(value = "last_updated")
54 @Column("_data")
  /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/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...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 32 @Column("_id")
43 public @interface Column {
FileCache.java 261 @Column(value = Columns.HASH_CODE, indexed = true)
264 @Column(Columns.CONTENT_URL)
267 @Column(Columns.FILENAME)
270 @Column(Columns.SIZE)
273 @Column(value = Columns.LAST_ACCESS, indexed = true)
  /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/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/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 13 class Column;
30 // Creates a new column set with the specified id and returns it.
36 // Returns the column set for the specified id, or NULL if one doesn't exist.
44 // Starts a new row with the specified column set.
52 // Advances past columns. Use this when the current column should not
69 // Returns the column set of the last non-padding row.
91 // Next column in the current ColumnSet.
122 float GetColumnWidth(int column);
124 Column* GetColumn(int column_index) {
136 ScopedVector<Column> columns_
    [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 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;
  /external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java 92 data.addColumn(new ReportedData.Column("JID", "jid", "text-single"));
125 Iterator<ReportedData.Column> cols = data.getColumns();
127 ReportedData.Column column = cols.next(); local
128 if (column.getVariable().equals(name)) {
133 // Column name should be the same
135 ReportedData.Column column = new ReportedData.Column(name, name, "text-single"); local
136 data.addColumn(column);
    [all...]
  /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
746 Column* column = current_row_col_set_->columns_[next_column_]; local
    [all...]
grid_layout.h 19 // a column with padding:
20 // ColumnSet* columns = layout->AddColumnSet(0); // Give this column an
22 // columns->AddColumn(FILL, // Views are horizontally resized to fill column.
23 // FILL, // Views starting in this column are vertically
25 // 1, // This column has a resize weight of 1.
29 // columns->AddPaddingColumn(0, // The padding column is not resizable.
35 // 0); // The column set to use for this row.
40 // When adding a Column you give it the default alignment for all views
41 // originating in that column. You can override this for specific views
44 // for the column
    [all...]
  /external/clang/unittests/Tooling/
TestVisitor.h 103 /// \brief Expect 'Match' *not* to occur at the given 'Line' and 'Column'.
106 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) {
107 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column));
110 /// \brief Expect 'Match' to occur at the given 'Line' and 'Column'.
114 void ExpectMatch(Twine Match, unsigned Line, unsigned Column) {
115 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column));
RewriterTestContext.h 82 SourceLocation getLocation(FileID ID, unsigned Line, unsigned Column) {
84 Sources.getFileEntryForID(ID), Line, Column);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 48 , m_paginationUnit(Column)
101 enum PaginationUnit { Column, Page };
LayoutState.h 72 bool isPaginatingColumns() const { return m_columnInfo && m_columnInfo->paginationUnit() == ColumnInfo::Column; }
109 // If the enclosing pagination model is a column model, then this will store column information for easy retrieval/manipulation.
  /external/clang/lib/Format/
WhitespaceManager.h 140 /// the specified \p Column.
141 void alignTrailingComments(unsigned Start, unsigned End, unsigned Column);
147 /// the specified \p Column.
148 void alignEscapedNewlines(unsigned Start, unsigned End, unsigned Column);
Format.cpp 330 State.Column = FirstIndent;
412 /// \brief The column of a \c ? in a conditional expression;
437 /// contains the start column of the second line. Otherwise 0.
441 /// contains the start column of the second line. Otherwise 0.
444 /// \brief The column of the first variable name in a variable declaration.
494 unsigned Column;
511 /// \brief The start column of the string literal, if we're in a string
538 if (Column != Other.Column)
539 return Column < Other.Column
    [all...]
WhitespaceManager.cpp 127 // If this comment follows an } in column 0, it probably documents the
177 unsigned Column) {
180 assert(Column >= Changes[i].StartOfTokenColumn);
181 Changes[i].Spaces += Column - Changes[i].StartOfTokenColumn;
182 Changes[i].StartOfTokenColumn = Column;
209 unsigned Column) {
214 if (C.PreviousEndOfTokenColumn + 1 > Column)
217 C.EscapedNewlineColumn = Column;
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 33 SourceLocation() : Line(), Column() {}
35 unsigned 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...]
  /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/tinyxml/
xmltest.cpp 357 XmlTest( "Error column", doc.ErrorCol(), 17 );
398 XmlTest( "Location tracking: Declaration col", declaration->Column(), 5 );
400 XmlTest( "Location tracking: room col", room->Column(), 45 );
402 XmlTest( "Location tracking: doors col", doors->Column(), 51 );
404 XmlTest( "Location tracking: Comment col", comment->Column(), 3 );
406 XmlTest( "Location tracking: text col", text->Column(), 24 );
408 XmlTest( "Location tracking: door0 col", door0->Column(), 5 );
410 XmlTest( "Location tracking: door1 col", door1->Column(), 5 );
432 XmlTest( "Location tracking: Tab 8: room col", room->Column(), 49 );
434 XmlTest( "Location tracking: Tab 8: doors col", doors->Column(), 55 )
    [all...]

Completed in 3868 milliseconds

1 2 3 4 5