HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 501 - 525 of 723) sorted by null

<<212223242526272829

  /external/skia/src/core/
SkBitmap.cpp 476 // This implementation will write bytes beyond the end of each row,
477 // excluding the last row, if the bitmap's stride is greater than
494 for (uint32_t row = 0; row < fHeight;
495 row++, srcP += fRowBytes, dstP += dstRowBytes) {
522 // This implementation will write bytes beyond the end of each row,
523 // excluding the last row, if the bitmap's stride is greater than
530 for (uint32_t row = 0; row < fHeight;
531 row++, srcP += srcRowBytes, dstP += fRowBytes)
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameView.java 193 /** Sets winning mark on specified column or row (0..2) or diagonal (0..1). */
194 public void setFinished(int col, int row, int diagonal) {
196 mWinRow = row;
  /external/chromium/chrome/browser/resources/net_internals/
proxyview.js 65 // Add a table row for each bad proxy entry.
  /external/chromium/net/spdy/
spdy_framer_test.cc 24 for (const unsigned char* row = data; length > 0;
25 row += kColumns, length -= kColumns) {
26 for (const unsigned char *p = row; p < row + 4; ++p) {
27 if (p < row + length) {
40 for (const unsigned char *p = row; p < row + 4 && p < row + length; ++p)
    [all...]
  /external/libvpx/vp8/common/x86/
idctllm_sse2.asm 141 ; repack so block 0 row x and block 1 row x are together
482 ; repack so block 0 row x and block 1 row x are together
  /external/opencv/cxcore/include/
cxcore.hpp 332 uchar* row(int i) { return !matrix ? 0 : matrix->data.ptr + i*matrix->step; } function in class:CvMatrix
333 const uchar* row(int i) const function in class:CvMatrix
  /external/v8/tools/
stats-viewer.py 232 name.grid(row=index, column=0, padx=1, pady=1)
241 value.grid(row=index, column=(1 + i), padx=1, pady=1)
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLCollection04.js 82 first TABLE element and examine its length, then add a new row and
HTMLTableElement19.js 78 The createTHead() method creates a table header row or returns
HTMLTableElement20.js 78 The createTHead() method creates a table header row or returns
HTMLTableElement21.js 83 deleted there should be one less row.
HTMLTableElement22.js 78 The createTFoot() method creates a table footer row or returns
HTMLTableElement23.js 78 The createTFoot() method creates a table footer row or returns
HTMLTableElement24.js 83 deleted there should be one less row.
HTMLTableElement34.js 82 to insert a new row using an index of five. This should throw
HTMLTableElement35.js 82 to insert a new row using an index of negative five. This should throw
HTMLTableElement36.js 82 to delete a new row using an index of five. This should throw
HTMLTableElement37.js 82 to delete a new row using an index of four. This should throw
HTMLTableElement38.js 82 to delete a new row using an index of negative five. This should throw
HTMLTableRowElement01.js 78 The rowIndex attribute specifies the index of the row, relative to the
HTMLTableRowElement11.js 78 The insertCell() method inserts an empty TD cell into this row.
HTMLTableRowElement12.js 78 The insertCell() method inserts an empty TD cell into this row.
HTMLTableRowElement20.js 78 The insertCell() method inserts an empty TD cell into this row.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLCollection04.js 82 first TABLE element and examine its length, then add a new row and
HTMLTableElement19.js 78 The createTHead() method creates a table header row or returns

Completed in 171 milliseconds

<<212223242526272829