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

<<21222324252627282930>>

  /external/guava/guava/src/com/google/common/collect/
RegularImmutableTable.java 97 * expected and that isn't documented in the Javadoc. If a row Comparator
98 * is provided, cellSet() iterates across the columns in the first row,
99 * the columns in the second row, etc. If a column Comparator is provided
100 * but a row Comparator isn't, cellSet() iterates across the rows in the
234 @Override public ImmutableMap<C, V> row(R rowKey) { method
251 Map<C, V> row = rowMap.get(rowKey); local
252 return (row != null) && row.containsKey(columnKey);
265 Map<C, V> row = rowMap.get(rowKey); local
266 return (row == null) ? null : row.get(columnKey)
    [all...]
  /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 335 protected View updateNotificationVetoButton(View row, StatusBarNotification n) {
336 View vetoButton = row.findViewById(R.id.veto);
338 && mInterruptingNotificationEntry.row == row)) {
630 // create the row view
633 ExpandableNotificationRow row = (ExpandableNotificationRow) inflater.inflate(
637 row.setTag(sbn.getPackageName());
639 workAroundBadLayerDrawableOpacity(row);
640 View vetoButton = updateNotificationVetoButton(row, sbn);
647 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...]
  /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) {
180 // when src pointer moves to next row.
201 for (int row = 0; row < height; ++row) {
246 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 205 .resource-cookies-view .data-grid .row-group {
300 .resource-websocket-row-outcoming {
304 .resource-websocket-row-outcoming:not(.selected) td {
308 .resource-websocket-row-outcoming:not(.selected) td, .resource-websocket-row-outcoming:not(.selected) + tr td {
312 .resource-websocket-row-opcode {
317 .resource-websocket-row-opcode td {
321 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td {
325 .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 251 my $row = 0; # Current row number during iteration
339 $overview->setPixel($column++, $row,
345 $overview->setPixel($column++, $row,
353 $overview->setPixel($column++, $row, $color_back);
358 $row++;
  /external/chromium_org/third_party/lcov-1.9/bin/
genpng 254 my $row = 0; # Current row number during iteration
342 $overview->setPixel($column++, $row,
348 $overview->setPixel($column++, $row,
356 $overview->setPixel($column++, $row, $color_back);
361 $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]);

Completed in 1678 milliseconds

<<21222324252627282930>>