Home | History | Annotate | Download | only in autofill

Lines Matching refs:ColumnSet

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.
96 ScopedVector<ColumnSet> column_sets_;
102 // ColumnSet is used to define a set of columns.
103 // You don't create a ColumnSet directly, instead use the AddRow method
105 class ColumnSet {
107 explicit ColumnSet(int id);
108 ~ColumnSet();
116 // ID of this ColumnSet.