HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 51 - 75 of 2035) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 68 // To match Firefox, the row indices work like this:
71 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
76 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*head); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)) {
77 if (row == this)
86 for (HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*section); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row))
    [all...]
HTMLTableSectionElement.cpp 61 // these functions are rather slow, since we need to get the row at
72 RefPtrWillBeRawPtr<HTMLTableRowElement> row = HTMLTableRowElement::create(document()); local
74 appendChild(row, exceptionState);
76 insertBefore(row, children->item(index), exceptionState);
77 return row.release();
87 RefPtrWillBeRawPtr<Element> row = children->item(index); local
88 HTMLElement::removeChild(row.get(), exceptionState);
97 for (const HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*this); row; row = Traversal<HTMLTableRowElement>::nextSibling(*row)
    [all...]
  /external/ceres-solver/internal/ceres/
detect_structure.cc 48 // Iterate over row blocks of the matrix, checking if row_block,
51 const CompressedRow& row = bs.rows[r]; local
54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
60 *row_block_size = row.block.size;
62 *row_block_size != row.block.size) {
63 VLOG(2) << "Dynamic row block size because the block size changed from "
65 << row.block.size;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row.cells[1].block_id
    [all...]
linear_least_squares_problems.cc 198 // Row 1
209 // Row 2
220 // Row 3
231 // Row 4
242 // Row 5
253 // Row 6
306 // Row 1
312 CompressedRow& row = bs->rows.back(); local
313 row.block.size = 1;
314 row.block.position = 0
325 CompressedRow& row = bs->rows.back(); local
338 CompressedRow& row = bs->rows.back(); local
351 CompressedRow& row = bs->rows.back(); local
364 CompressedRow& row = bs->rows.back(); local
378 CompressedRow& row = bs->rows.back(); local
444 CompressedRow& row = bs->rows.back(); local
454 CompressedRow& row = bs->rows.back(); local
464 CompressedRow& row = bs->rows.back(); local
474 CompressedRow& row = bs->rows.back(); local
484 CompressedRow& row = bs->rows.back(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /external/libhevc/common/arm/
ihevc_intra_pred_filters_luma_mode_11_to_17.s 307 vdup.8 d27, r0 @row value inc or reset accordingly
309 vadd.s8 d8, d8, d27 @ref_main_idx (add row)
310 vsub.s8 d8, d8, d26 @ref_main_idx (row 0)
311 vadd.s8 d9, d8, d2 @ref_main_idx + 1 (row 0)
312 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
315 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
316 vadd.s8 d4, d8, d2 @ref_main_idx (row 1)
317 vadd.s8 d5, d9, d2 @ref_main_idx + 1 (row 1)
319 vtbl.8 d16, {d0,d1}, d4 @load from ref_main_idx (row 1)
320 vmull.u8 q12, d12, d7 @mul (row 0
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 56 * Returns the value at the specified row and column.
58 * @param row the index of the row to return.
63 * @throws IndexOutOfBoundsException if the row is out of range
64 * (row &lt; 0 || row >= size()) or the column is out of range
67 public int getValue(int row, int column) {
70 if (((row | column) < 0) || (row >= size()) || (column >= columns)) {
71 throw new IndexOutOfBoundsException(row + ", " + column)
    [all...]
  /external/chromium_org/chrome/browser/history/android/
bookmark_model_sql_handler_unittest.cc 80 HistoryAndBookmarkRow row; local
81 row.set_raw_url("http://bookmark.com");
82 row.set_url(GURL("http://bookmark.com"));
83 row.set_title(base::UTF8ToUTF16("Bookmark Title"));
84 row.set_is_bookmark(true);
87 ASSERT_TRUE(handler.Insert(&row));
90 bookmark_model_->GetNodesByURL(row.url(), &nodes);
92 EXPECT_EQ(row.title(), nodes[0]->GetTitle());
99 HistoryAndBookmarkRow row; local
100 row.set_raw_url("http://bookmark.com")
127 HistoryAndBookmarkRow row; local
211 HistoryAndBookmarkRow row; local
    [all...]
android_urls_sql_handler.h 20 virtual bool Update(const HistoryAndBookmarkRow& row,
23 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
urls_sql_handler.h 21 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
22 virtual bool Update(const HistoryAndBookmarkRow& row,
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
AppearAnimationUtils.java 78 for (int row = 0; row < properties.delays.length; row++) {
79 long[] columns = properties.delays[row];
82 if (properties.maxDelayRowIndex == row && properties.maxDelayColIndex == 0) {
85 creator.createAnimation(objects[row], delay, mDuration,
96 for (int row = 0; row < properties.delays.length; row++) {
97 long[] columns = properties.delays[row];
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 62 Index row, Index col)
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
74 inline Scalar& coeffRef(Index row, Index col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
79 inline const Scalar coeff(Index row, Index col) const
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col))
    [all...]
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.h 32 // These functions read the value of that |row| into |result|.
33 // Functions return false if the column is of the wrong type or the row
35 bool ReadString(const uint32 row, std::string* result) const;
36 bool ReadUInt32(const uint32 row, uint32* result) const;
37 bool ReadDouble64(const uint32 row, double* result) const;
38 bool ReadUInt8(const uint32 row, uint8* result) const;
39 bool ReadUInt64(const uint32 row, uint64* result) const;
  /external/chromium_org/ui/base/models/
table_model.h 39 virtual base::string16 GetText(int row, int column_id) = 0;
45 virtual gfx::ImageSkia GetIcon(int row);
47 // Returns the tooltip, if any, to show for a particular row. If there are
48 // multiple columns in the row, this will only be shown when hovering over
50 virtual base::string16 GetTooltip(int row);
52 // If true, this row should be indented.
53 virtual bool ShouldIndent(int row);
67 // Returns the group id of the specified row.
69 virtual int GetGroupID(int row);
  /external/wpa_supplicant_8/hs20/server/www/
add-mo.php 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
29 if ($row == false) {
32 $realm = $row['realm'];
42 $uri = $row['redirect_uri'];
43 $rowid = $row['rowid'];
  /build/tools/
compare_fileslist.py 20 def IsDifferent(row):
22 for v in row:
48 row = [fn]
51 row.append(sizes[i])
53 row.append(None)
54 rows.append(row)
89 for row in rows:
91 for sz in row[1:]:
94 elif IsDifferent(row[1:]):
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0]
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 56 UiObject row = getChildByInstance(childPattern, x); local
57 String nodeDesc = row.getContentDescription();
59 return row;
61 UiObject item = row.getChild(new UiSelector().descriptionContains(text));
63 return row;
114 UiObject row = getChildByInstance(childPattern, x); local
115 String nodeText = row.getText();
117 return row;
119 UiObject item = row.getChild(new UiSelector().text(text));
121 return row;
    [all...]
  /external/libhevc/common/
ihevc_chroma_intra_pred_filters.c 475 WORD32 row, col; local
497 for(row = 0; row < nt; row++)
501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2)
502 * pu1_ref[2 * (two_nt - 1 - row)]
504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col]
505 + (row + 1) * pu1_ref[2 * (nt - 1)] + nt) >> (log2nt + 1);
507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2)
508 * pu1_ref[2 * (two_nt - 1 - row) + 1
566 WORD32 row, col; local
667 WORD32 row, col; local
728 WORD32 row, col; local
788 WORD32 row, col; local
855 WORD32 row, col; local
928 WORD32 row, col; local
1021 WORD32 row, col, k; local
1138 WORD32 row, col, k; local
1245 WORD32 row, col; local
    [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,
97 for (int row = 0; row < kSourceHeight; ++row) {
98 int chroma_row = row / 2
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 23 * 6 row calendar grid format.
111 * @param row Which row (0-5).
115 public int[] getDigitsForRow(int row) {
116 if (row < 0 || row > 5) {
117 throw new IllegalArgumentException("row " + row
123 result[column] = getDayAt(row, column);
130 * @param row The row, 0-5, starting from the top
    [all...]
  /external/libpng/contrib/examples/
pngpixel.c 10 * This code illustrates basic 'by-row' reading of a PNG file using libpng.
30 /* Return component 'c' of pixel 'x' from the given row. */
32 component(png_const_bytep row, png_uint_32 x, unsigned int c,
37 * bytes wide. Since the row fitted into memory, however, the following must
43 row = (png_const_bytep)(((PNG_CONST png_byte (*)[8])row) + bit_offset_hi);
44 row += bit_offset_lo >> 3;
53 case 1: return (row[0] >> (7-bit_offset_lo)) & 0x01;
54 case 2: return (row[0] >> (6-bit_offset_lo)) & 0x03;
55 case 4: return (row[0] >> (4-bit_offset_lo)) & 0x0f
154 volatile png_bytep row = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/resources/
gesture_config.css 43 .row {
44 display: table-row;
47 .row-label {
54 html[dir=rtl] .row-label {
58 .row-input {
62 .row-units {
68 html[dir=rtl] .row-units {
72 .row-reset {
83 #section-row-template,
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java 23 import android.support.v17.leanback.widget.Row;
79 createRandomRow(new HeaderItem(i, "Row " + i, null)));
90 public void onItemClicked(Object item, Row row) {
91 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
104 public void onItemClicked(Object item, Row row) {
105 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
118 public void onItemClicked(Object item, Row row) {
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table.cc 24 const predictors::AutocompleteActionPredictorTable::Row& row,
26 DCHECK(base::IsValidGUID(row.id));
27 statement->BindString(0, row.id);
28 statement->BindString16(1, row.user_text.substr(0, kMaxDataLength));
29 statement->BindString(2, row.url.spec().substr(0, kMaxDataLength));
30 statement->BindInt(3, row.number_of_hits);
31 statement->BindInt(4, row.number_of_misses);
36 predictors::AutocompleteActionPredictorTable::Row* row) {
    [all...]

Completed in 1088 milliseconds

1 23 4 5 6 7 8 91011>>