HomeSort by relevance Sort by last modified time
    Searched refs:Column (Results 1 - 25 of 109) 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/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/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; }
  /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/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.cpp 74 State.Column = FirstIndent;
147 State.Column > State.Stack.back().Indent && // Breaking saves columns.
155 getLengthToMatchingParen(Previous) + State.Column > getColumnLimit(State))
162 if (State.Column < getNewLineColumn(State))
243 State.Column += WhitespaceLength;
264 State.Stack.back().VariablePos = State.Column;
281 Spaces, State.Column + Spaces);
288 State.Column + Spaces + Current.ColumnWidth)
292 State.Stack.back().ColonPos = State.Column + Spaces + Current.ColumnWidth;
297 State.Stack.back().Indent = State.Column + Spaces
    [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...]
WhitespaceManager.h 67 /// relative column offset between a line of a block comment and the start of
155 // comment. \c IndentationOffset is a relative column offset to this
156 // change, so that the correct column can be reconstructed at the end of
171 /// the specified \p Column.
172 void alignTrailingComments(unsigned Start, unsigned End, unsigned Column);
178 /// the specified \p Column.
179 void alignEscapedNewlines(unsigned Start, unsigned End, unsigned 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/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 &&
  /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/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/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.
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...]
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/lib/Frontend/
LogDiagnosticPrinter.cpp 62 if (DE.Column != 0) {
63 OS << " <key>column</key>\n"
65 EmitInteger(OS, DE.Column) << '\n';
138 DE.Line = DE.Column = 0;
154 DE.Column = PLoc.getColumn();
  /external/clang/unittests/Tooling/
TestVisitor.h 120 /// \brief Expect 'Match' *not* to occur at the given 'Line' and 'Column'.
123 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) {
124 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column));
127 /// \brief Expect 'Match' to occur at the given 'Line' and 'Column'.
131 void ExpectMatch(Twine Match, unsigned Line, unsigned Column) {
132 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column));
RewriterTestContext.h 80 SourceLocation getLocation(FileID ID, unsigned Line, unsigned Column) {
82 Sources.getFileEntryForID(ID), Line, Column);
  /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/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/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 1987 milliseconds

1 2 3 4 5