HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 526 - 550 of 1550) sorted by null

<<21222324252627282930>>

  /external/skia/src/core/
SkRegion_rects.cpp 70 struct Row {
76 SkTDArray<Row> fRows;
95 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size);
96 SkRegion::RunType* rowHead = row;
101 // record the L R values for this row
108 *row++ = edge->fX;
122 *row++ = currR;
123 *row++ = edge->fX;
131 *row++ = currR;
134 int rowCount = row - rowHead
    [all...]
  /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...]
  /external/chromium_org/chrome/browser/importer/
in_process_importer_bridge.cc 35 history::URLRow row(it->url);
36 row.set_title(it->title);
37 row.set_visit_count(it->visit_count);
38 row.set_typed_count(it->typed_count);
39 row.set_last_visit(it->last_visit);
40 row.set_hidden(it->hidden);
41 converted.push_back(row);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
viewrtree.tcl 89 grid configure .select -row 0 -column 0 -columnspan 2 -sticky nsew
90 grid configure .b -row 1 -column 0 -columnspan 2 -sticky nsew
91 grid configure .l -row 2 -column 0 -sticky nsew
92 grid configure .status -row 3 -column 0 -columnspan 3 -sticky nsew
94 grid configure .title -row 0 -column 2 -sticky nsew
95 grid configure .c -row 1 -column 2 -rowspan 2 -sticky nsew
96 grid configure .ls -row 2 -column 1 -sticky nsew
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
BaseStatusBar.java 333 protected View updateNotificationVetoButton(View row, StatusBarNotification n) {
334 View vetoButton = row.findViewById(R.id.veto);
336 && mInterruptingNotificationEntry.row == row)) {
628 // create the row view
631 ExpandableNotificationRow row = (ExpandableNotificationRow) inflater.inflate(
635 row.setTag(sbn.getPackageName());
637 workAroundBadLayerDrawableOpacity(row);
638 View vetoButton = updateNotificationVetoButton(row, sbn);
645 ViewGroup content = (ViewGroup)row.findViewById(R.id.content)
    [all...]
  /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"),
276 Then we need to compute the center of the top row that we need to evaluate, as we'll iterate
  /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...]
  /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...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 253 final RowBuilder row = result.newRow(); local
254 row.add(Document.COLUMN_DOCUMENT_ID, docId);
255 row.add(Document.COLUMN_DISPLAY_NAME, displayName);
256 row.add(Document.COLUMN_SIZE, file.length());
257 row.add(Document.COLUMN_MIME_TYPE, mimeType);
258 row.add(Document.COLUMN_FLAGS, flags);
263 row.add(Document.COLUMN_LAST_MODIFIED, lastModified);
275 final RowBuilder row = result.newRow(); local
276 row.add(Root.COLUMN_ROOT_ID, root.rootId);
277 row.add(Root.COLUMN_FLAGS, root.flags)
    [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/chromium_org/media/base/
video_util.cc 46 for (int row = 0; row < rows_to_copy; ++row) {
181 // when src pointer moves to next row.
202 for (int row = 0; row < height; ++row) {
247 for (int row = 0; row < num_rows; ++row) {
    [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/chromium_org/chrome/browser/history/
url_index_private_data.h 75 // Adds the history item in |row| to the index if it does not already already
76 // exist and it meets the minimum 'quick' criteria. If the row already exists
77 // in the index then the index will be updated if the row still meets the
78 // criteria, otherwise the row will be removed from the index. Returns true
85 const URLRow& row,
247 // Indexes one URL history item as described by |row|. Returns true if the
248 // row was actually indexed. |languages| gives a list of language encodings by
259 const URLRow& row,
263 // Parses and indexes the words in the URL and page title of |row| and
267 void AddRowWordsToIndex(const URLRow& row,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
networkPanel.css 202 .resource-cookies-view .data-grid .row-group {
294 .resource-websocket-row-outcoming {
298 .resource-websocket-row-outcoming:not(.selected) td {
302 .resource-websocket-row-outcoming:not(.selected) td, .resource-websocket-row-outcoming:not(.selected) + tr td {
306 .resource-websocket-row-opcode {
311 .resource-websocket-row-opcode td {
315 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td {
319 .resource-websocket-row-error
    [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbi.cpp 933 RBBIStateTableRow *row; local
964 row = (RBBIStateTableRow *)
1144 RBBIStateTableRow *row; local
    [all...]
  /external/chromium_org/third_party/lcov/bin/
genpng 254 my $row = 0; # Current row number during iteration
347 $overview->setPixel($column++, $row,
353 $overview->setPixel($column++, $row,
361 $overview->setPixel($column++, $row, $color_back);
366 $row++;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 114 GLint row, col; local
135 for (row = first; row != (last+incr); row += incr) {
139 y + row, x);
  /external/icu4c/common/
rbbi.cpp 994 RBBIStateTableRow *row; local
1210 RBBIStateTableRow *row; local
    [all...]
  /external/jpeg/
jddctmgr.c 269 * coefficients scaled by scalefactor[row]*scalefactor[col], where
325 * coefficients scaled by scalefactor[row]*scalefactor[col], where
330 int row, col; local
337 for (row = 0; row < DCTSIZE; row++) {
341 aanscalefactor[row] * aanscalefactor[col]);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 114 GLint row, col; local
135 for (row = first; row != (last+incr); row += incr) {
139 y + row, x);
  /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);

Completed in 507 milliseconds

<<21222324252627282930>>