HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 551 - 575 of 1524) sorted by null

<<21222324252627282930>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 216 * loads a row's values
222 Map<String,Object> row = new HashMap<String,Object>(); local
224 row.put(s, rs.getObject(s));
226 return row;
236 Map<String,Object> row = fillRowValues(rs); local
237 rows.put(count, row);
  /frameworks/base/core/tests/coretests/src/android/util/
InternalSelectionView.java 35 * row is selected. The rows take up the
40 * the last row's height is inflated with the remainder. For example, if the
41 * view height is 22 and there are two rows, the height of the first row is
48 * selected row
185 private int getRowHeight(int row) {
188 if (row < mNumRows - 1) {
196 public void getRectForRow(Rect rect, int row) {
197 final int rowHeight = getRowHeight(row);
198 final int top = mPaddingTop + row * rowHeight;
255 // set the row that is closest to the rec
    [all...]
  /external/opencv/cvaux/src/
cvlmeds.cpp 647 { /* row */
758 { /* row */
767 { /* row */
783 { /* row */
809 { /* row */
1421 int row, swapi, i, i_best = 0, j, j_best = 0, t; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 202 current_row = start_position.row
204 # Start with the given row and trim off everything before what should be matched.
205 current_line = lines[start_position.row][start_position.column:]
228 current_row = start_position.row
230 # Start with the given row and trim off everything past what may be matched.
231 current_line = lines[start_position.row][:start_position.column]
391 def __init__(self, row, column):
392 self.row = row
396 return '(%s, %s)' % (self.row, self.column
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
tile_view.js 152 var row = empty[0][0] ? 0 : 1; variable
157 if (!this.canUsePattern_(empty, row, col, pattern)) continue;
160 box.rect.row = row;
166 this.usePattern_(empty, row, col, pattern);
196 empty[i + rect.row][j + rect.col - baseCol] = false;
207 * @param {number} row The origin row.
213 TileView.prototype.canUsePattern_ = function(empty, row, col, pattern) {
214 if (row + pattern.h > 2 || col + pattern.w > 4
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
qunit.js     [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 305 uint32_t row = (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX local
308 memset(&cacheBuffer[row], 0, glyph.fWidth + 2 * TEXTURE_BORDER_SIZE);
312 row = cacheY * cacheWidth;
313 cacheBuffer[row + startX - TEXTURE_BORDER_SIZE] = 0;
316 cacheBuffer[row + cacheX] = mGammaTable[tempCol];
318 cacheBuffer[row + endX + TEXTURE_BORDER_SIZE - 1] = 0;
322 row = cacheY * cacheWidth;
323 memcpy(&cacheBuffer[row + startX], &bitmapBuffer[bY], glyph.fWidth);
324 cacheBuffer[row + startX - TEXTURE_BORDER_SIZE] = 0;
325 cacheBuffer[row + endX + TEXTURE_BORDER_SIZE - 1] = 0
361 uint32_t row = (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 247 * Gets the next row of apn values.
250 * @return the row or null if it's not an apn
344 ContentValues row = getRow(parser); local
345 if (row == null) {
348 insertAddingDefaults(db, CARRIERS_TABLE, row);
364 private void insertAddingDefaults(SQLiteDatabase db, String table, ContentValues row) {
366 if (row.containsKey(Telephony.Carriers.AUTH_TYPE) == false) {
367 row.put(Telephony.Carriers.AUTH_TYPE, -1);
369 if (row.containsKey(Telephony.Carriers.PROTOCOL) == false) {
370 row.put(Telephony.Carriers.PROTOCOL, "IP")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 210 row = self.cu.fetchone()
211 self.assertEqual(row[0], "Hu\x00go")
240 row = self.cu.fetchone()
241 self.assertEqual(row[0], "foo")
253 row = self.cu.fetchone()
254 self.assertEqual(row[0], "foo")
259 row = self.cu.fetchone()
260 self.assertEqual(row[0], "foo")
273 row = self.cu.fetchone()
274 self.assertEqual(row[0], "foo"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 210 row = self.cu.fetchone()
211 self.assertEqual(row[0], "Hu\x00go")
240 row = self.cu.fetchone()
241 self.assertEqual(row[0], "foo")
253 row = self.cu.fetchone()
254 self.assertEqual(row[0], "foo")
259 row = self.cu.fetchone()
260 self.assertEqual(row[0], "foo")
273 row = self.cu.fetchone()
274 self.assertEqual(row[0], "foo"
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 88 if (visited_details->row.typed_count() > 0 ||
90 HasKeyword(visited_details->row.url())) {
92 modified_details.changed_urls.push_back(visited_details->row);
177 // Because this row won't have a typed count the title and other stuff
  /external/chromium_org/chrome/browser/resources/
about_stats.js 46 node.style.display = 'table-row';
136 // The function sorts rows after the row with onclick event handler.
143 var row = cell.parentNode;
144 var startIndex = row.rowIndex + 1;
146 var tbody = row.parentNode;
152 // skip the first row
  /external/chromium_org/chrome/browser/ui/gtk/
content_setting_bubble_gtk.cc 157 int row = 0; local
159 i(popup_items.begin()); i != popup_items.end(); ++i, ++row) {
173 gtk_table_attach(GTK_TABLE(table), event_box, 0, 1, row, row + 1, local
183 gtk_table_attach(GTK_TABLE(table), button, 1, 2, row, row + 1, local
226 int row = 0; local
230 ++i, ++row) {
234 row, row + 1, GTK_FILL, GTK_FILL local
276 gtk_table_attach(GTK_TABLE(table), button, 1, 2, row, row + 1, local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
domtable.js 57 var row = document.createElement("tr");
59 row.appendChild(DOMTable_CreateCell(row_id, i));
60 return row;
  /external/chromium_org/third_party/mesa/src/src/glx/
renderpix.c 122 GLenum type, const GLvoid * row,
151 row, pc, pixelHeaderPC);
186 (*gc->fillImage) (gc, 1, width, 1, 1, format, type, row, buf,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_copypix.c 103 GLint sy, dy, stepy, row; local
149 for (row = 0; row < height; row++) {
151 width, srcx, sy + row, p );
163 for (row = 0; row < height; row++, sy += stepy, dy += stepy) {
166 /* Get row/span of source pixels */
451 GLint row; local
    [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 439 // biggest coefficient in the remaining bottom-right corner (starting at row k, col k)
463 // Now that we've found the pivot, we need to apply the row/col swaps to
469 m_lu.row(k).swap(m_lu.row(row_of_biggest_in_corner));
483 m_lu.block(k+1,k+1,rows-k-1,cols-k-1).noalias() -= m_lu.col(k).tail(rows-k-1) * m_lu.row(k).tail(cols-k-1);
593 if(i) m.row(i).head(i).setZero();
594 m.row(i).tail(cols-i) = dec().matrixLU().row(pivots.coeff(i)).tail(cols-i);
614 for(Index i = 0; i < rank(); ++i) dst.row(dec().permutationQ().indices().coeff(i)) = -m.row(i).tail(dimker)
    [all...]
  /external/eigen/test/eigen2/
eigen2_lu.cpp 20 int i = Eigen::ei_random<int>(0,m.rows()-1); // i is a random row number
25 m.row(i) += d * m.row(j);
47 for(int i = rank; i < rows; i++) m1.row(i).setZero();
  /external/libyuv/files/source/
format_conversion.cc 16 #include "libyuv/row.h"
86 // Copy a row of Bayer.
357 return -1; // Size too large for row buffer
378 SIMD_ALIGNED(uint8 row[kMaxStride * 2]);
415 BayerRow0(src_bayer, src_stride_bayer, row, width);
417 row + kMaxStride, width);
418 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width);
419 ARGBToYRow(row, dst_y, width);
420 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width);
427 BayerRow0(src_bayer, src_stride_bayer, row, width)
    [all...]
rotate_argb.cc 16 #include "libyuv/row.h"
23 // ARGBScale has a function to copy pixels to a row, striding each source
50 for (int i = 0; i < width; ++i) { // column of source to row of dest.
112 // Swap first and last row and mirror the content. Uses a temporary row.
113 SIMD_ALIGNED(uint8 row[kMaxStride]);
117 // Odd height will harmlessly mirror the middle row twice.
119 ARGBMirrorRow(src, row, width); // Mirror first row into a buffer
121 ARGBMirrorRow(src_bot, dst, width); // Mirror last row into first ro
    [all...]
  /external/llvm/utils/lit/lit/
Util.py 134 for i,row in enumerate(histo):
135 pct = float(len(row)) / len(items)
139 '*'*w, ' '*(barW-w), cDigits, len(row), cDigits, len(items)))
  /external/mesa3d/src/glx/
renderpix.c 122 GLenum type, const GLvoid * row,
151 row, pc, pixelHeaderPC);
186 (*gc->fillImage) (gc, 1, width, 1, 1, format, type, row, buf,
  /external/mesa3d/src/mesa/swrast/
s_copypix.c 103 GLint sy, dy, stepy, row; local
149 for (row = 0; row < height; row++) {
151 width, srcx, sy + row, p );
163 for (row = 0; row < height; row++, sy += stepy, dy += stepy) {
166 /* Get row/span of source pixels */
451 GLint row; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
conceal.cpp 141 int row = MB_SIZE; local
160 while (row)
189 row -= 4;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsContainerView.java 123 int row = (int) (cursor / mNumColumns); local
125 // Push the item to the next row if it can't fit on this one
129 row++;
142 // reach the end of the row
144 if (cursor < (((row + 1) * mNumColumns))) {

Completed in 1164 milliseconds

<<21222324252627282930>>