HomeSort by relevance Sort by last modified time
    Searched refs:rows (Results 1 - 25 of 421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/include/llvm/CodeGen/PBQP/
Math.h 116 Matrix(unsigned rows, unsigned cols) :
117 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
122 Matrix(unsigned rows, unsigned cols, PBQPNum initVal) :
123 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
124 std::fill(data, data + (rows * cols), initVal);
129 rows(m.rows), cols(m.cols), data(new PBQPNum[rows * cols])
    [all...]
  /external/skia/src/utils/
SkMeshUtils.cpp 21 int texW, int texH, int rows, int cols) {
22 if (rows < 2 || cols < 2) {
34 fTexCount = rows * cols;
35 rows -= 1;
37 fIndexCount = rows * cols * 6;
54 for (int x = 0; x < rows; x++) {
56 *idx++ = index + rows + 1;
60 *idx++ = index + rows + 1;
61 *idx++ = index + rows + 2;
72 const SkScalar dx = SkIntToScalar(texW) / rows;
    [all...]
  /external/skia/include/utils/
SkMeshUtils.h 23 bool init(int texW, int texH, int rows, int cols) {
24 return this->init(NULL, NULL, texW, texH, rows, cols);
28 int texW, int texH, int rows, int cols);
45 static void Draw(SkCanvas*, const SkBitmap&, int rows, int cols,
  /external/chromium/chrome/browser/geolocation/
geolocation_exceptions_table_model_unittest.cc 65 GeolocationExceptionsTableModel::Rows rows; local
66 rows.insert(0U);
67 EXPECT_TRUE(model_->CanRemoveRows(rows));
76 EXPECT_FALSE(model_->CanRemoveRows(rows));
79 rows.clear();
80 rows.insert(1U);
81 rows.insert(2U);
82 EXPECT_TRUE(model_->CanRemoveRows(rows));
91 GeolocationExceptionsTableModel::Rows rows local
    [all...]
geolocation_exceptions_table_model.h 25 // Return whether the given set of rows can be removed. A parent with setting
28 virtual bool CanRemoveRows(const Rows& rows) const;
35 virtual void RemoveRows(const Rows& rows);
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model_unittest.cc 109 RemoveRowsTableModel::Rows rows; local
110 rows.insert(0); // allowed.com
111 rows.insert(3); // e-allowed2.com
112 model_->RemoveRows(rows);
119 RemoveRowsTableModel::Rows rows; local
120 rows.insert(0);
121 rows.insert(1);
122 rows.insert(2)
    [all...]
notification_exceptions_table_model.h 24 virtual bool CanRemoveRows(const Rows& rows) const;
25 virtual void RemoveRows(const Rows& rows);
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteCursorTest.java 81 Set<Integer> rows = new HashSet<Integer>(); local
86 rows.add(j); // store in a hashtable so we can verify the results from cursor later on
90 assertEquals(N, rows.size());
102 assertTrue(rows.contains(val));
103 assertTrue(rows.remove(val));
105 // did I see all the rows in the table?
106 assertTrue(rows.isEmpty());
109 rows = new HashSet<Integer>();
113 rows.add(j);
122 assertEquals(M, rows.size())
    [all...]
  /external/markdown/markdown/extensions/
tables.py 25 rows = block.split('\n')
26 return (len(rows) > 2 and '|' in rows[0] and
27 '|' in rows[1] and '-' in rows[1] and
28 rows[1][0] in ['|', ':', '-'])
34 rows = block[2:]
55 for row in rows:
imagelinks.py 55 rows = []
72 for row in rows:
99 rows.append([]) # start a new row
109 rows[-1].append((photo_url, title))
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 39 * Number of rows in the result set.
57 * Rows of the result set. Each row is stored as a String array.
60 public Vector rows; field in class:TableResult
63 * Maximum number of rows to hold in the table.
69 * Flag to indicate Maximum number of rows condition.
83 * Create an empty result set with maximum number of rows.
98 rows = new Vector();
130 rows.addElement(rowdata);
150 String row[] = (String[]) rows.elementAt(i);
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3DLoading.java 40 int rows = 4;//4 * 4 local
42 q.scaleTextureCoordinates(new Vector2f(rows, rows));
46 material.setInt("Rows", rows);
  /external/opencv/cvaux/src/
cvvideo.cpp 65 frame->rows != even->rows*2 || odd->rows != even->rows )
  /external/libvpx/vp8/common/
debugmodes.c 16 void vp8_print_modes_and_motion_vectors(MODE_INFO *mi, int rows, int cols, int frame)
28 for (mb_row = 0; mb_row < rows; mb_row++)
47 for (mb_row = 0; mb_row < rows; mb_row++)
67 for (mb_row = 0; mb_row < rows; mb_row++)
89 for (b_row = 0; b_row < 4 * rows; b_row++)
115 for (mb_row = 0; mb_row < rows; mb_row++)
137 for (b_row = 0; b_row < 4 * rows; b_row++)
  /build/tools/
compare_fileslist.py 46 rows = []
54 rows.append(row)
55 rows = sorted(rows, key=lambda x: x[0])
89 for row in rows:
  /external/valgrind/main/drd/tests/
matinv.c 35 int rows; member in struct:gj_threadinfo
53 /** Allocate memory for a matrix with the specified number of rows and
56 static elem_t* new_matrix(const int rows, const int cols)
58 assert(rows > 0);
60 return malloc(rows * cols * sizeof(elem_t));
70 static void init_matrix(elem_t* const a, const int rows, const int cols)
73 for (i = 0; i < rows; i++)
75 for (j = 0; j < rows; j++)
84 const elem_t* const a, const int rows, const int cols)
88 for (i = 0; i < rows; i++
174 const int rows = p->rows; local
    [all...]
  /external/icu4c/common/
propsvec.c 31 int32_t rows; member in struct:UPropsVectors
67 pv->rows=2+(UPVEC_MAX_CP-UPVEC_FIRST_SPECIAL_CP);
69 /* set the all-Unicode row and the special-value rows */
71 uprv_memset(row, 0, pv->rows*columns*4);
94 int32_t columns, i, start, limit, prevRow, rows; local
97 rows=limit=pv->rows;
183 /* find the rows whose ranges overlap with the input range */
185 /* find the first and last rows, always successful */
190 * Rows need to be split if they partially overlap with th
199 int32_t count, rows; local
335 int32_t i, columns, valueColumns, rows, count; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTimingView.js 75 var rows = [];
84 rows.push(row);
120 for (var i = 0; i < rows.length; ++i) {
125 td.textContent = rows[i].title;
136 bar.className = "network-timing-bar " + rows[i].className;
137 bar.style.left = scale * rows[i].start + "px";
138 bar.style.right = scale * (total - rows[i].end) + "px";
139 bar.style.backgroundColor = rows[i].color;
145 if (total - rows[i].end < rows[i].start
    [all...]
  /external/opencv/cv/src/
cvkdtree.cpp 91 assert(results->rows == d->rows);
92 assert(results->rows == dist->rows);
96 for (int j = 0; j < d->rows; ++j) {
120 int rn = results->rows * results->cols;
141 std::vector<int> tmp(mat->rows);
174 assert(bounds_min->rows * bounds_min->cols == dims());
175 assert(bounds_max->rows * bounds_max->cols == dims());
218 if (results->rows != desc->rows && results->cols != k
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableSectionElement.cpp 66 RefPtr<HTMLCollection> children = rows();
88 RefPtr<HTMLCollection> children = rows();
101 int rows = 0; local
105 rows++;
109 return rows;
152 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() function in class:WebCore::HTMLTableSectionElement
HTMLTableSectionElement.idl 30 readonly attribute HTMLCollection rows;
  /external/webkit/Source/WebCore/storage/
SQLResultSet.idl 36 readonly attribute SQLResultSetRowList rows;
  /external/replicaisland/src/com/replica/replicaisland/
TiledWorld.java 35 public TiledWorld(int cols, int rows) {
37 mTilesArray = new int[cols][rows];
38 mRowCount = rows;
42 for (int y = 0; y < rows; y++) {
  /external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/
rows.js 1 description('Test behavior of the HTMLTableSectionElement rows attribute in cases where there is unusual nesting.');
10 return body.rows.length;

Completed in 785 milliseconds

1 2 3 4 5 6 7 8 91011>>