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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/history/android/
favicon_sql_handler.h 21 virtual bool Update(const HistoryAndBookmarkRow& row,
24 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 17 // per row. This class converts these SkBitmaps to NSImages on demand, and
27 // Returns the icon of the |row|th row.
28 virtual gfx::ImageSkia GetIcon(int row) const = 0;
38 // Lazily converts the image at the given row and caches it in |icon_images_|.
39 NSImage* GetImageForRow(int row);
48 // The table model we query for row count and icons.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGridTemplateAreasValue.cpp 48 static String stringForPosition(const NamedGridAreaMap& gridAreaMap, size_t row, size_t column)
55 if (row >= coordinate.rows.resolvedInitialPosition.toInt() && row <= coordinate.rows.resolvedFinalPosition.toInt())
72 for (size_t row = 0; row < m_rowCount; ++row) {
75 builder.append(stringForPosition(m_gridAreaMap, row, column));
80 if (row != m_rowCount - 1)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_tile_common.h 25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on
28 int row, int col);
30 void vp9_tile_set_row(TileInfo *tile, const struct VP9Common *cm, int row);
  /external/chromium_org/ui/views/controls/table/
test_table_model.h 18 virtual base::string16 GetText(int row, int column_id) OVERRIDE;
19 virtual gfx::ImageSkia GetIcon(int row) OVERRIDE;
  /external/eigen/Eigen/src/Core/
NestByValue.h 50 inline const CoeffReturnType coeff(Index row, Index col) const
52 return m_expression.coeff(row, col);
55 inline Scalar& coeffRef(Index row, Index col)
57 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const PacketScalar packet(Index row, Index col) const
73 return m_expression.template packet<LoadMode>(row, col);
77 inline void writePacket(Index row, Index col, const PacketScalar& x)
79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
Flagged.h 58 inline CoeffReturnType coeff(Index row, Index col) const
60 return m_matrix.coeff(row, col);
68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
78 inline Scalar& coeffRef(Index row, Index col)
80 return m_matrix.const_cast_derived().coeffRef(row, col);
89 inline const PacketScalar packet(Index row, Index col) const
91 return m_matrix.template packet<LoadMode>(row, col);
95 inline void writePacket(Index row, Index col, const PacketScalar& x)
97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x)
    [all...]
  /external/eigen/doc/snippets/
MatrixBase_eval.cpp 5 cout << "Now we want to copy a column into a row." << endl;
6 cout << "If we do m.col(1) = m.row(0), then m becomes:" << endl;
7 m.col(1) = m.row(0);
9 cout << "Now let us instead do m.col(1) = m.row(0).eval(). Then m becomes" << endl;
11 m.col(1) = m.row(0).eval();
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 28 int row; local
29 row = MB_SIZE;
32 while (row)
76 row -= 4;
89 int row; local
91 row = B_SIZE;
92 while (row)
129 row -= 4;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.cc 23 DesktopRegion::Row::Row(int32_t top, int32_t bottom)
27 DesktopRegion::Row::~Row() {}
51 // Copy each row.
52 Row* row = it->second; local
53 it->second = new Row(*row);
59 // Iterate over rows of the tow regions and compare each row
98 Rows::iterator row = rows_.upper_bound(top); local
374 Row* row = it->second; local
    [all...]
  /external/libhevc/common/arm/
