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

  /external/chromium/chrome/browser/
remove_rows_table_model.h 13 // A table model that also supports removing rows. Used for example for the
17 typedef std::set<size_t> Rows;
19 // Returns whether or not the rows can be removed.
20 virtual bool CanRemoveRows(const Rows& rows) const = 0;
22 // Remove the rows from the table.
23 virtual void RemoveRows(const Rows& rows) = 0;
25 // Removes all the rows.
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 130 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
133 Rows.clear();
140 std::vector<Row> Rows;
172 /// Parse a single line table (prologue and all rows).
  /external/skia/samplecode/
SampleWarp.cpp 143 const int Rows = 16;
145 SkPoint pts[Rows * Cols];
146 patch.evalPatch(pts, Rows, Cols);
157 SkMeshUtils::Draw(canvas, bm, Rows, Cols, pts, NULL, paint);
186 const int Rows = 16;
188 SkPoint pts[Rows * Cols];
189 patch.evalPatch(pts, Rows, Cols);
204 SkMeshUtils::Draw(canvas, bm, Rows, Cols, pts, NULL, paint);
216 void init(const SkRect& bounds, int rows, int cols,
221 int rows() const { return fRows; function in class:Mesh
    [all...]

Completed in 45 milliseconds