HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 326 - 350 of 1110) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 65 for (int row = 0; row < grid.actualRowCount; row++) {
66 int y = grid.getRowY(row);
270 for (int row = 1; row < grid.actualRowCount; row++) {
271 int y = grid.getRowY(row);
288 int row = rowMatch.cellIndex; local
292 Rect cellBounds = grid.getCellBounds(row, column, 1, 1)
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.cc 163 bool InMemoryURLIndex::IndexRow(const URLRow& row) {
164 const GURL& gurl(row.url());
170 HistoryID history_id = static_cast<HistoryID>(row.id());
171 DCHECK_LT(row.id(), std::numeric_limits<HistoryID>::max());
173 // Add the row for quick lookup in the history info store.
174 URLRow new_row(GURL(url), row.id());
175 new_row.set_visit_count(row.visit_count());
176 new_row.set_typed_count(row.typed_count());
177 new_row.set_last_visit(row.last_visit());
178 new_row.set_title(row.title())
    [all...]
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/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 472 uint32_t* row = bitmap.getAddr32(0, y); local
475 int alpha = (SkGetPackedR32(row[x]) + SkGetPackedG32(row[x]) + SkGetPackedB32(row[x])) / 3;
478 row[x] = SkAlphaMulQ(textColor, SkAlpha255To256(255 - alpha));
507 uint32_t* row = bitmap.getAddr32(0, y); local
509 row[x] |= 0xFF000000;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java 261 CalendarRow row = (CalendarRow) view.getTag(); local
262 row.synced = !row.synced;
265 if (row.synced) {
273 cb.setChecked(row.synced);
277 mChanges.put(row.id, row);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 190 final int row = hitBox.top / mMostCommonKeyHeight; local
191 if (row < rows) {
196 touchPositionCorrection.getX(row) * hitBoxWidth;
198 touchPositionCorrection.getY(row) * hitBoxHeight;
200 touchPositionCorrection.getRadius(row) * hitBoxDiagonal;
204 " [%2d] row=%d x/y/r=%7.2f/%7.2f/%5.2f %s code=%s", infoIndex, row,
206 sweetSpotRadii[infoIndex], (row < rows ? "correct" : "default"),
  /external/libyuv/files/source/
convert.cc 22 #include "libyuv/row.h"
395 // M420 is row biplanar 420: 2 rows of Y and 1 row of UV.
397 // src_stride_m420 is row planar. Normally this will be the width in pixels.
448 // Copy a row of UV.
592 // READSAFE_ODDHEIGHT - last row of odd height done with C.
593 // This policy assumes that the caller handles the last row of an odd height
844 SIMD_ALIGNED(uint8 row[kMaxStride * 2]);
907 V210ToUYVYRow(src_v210, row, width);
908 V210ToUYVYRow(src_v210 + src_stride_v210, row + kMaxStride, width)
    [all...]
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/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.c 34 #define IDX(col, row, rowspan) (col + (row * rowspan))
62 unsigned long row, col; member in struct:_Ewk_Tiled_Backing_Store_Item::__anon17983
70 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Pre_Render_Request
97 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon17988::__anon17989
182 static Ewk_Tile *_ewk_tiled_backing_store_tile_new(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom)
192 (priv->model.matrix, evas, col, row, zoom);
267 static inline Eina_Bool _ewk_tiled_backing_store_pre_render_request_add(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom, Ewk_Tiled_Backing_Store_Pre_Render_Priority priority)
281 r->row = row;
335 unsigned long col, row; local
386 unsigned long row, col; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_surface.c 285 int row, col; local
315 row = surface->h;
316 while (row--) {
318 buf = (Uint8 *)surface->pixels + row * surface->pitch + offset;
558 Uint8 *row; local
603 row = (Uint8 *)dst->pixels+dstrect->y*dst->pitch+
607 if ( !color && !((uintptr_t)row&3) && !(x&3) && !(dst->pitch&3) ) {
610 SDL_memset4(row, 0, n);
611 row += dst->pitch;
630 Uint8 *d = row;
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 53 void DWARFDebugLine::Row::postAppend() {
59 void DWARFDebugLine::Row::reset(bool default_is_stmt) {
72 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
90 for (std::vector<Row>::const_iterator pos = Rows.begin(),
103 Sequence::FirstRowIndex = row;
105 ++row; // Increase the row number.
110 Sequence::LastRowIndex = row;
115 Row::postAppend();
119 row = DoneParsingLineTable
562 DWARFDebugLine::Row row; local
580 DWARFDebugLine::Row row; local
    [all...]
  /cts/tools/dasm/src/java_cup/
emit.java 486 parse_action_row row; local
496 /* do each state (row) of the action table */
499 /* get the row */
500 row = act_tab.under_state[i];
502 /* determine the default for the row */
504 row.compute_default();
506 row.default_reduce = -1;
511 for (int j = 0; j < row.size(); j++)
514 act = row.under_term[j];
533 if (red != row.default_reduce
    [all...]
  /external/harfbuzz_ng/util/
ansi-print.cc 116 for (unsigned int row = 0; row < h; row++) {
117 color_t *p = data + x + MIN (y + row, height - 1) * stride;
118 color_t *q = s.data + row * s.stride;
379 for (unsigned int row = 0; row < rows; row++) {
381 image.copy_sub_image (cell, col * CELL_W, row * CELL_H, CELL_W, CELL_H);
  /external/icu4c/common/
rbbi.cpp 994 RBBIStateTableRow *row; local
1210 RBBIStateTableRow *row; local
    [all...]
  /external/jpeg/
jddctmgr.c 241 * coefficients scaled by scalefactor[row]*scalefactor[col], where
297 * coefficients scaled by scalefactor[row]*scalefactor[col], where
302 int row, col; local
309 for (row = 0; row < DCTSIZE; row++) {
313 aanscalefactor[row] * aanscalefactor[col]);
  /external/qemu/distrib/jpeg-6b/
jddctmgr.c 229 * coefficients scaled by scalefactor[row]*scalefactor[col], where
285 * coefficients scaled by scalefactor[row]*scalefactor[col], where
290 int row, col; local
297 for (row = 0; row < DCTSIZE; row++) {
301 aanscalefactor[row] * aanscalefactor[col]);
  /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...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 250 * Gets the next row of apn values.
253 * @return the row or null if it's not an apn
347 ContentValues row = getRow(parser); local
348 if (row == null) {
351 insertAddingDefaults(db, CARRIERS_TABLE, row);
367 private void insertAddingDefaults(SQLiteDatabase db, String table, ContentValues row) {
369 if (row.containsKey(Telephony.Carriers.AUTH_TYPE) == false) {
370 row.put(Telephony.Carriers.AUTH_TYPE, -1);
372 if (row.containsKey(Telephony.Carriers.PROTOCOL) == false) {
373 row.put(Telephony.Carriers.PROTOCOL, "IP")
    [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/llvm/utils/lit/lit/
Util.py 133 for i,row in enumerate(histo):
134 pct = float(len(row)) / len(items)
139 cDigits, len(row),
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.h 48 int row() const { return m_row; } function in class:WebCore::RenderTableCell
49 void setRow(int row) { m_row = row; }

Completed in 1543 milliseconds

<<11121314151617181920>>