ihevc_intra_pred_chroma_planar.s 147 mov r8, #1 @row+1 (row is first 0)
148 sub r9, r4, r8 @nt-1-row (row is first 0)
150 vdup.s8 d5, r8 @row + 1
151 vdup.s8 d6, r9 @nt - 1 - row
152 vmov d7, d5 @mov #1 to d7 to used for inc for row+1 and dec for nt-1-row
154 add r12, r11, #1 @coeffs (to be reloaded after every row)
155 mov r1, r4 @nt (row counter) (dec after every row
    [all...]
  /external/chromium_org/chrome/browser/resources/options/chromeos/
keyboard_overlay.css 15 #auto-repeat-settings-section .row {
16 display: table-row;
19 #auto-repeat-settings-section .row > * {
  /external/libhevc/common/
ihevc_weighted_pred.c 117 WORD32 row, col; local
120 for(row = 0; row < ht; row++)
202 WORD32 row, col; local
205 for(row = 0; row < ht; row++)
308 WORD32 row, col; local
311 for(row = 0; row < ht; row++
413 WORD32 row, col; local
500 WORD32 row, col; local
583 WORD32 row, col; local
    [all...]
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 504 UnwindPlan::RowSP row(new UnwindPlan::Row);
509 UnwindPlan::Row::RegisterLocation initial_regloc;
521 row->SetOffset (current_func_text_offset);
522 row->SetCFARegister (m_lldb_sp_regnum);
523 row->SetCFAOffset (m_wordsize);
527 row->SetRegisterInfo (m_lldb_sp_regnum, initial_regloc);
532 row->SetRegisterInfo (m_lldb_ip_regnum, initial_regloc);
534 unwind_plan.AppendRow (row);
536 // Allocate a new Row, populate it with the existing Row contents
    [all...]
  /external/chromium_org/media/base/
yuv_convert_perftest.cc 26 // Width of the row to convert. Odd so that we exercise the ending
72 for (int row = 0; row < kSourceHeight; ++row) {
73 int chroma_row = row / 2;
75 yuv_bytes_.get() + row * kSourceWidth,
101 for (int row = 0; row < kSourceHeight; ++row) {
102 int chroma_row = row / 2
    [all...]
  /external/deqp/framework/common/
tcuMatrix.hpp 84 inline const T& operator() (int row, int col) const { return m_data[col][row]; }
85 inline T& operator() (int row, int col) { return m_data[col][row]; }
104 // Vec * Mat (row vector).
330 for (int row = 0; row < Rows; row++)
332 (*this)(row, col) = (row == col) ? T(1) : T(0)
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
HbpcdLookupDatabaseHelper.java 198 ContentValues row = null; local
200 row = getTableMccIddRow(parser);
202 row = getTableMccLookupTableRow(parser);
204 row = getTableMccSidConflictRow(parser);
206 row = getTableMccSidRangeRow(parser);
208 row = getTableNanpAreaCodeRow(parser);
211 row = getTableArbitraryMccSidMatch(parser);
216 if (row != null) {
217 db.insert(tableName, null, row);
229 ContentValues row = new ContentValues() local
250 ContentValues row = new ContentValues(); local
285 ContentValues row = new ContentValues(); local
306 ContentValues row = new ContentValues(); local
329 ContentValues row = new ContentValues(); local
348 ContentValues row = new ContentValues(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 91 /** Height assigned to a newly added row with the Add Row action */
119 * Array of positions (indexed by row) of the top edge of table cells; this
120 * corresponds to the row positions in the grid
132 * Array of positions (indexed by row) of the maximum bottom bounds of a node in the
133 * given row; this represents the visual edge of a row even when the actual row is
231 * should be positioned at the given row and column. This will skip over any nodes
235 * @param row the target row of the new nod
449 int row = declaredRowCount; local
503 int row = 0; local
516 assert nextRow > row; local
539 assert nextRow > row; local
547 int row = 0; local
644 int row = minField.getInt(rowInterval); local
762 int row = view.row; local
836 int row = view.row; local
1310 int row = Arrays.binarySearch(mTop, y); local
1347 int row = Arrays.binarySearch(mTop, y); local
1791 int row = view.row; local
1840 public int row; field in class:GridModel.ViewData
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
filters.c 28 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
46 int row, int num_rows,
49 const size_t start_offset = row * stride;
50 const int last_row = row + num_rows;
56 if (row == 0) {
60 row = 1;
67 while (row < last_row) {
71 ++row;
83 static void HorizontalUnfilter(int width, int height, int stride, int row,
    [all...]
  /external/webp/src/utils/
filters.c 28 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
46 int row, int num_rows,
49 const size_t start_offset = row * stride;
50 const int last_row = row + num_rows;
56 if (row == 0) {
60 row = 1;
67 while (row < last_row) {
71 ++row;
83 static void HorizontalUnfilter(int width, int height, int stride, int row,
    [all...]
  /external/libhevc/common/x86/
ihevc_inter_pred_filters_sse42_intr.c 117 WORD32 row, col; local
125 for(row = 0; row < ht; row += 4)
130 src0_16x8b = _mm_loadl_epi64((__m128i *)(pu1_src)); /* row =0 */
131 src1_16x8b = _mm_loadl_epi64((__m128i *)(pu1_src + 1 * src_strd)); /* row =1 */
132 src2_16x8b = _mm_loadl_epi64((__m128i *)(pu1_src + 2 * src_strd)); /* row =2 */
133 src3_16x8b = _mm_loadl_epi64((__m128i *)(pu1_src + 3 * src_strd)); /* row =3 */
146 _mm_storeu_si128((__m128i *)(pi2_dst), src0_16x8b); /* row =0 */
147 _mm_storeu_si128((__m128i *)(pi2_dst + 1 * dst_strd), src1_16x8b); /* row =1 *
244 WORD32 row, col, wdx2; local
465 WORD32 row, col, wdx2; local
    [all...]
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 46 getValue(int row, int column)
48 if (row >= mRowGapStart)
49 row += mRowGapLength;
51 Object value = mValues[row * mColumns + column];
57 setValue(int row, int column, E value)
59 if (row >= mRowGapStart)
60 row += mRowGapLength;
62 mValues[row * mColumns + column] = value;
66 insertAt(int row, E[] values)
68 moveRowGapTo(row);
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_convert.cpp 170 int row, col; local
173 for (row = 0; row < 256; row++) {
174 int lut_offset = lut_1 - row;
181 dest_pal[row] = ((FX_DWORD)r << 16) | ((FX_DWORD)g << 8) | b | 0xff000000;
182 aLut[lut_offset] = row;
185 for (row = 0; row < 256; row++) {
264 int row, col; local
535 int row, col; local
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
imagetesthandler.cpp 61 void ImageTestHandler::drawPoint(int row, int column, const Vec3i &color) {
62 if ((row >= 0) && (column >= 0) &&
63 (column < mDebugWidth) && (row < mDebugHeight)) {
64 mDebugOutput[(row*mDebugWidth + column) * 4] = color.r();
65 mDebugOutput[(row*mDebugWidth + column) * 4+1] = color.g();
66 mDebugOutput[(row*mDebugWidth + column) * 4+2] = color.b();
67 mDebugOutput[(row*mDebugWidth + column) * 4+3] = 255;
  /external/chromium_org/tools/telemetry/telemetry/results/
csv_output_formatter.py 52 row = ['page_name']
55 row.append('%s (%s)' % (value_name, units))
56 csv_writer.writerow(row)
62 row = [page.display_name]
70 row.append('%s' % value.GetRepresentativeNumber())
72 row.append('-')
73 csv_writer.writerow(row)

Completed in 1320 milliseconds

1 2 3 45 6 7 8 91011>>