HomeSort by relevance Sort by last modified time
    Searched defs:ColumnSet (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 14 class ColumnSet;
19 // Each row has exactly one ColumnSet, ColumnSets can be shared between rows.
32 // Layout takes ownership of the ColumnSet and will delete it when
34 ColumnSet* AddColumnSet(int id);
37 ColumnSet* GetColumnSet(int id);
48 // and returns a new ColumnSet associated with it. All rows created by this
50 ColumnSet* AddRow();
70 ColumnSet* GetLastValidColumnSet();
91 // Next column in the current ColumnSet.
94 int current_auto_id_; // Starting value for autogenerated columnset ids
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.h 20 // ColumnSet* columns = layout->AddColumnSet(0); // Give this column an
64 class ColumnSet;
114 // GridLayout takes ownership of the ColumnSet and will delete it when
116 ColumnSet* AddColumnSet(int id);
119 ColumnSet* GetColumnSet(int id);
219 ColumnSet* GetLastValidColumnSet();
238 ColumnSet* current_row_col_set_;
250 std::vector<ColumnSet*> column_sets_;
261 // ColumnSet is used to define a set of columns. GridLayout may have any
262 // number of ColumnSets. You don't create a ColumnSet directly, instea
    [all...]
grid_layout.cc 185 friend class ColumnSet;
203 // Index of this column in the ColumnSet.
267 ColumnSet* column_set)
283 ColumnSet* column_set() {
306 ColumnSet* column_set_;
319 ViewState(ColumnSet* column_set, View* view, int start_col, int start_row,
342 ColumnSet* const column_set;
378 // ColumnSet -------------------------------------------------------------
380 ColumnSet::ColumnSet(int id) : id_(id)
    [all...]

Completed in 41 milliseconds