HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 101 - 125 of 732) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 107 if (!eina_matrixsparse_cell_idx_get(tm->matrix, t->row, t->col, &cell)) {
267 * @param row the row number.
278 Ewk_Tile *ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom)
283 t = eina_matrixsparse_data_idx_get(tm->matrix, row, col);
301 eina_matrixsparse_data_idx_replace(tm->matrix, row, col, inl, NULL);
317 * @param row the row number.
324 Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom)
328 t = eina_matrixsparse_data_idx_get(tm->matrix, row, col)
632 unsigned long col, row; local
704 unsigned long row, col; local
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 16 - fix expose/redraw code: don't draw entire row if only part exposed
168 static void rpng2_x_display_row (ulg row);
495 " -nommx*\tdisable optimized MMX routines for decoding row filters,\n"
499 "\t\t row (for demo purposes)\n"
1084 ulg i, row; local
1617 ulg i, row, lastrow = 0; local
1867 ulg i, row; local
    [all...]
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_variance_halfpixvar16x16_hv_armv6.asm 34 add r9, r0, r1 ; pointer to pixels on the next row
36 ldr r4, [r0, #0] ; load source pixels a, row N
37 ldr r6, [r0, #1] ; load source pixels b, row N
38 ldr r5, [r9, #0] ; load source pixels c, row N+1
39 ldr r7, [r9, #1] ; load source pixels d, row N+1
41 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N
45 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1
74 ldr r4, [r0, #4] ; load source pixels a, row N
75 ldr r6, [r0, #5] ; load source pixels b, row N
76 ldr r5, [r9, #4] ; load source pixels c, row N+
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_history_api.cc 29 void GetHistoryItemDictionary(const history::URLRow& row,
31 value->SetString(keys::kIdKey, base::Int64ToString(row.id()));
32 value->SetString(keys::kUrlKey, row.url().spec());
33 value->SetString(keys::kTitleKey, row.title());
35 MilliSecondsFromTime(row.last_visit()));
36 value->SetInteger(keys::kTypedCountKey, row.typed_count());
37 value->SetInteger(keys::kVisitCountKey, row.visit_count());
40 void AddHistoryNode(const history::URLRow& row, ListValue* list) {
42 GetHistoryItemDictionary(row, dict);
46 void GetVisitInfoDictionary(const history::VisitRow& row,
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pnggccrd.c 62 * the *beginning* of the row buffer, not the end. This
68 * pixel(s) at the end of the row would have to be saved,
102 * - fixed mmxsupport()/png_do_read_interlace() first-row bug
104 * ebx (where "row" pointer was stored), it nevertheless managed to zero
106 * caused png_do_read_interlace() to return prematurely on the first row of
408 * [still broken: tops of all row-filter blocks (input/output constraints);
424 * of the row buffer, not the end (see 19991007 for details)
2053 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /external/libvpx/vp8/common/
reconinter.c 145 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
147 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
148 sppf(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
152 ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
178 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
180 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
182 x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
197 ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3);
199 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
201 x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java 51 * >Row row_attributes*<
52 * >!-- Row Content --<
57 * >/Row<
74 * >Row row_attributes*<
76 * >/Row<
117 private static final String TAG_ROW = "Row";
136 private Row mCurrentRow = null;
143 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
144 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
147 public static class Row {
408 Row row = parseRowAttributes(parser); local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.cc 515 g_signal_connect(treeview_, "row-activated",
675 std::string TaskManagerGtk::GetModelText(int row, int col_id) {
676 if (IsSharedByGroup(col_id) && !model_->IsResourceFirstInGroup(row))
681 return UTF16ToUTF8(model_->GetResourceTitle(row));
684 return UTF16ToUTF8(model_->GetResourcePrivateMemory(row));
687 return UTF16ToUTF8(model_->GetResourceSharedMemory(row));
690 return UTF16ToUTF8(model_->GetResourceCPUUsage(row));
693 return UTF16ToUTF8(model_->GetResourceNetworkUsage(row));
696 return UTF16ToUTF8(model_->GetResourceProcessId(row));
699 return UTF16ToUTF8(model_->GetResourceV8MemoryAllocatedSize(row));
802 int row = gtk_tree::GetRowNumForPath(path); local
934 int row = gtk_tree::GetRowNumForPath(path); local
966 int row = gtk_tree::GetRowNumForPath(child_path); local
    [all...]
  /development/samples/BrowserPlugin/jni/
RenderingThread.cpp 183 int row, col; local
188 for (row = 0 ; row < bitmap.height(); row ++) {
189 uint8_t* dst = &(img[(buffer.stride * (row + 0) + 0) * bpp]);
190 uint8_t* src = &(bitmapOrigin[bitmap.width() * row * bpp]);
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 47 size_t row = *i; local
48 Entry* entry = &entries_[row];
55 entries_.erase(entries_.begin() + row); // Note: |entry| is now garbage.
57 observer_->OnItemsRemoved(row, 1);
73 string16 NotificationExceptionsTableModel::GetText(int row,
75 const Entry& entry = entries_[row];
notification_exceptions_table_model.h 30 virtual string16 GetText(int row, int column_id) OVERRIDE;
  /external/skia/include/utils/
SkCamera.h 68 void setRow(int row, SkScalar a, SkScalar b, SkScalar c, SkScalar d = 0)
70 SkASSERT((unsigned)row < 3);
71 fMat[row][0] = a;
72 fMat[row][1] = b;
73 fMat[row][2] = c;
74 fMat[row][3] = d;
  /external/webkit/Tools/WebKitTestRunner/cg/
TestInvocationCG.cpp 77 for (unsigned row = 0; row < pixelsHigh; row++) {
86 for (unsigned row = 0; row < pixelsHigh; row++) {
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_neighbour.c 133 u32 i, row, col; local
142 row = col = 0;
152 if (row)
157 if (row && (col < picWidth - 1))
162 if (row && col)
171 row++;
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 104 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
121 row++;
142 row++;
160 row++;
190 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
212 row++;
  /external/chromium/app/sql/
connection_unittest.cc 96 // Last insert row ID should be valid.
97 int64 row = db().GetLastInsertRowId(); local
98 EXPECT_LT(0, row);
100 // It should be the primary key of the row we just inserted.
102 s.BindInt64(0, row);
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.cc 175 string16 TemplateURLTableModel::GetText(int row, int col_id) {
176 DCHECK(row >= 0 && row < RowCount());
177 const TemplateURL& url = entries_[row]->template_url();
201 SkBitmap TemplateURLTableModel::GetIcon(int row) {
202 DCHECK(row >= 0 && row < RowCount());
203 return entries_[row]->GetIcon();
232 int TemplateURLTableModel::GetGroupID(int row) {
233 DCHECK(row >= 0 && row < RowCount())
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 51 static inline void setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(RenderTableSection::RowStruct* row)
53 ASSERT(row && row->rowRenderer);
54 row->logicalHeight = row->rowRenderer->style()->logicalHeight();
55 if (row->logicalHeight.isRelative())
56 row->logicalHeight = Length();
110 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
111 // the anonymous row containing it, if there is one.
120 RenderObject* row = new (renderArena()) RenderTableRow(document() /* anonymous table row */) local
276 Row& row = *m_grid[i].row; local
360 Row* row = m_grid[r].row; local
1006 RenderTableRow* row = toRenderTableRow(cell->parent()); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/cairo/
PixelDumpSupportCairo.cpp 77 for (unsigned row = 0; row < pixelsHigh; row++) {
  /external/libpng/
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 379 * Within each row, a list of index, value pairs are given (as sequential
381 * (denoted with a symbol index of -1). To find the proper entry in a row
382 * we do a linear or binary search (depending on the size of the row).
391 short[] row = action_tab[state]; local
394 if (row.length < 20)
395 for (probe = 0; probe < row.length; probe++)
398 tag = row[probe++];
402 return row[probe];
409 last = (row.length-1)/2 - 1; /* leave out trailing default entry */
413 if (sym == row[probe*2]
445 short[] row = reduce_tab[state]; local
    [all...]
  /external/chromium/chrome/browser/geolocation/
geolocation_exceptions_table_model.h 31 // parent, and it has children, the row in model will be updated to have
42 virtual string16 GetText(int row, int column_id) OVERRIDE;
  /external/chromium/chrome/browser/
language_order_table_model.cc 42 string16 LanguageOrderTableModel::GetText(int row, int column_id) {
43 DCHECK(row >= 0 && row < RowCount());
45 return l10n_util::GetDisplayNameForLocale(languages_.at(row),
  /external/jpeg/
wrrle.c 131 /* Set the output buffer to the first row */
179 int row, col; local
223 for (row = cinfo->output_height-1; row >= 0; row--) {
226 (JDIMENSION) row, (JDIMENSION) 1, FALSE);
236 for (row = cinfo->output_height-1; row >= 0; row--) {
240 (JDIMENSION) row, (JDIMENSION) 1, FALSE)
    [all...]

Completed in 227 milliseconds

1 2 3 45 6 7 8 91011>>