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);
223 ColumnSet* GetLastValidColumnSet();
242 ColumnSet* current_row_col_set_;
254 mutable std::vector<ColumnSet*> column_sets_;
265 // ColumnSet is used to define a set of columns. GridLayout may have any
266 // number of ColumnSets. You don't create a ColumnSet directly, instea
    [all...]
grid_layout.cc 184 friend class ColumnSet;
262 Row(int height, float resize_percent, ColumnSet* column_set)
277 ColumnSet* column_set() {
299 ColumnSet* column_set_;
312 ViewState(ColumnSet* column_set, View* view, int start_col, int start_row,
335 ColumnSet* const column_set;
371 // ColumnSet -------------------------------------------------------------
373 ColumnSet::ColumnSet(int id) : id_(id) {
376 ColumnSet::~ColumnSet()
    [all...]

Completed in 855 milliseconds