HomeSort by relevance Sort by last modified time
    Searched defs:Rows (Results 1 - 4 of 4) 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/skia/gpu/src/
GrDrawMesh.cpp 32 void GrMesh::init(const SkRect& bounds, int rows, int cols,
34 SkASSERT(rows > 0 && cols > 0);
37 fRows = rows;
41 fCount = (rows + 1) * (cols + 1);
46 fIndexCount = rows * cols * 6;
50 const SkScalar dx = bounds.width() / rows;
53 const SkScalar dtx = texture.width() / rows;
58 for (int x = 0; x <= rows; x++) {
64 if (y < cols && x < rows) {
66 *idx++ = index + rows + 1
    [all...]
  /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 136 const int Rows = 16;
138 SkPoint pts[Rows * Cols];
139 patch.evalPatch(pts, Rows, Cols);
150 SkMeshUtils::Draw(canvas, bm, Rows, Cols, pts, NULL, paint);
179 const int Rows = 16;
181 SkPoint pts[Rows * Cols];
182 patch.evalPatch(pts, Rows, Cols);
197 SkMeshUtils::Draw(canvas, bm, Rows, Cols, pts, NULL, paint);
209 void init(const SkRect& bounds, int rows, int cols,
214 int rows() const { return fRows; function in class:Mesh
    [all...]

Completed in 73 milliseconds