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

<<41424344454647484950>>

  /external/chromium_org/third_party/WebKit/Source/core/css/
mediaControls.css 66 -webkit-flex-direction: row;
141 -webkit-flex-direction: row;
215 -webkit-flex-direction: row; /* This property is updated by C++ code. */
  /external/chromium_org/third_party/libpng/
png.c 588 int row; local
589 for (row = 0; row < (int)info_ptr->height; row++)
591 png_free(png_ptr, info_ptr->row_pointers[row]);
592 info_ptr->row_pointers[row] = NULL;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mipmap.c 149 * row in the dest image. It's legal for the two source rows to point
1464 GLint row, srcRowStep; local
1556 GLint img, row; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState.cpp 567 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local
572 sk_memset32(colors, row[0], n);
584 memcpy(colors, row + ix, n * sizeof(SkPMColor));
593 sk_memset32(colors, row[maxX], count);
641 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local
646 memcpy(colors, row + ix, n * sizeof(SkPMColor));
    [all...]
SkBitmap.cpp 484 // This implementation will write bytes beyond the end of each row,
485 // excluding the last row, if the bitmap's stride is greater than
502 for (uint32_t row = 0; row < fHeight;
503 row++, srcP += fRowBytes, dstP += dstRowBytes) {
673 const uint8_t* row = bm.getAddr8(0, y); local
675 a &= row[x];
701 const SkPMColor16* row = bm.getAddr16(0, y); local
703 c &= row[x];
714 const SkPMColor* row = bm.getAddr32(0, y) local
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 390 uint8_t* row = base; local
392 uint8_t* bmRow = row;
394 row += rowBytes;
852 uint8_t* row = base; local
854 uint8_t* bmRow = row;
856 row += rb;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/arm/armv6/
vp8_mse16x16_armv6.asm 108 add r0, r0, r1 ; set src_ptr to next row
111 add r2, r2, r3 ; set dst_ptr to next row
119 subs r12, r12, #1 ; next row
  /external/mesa3d/src/mesa/main/
mipmap.c 142 * row in the dest image. It's legal for the two source rows to point
1457 GLint row, srcRowStep; local
1549 GLint img, row; local
    [all...]
  /external/skia/src/core/
SkBitmapProcState.cpp 567 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local
572 sk_memset32(colors, row[0], n);
584 memcpy(colors, row + ix, n * sizeof(SkPMColor));
593 sk_memset32(colors, row[maxX], count);
641 const SkPMColor* row = s.fBitmap->getAddr32(0, iy); local
646 memcpy(colors, row + ix, n * sizeof(SkPMColor));
    [all...]
SkBitmap.cpp 484 // This implementation will write bytes beyond the end of each row,
485 // excluding the last row, if the bitmap's stride is greater than
502 for (uint32_t row = 0; row < fHeight;
503 row++, srcP += fRowBytes, dstP += dstRowBytes) {
673 const uint8_t* row = bm.getAddr8(0, y); local
675 a &= row[x];
701 const SkPMColor16* row = bm.getAddr16(0, y); local
703 c &= row[x];
714 const SkPMColor* row = bm.getAddr32(0, y) local
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 390 uint8_t* row = base; local
392 uint8_t* bmRow = row;
394 row += rowBytes;
856 uint8_t* row = base; local
858 uint8_t* bmRow = row;
860 row += rb;
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 122 for row in value:
124 index = self.InsertStringItem(sys.maxint, row)
126 self.SetStringItem(index, iCol, row)
180 for row in value:
182 index = self.InsertStringItem(sys.maxint, row)
184 self.SetStringItem(index, iCol, row)
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 426 ref_mv_full.as_mv.row = ref_mv->as_mv.row >> 3;
436 best_mv->row = tmp_mv.as_mv.row;
460 best_mv->row = tmp_mv.as_mv.row;
526 // for each macroblock row in image
663 mv.as_mv.row <<= 3;
674 sum_mvr += mv.as_mv.row;
675 sum_mvr_abs += abs(mv.as_mv.row);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parse.y 182 %token RANGE RESULT ROW
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
postproc_sse2.asm 219 jnz .nextrow ;next row
273 ; this copies the last row down into the border 8 rows
279 movq xmm1, QWORD ptr[rdi] ; first row
290 ; this copies the first row up into the border 8 rows
292 movq xmm1, QWORD ptr[rdi] ; first row
  /external/mesa3d/src/mesa/program/
program_parse.y 182 %token RANGE RESULT ROW
    [all...]
  /external/chromium_org/chrome/browser/download/
download_browsertest.cc 376 bool HasDataAndName(const history::DownloadRow& row) {
377 return row.received_bytes > 0 && !row.target_path.empty();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.cpp 738 uint32_t* row = misspellBitmap[index]->getAddr32(0, x); local
739 row[0] = colors[index][x * 2];
740 row[1] = colors[index][x * 2 + 1];
741 row[2] = colors[index][x * 2];
742 row[3] = transparentColor;
759 uint32_t* row = misspellBitmap[index]->getAddr32(0, x); local
760 row[0] = colors[index][x * 3];
761 row[1] = colors[index][x * 3 + 1];
762 row[2] = colors[index][x * 3 + 2];
763 row[3] = colors[index][x * 3 + 2]
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_util.cc 216 for (guint row = 0; text; ++row) {
217 gtk_table_resize(GTK_TABLE(table), row + 1, 2); local
225 0, 1, row, row + 1, local
229 1, 2, row, row + 1); local
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service.cc 564 history::URLRow row(url);
565 row.set_title(title);
566 row.set_visit_count(visit_count);
567 row.set_typed_count(typed_count);
568 row.set_last_visit(last_visit);
569 row.set_hidden(hidden);
572 rows.push_back(row);
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
Intermediate.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_csv.py 319 for i, row in enumerate(csv.reader(fileobj)):
320 self.assertEqual(row, rows[i])
611 ### "long" means the row is longer than the number of fieldnames
612 ### "short" means there are fewer elements in the row than fieldnames
683 for row in itertools.chain([first], reader):
685 self.assertEqual(row, {"f1": '1', "f2": '2', "f3": 'abc'})
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_csv.py 319 for i, row in enumerate(csv.reader(fileobj)):
320 self.assertEqual(row, rows[i])
611 ### "long" means the row is longer than the number of fieldnames
612 ### "short" means there are fewer elements in the row than fieldnames
683 for row in itertools.chain([first], reader):
685 self.assertEqual(row, {"f1": '1', "f2": '2', "f3": 'abc'})
    [all...]
  /external/chromium_org/skia/ext/
vector_platform_device_emf_win.cc 934 // We will copy row by row to avoid having to worry about
935 // the row strides being different.
937 for (int row = 0; row < bitmap.height(); ++row) {
938 int dest_offset = row * dest_row_size;
940 int src_offset = row * bitmap.rowBytesAsPixels();

Completed in 2758 milliseconds

<<41424344454647484950>>