Searched
full:rows (Results
951 -
975 of
3134) sorted by null
<<31323334353637383940>>
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableRow.cpp | 169 // Table rows do not add translation. 204 // Table rows cannot ever be hit tested. Effectively they do not exist. 207 // FIXME: We have to skip over inline flows, since they can show up inside table rows
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/ |
vp9_iht4x4_add_neon.asm | 169 ; first transform rows 185 ; first transform rows 200 ; first transform rows
|
/external/chromium_org/third_party/libwebp/dec/ |
decode_vp8.h | 55 int mb_y; // position of the current rows (in pixels) 57 int mb_h; // number of rows in the sample 58 const uint8_t* y, *u, *v; // rows to copy (in yuv420 format)
|
/external/chromium_org/third_party/polymer/components/core-iconset/ |
core-iconset.html | 16 * be included in this image and they may be organized into rows. 21 * and must be specified if icons are arranged into multiple rows in the image. 80 * icons are arranged into separate rows inside the image.
|
/external/chromium_org/third_party/polymer/components-chromium/core-input/ |
core-input-extracted.js | 53 * (multiline only) The height of this text input in rows. The input 59 * @attribute rows 63 rows: 'fit',
|
/external/chromium_org/third_party/skia/experimental/webtry/ |
webtry.go | 308 rows, err := db.Query("SELECT id, image, create_ts FROM source_images ORDER BY create_ts DESC") 314 for rows.Next() { 318 if err := rows.Scan(&id, &image, &create_ts); err != nil { 468 rows, err := db.Query("SELECT id, create_ts FROM source_images WHERE hidden=0 ORDER BY create_ts DESC") 474 for rows.Next() { 477 if err := rows.Scan(&id, &create_ts); err != nil { 569 rows, err := db.Query("SELECT create_ts, hash FROM webtry ORDER BY create_ts DESC LIMIT 20") 575 for rows.Next() { 578 if err := rows.Scan(&create_ts, &hash); err != nil { 634 rows, err := db.Query("SELECT create_ts, hash, source_image_id FROM workspacetry WHERE name=? ORDER BY (…) [all...] |