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

1 23 4 5 6 7 8 91011>>

  /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,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowElement.cpp 66 // To match Firefox, the row indices work like this:
69 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
75 if (row == this)
77 if (row->hasTagName(trTag))
85 for (Node* row = section->firstChild(); row; row = row->nextSibling())
    [all...]
  /external/eigen/Eigen/src/Core/
Swap.h 52 inline Scalar& coeffRef(Index row, Index col)
54 return m_expression.const_cast_derived().coeffRef(row, col);
62 inline Scalar& coeffRef(Index row, Index col) const
64 return m_expression.coeffRef(row, col);
73 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other)
76 eigen_internal_assert(row >= 0 && row < rows()
78 Scalar tmp = m_expression.coeff(row, col);
79 m_expression.coeffRef(row, col) = _other.coeff(row, col)
    [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...]
autocomplete_action_predictor_table.h 37 struct Row {
44 Row();
47 Row(const Id& id,
53 Row(const Row& row);
62 typedef std::vector<Row> Rows;
65 void GetRow(const Row::Id& id, Row* row);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityARIAGrid.cpp 60 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child);
61 if (appendedRows.contains(row))
65 unsigned rowCellCount = row->children().size();
69 row->setRowIndex((int)m_rows.size());
70 m_rows.append(row);
72 // Try adding the row if it's not ignoring accessibility,
74 if (!row->accessibilityIsIgnored())
75 m_children.append(row);
77 m_children.append(row->children());
79 appendedRows.add(row);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
propsvec.c 32 int32_t prevRow; /* search optimization: remember last row seen */
43 uint32_t *v, *row; local
69 /* set the all-Unicode row and the special-value rows */
70 row=pv->v;
71 uprv_memset(row, 0, pv->rows*columns*4);
72 row[0]=0;
73 row[1]=0x110000;
74 row+=columns;
76 row[0]=cp;
77 row[1]=cp+1
93 uint32_t *row; local
278 uint32_t *row; local
292 uint32_t *row; local
334 uint32_t *row; local
    [all...]
  /external/icu4c/common/
propsvec.c 33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[1]=cp+1
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macmouse.c 56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tile.c 42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; \/* current source row *\/ local
135 unsigned row; \/* current source row *\/ local
166 unsigned row; \/* current source row *\/ local
256 unsigned row; \/* current destination row *\/ local
289 unsigned row; \/* current destination row *\/ local
322 unsigned row; \/* current destination row *\/ local
355 unsigned row; \/* current destination row *\/ local
388 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; \/* current source row *\/ local
135 unsigned row; \/* current source row *\/ local
166 unsigned row; \/* current source row *\/ local
256 unsigned row; \/* current destination row *\/ local
289 unsigned row; \/* current destination row *\/ local
322 unsigned row; \/* current destination row *\/ local
355 unsigned row; \/* current destination row *\/ local
388 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/chromium_org/chrome/browser/history/android/
sql_handler.h 46 // value stored in |row|. Return true if the update succeeds.
47 virtual bool Update(const HistoryAndBookmarkRow& row,
50 // Inserts the given |row|, return true on success; The id of insertted row
51 // should be set in |row|, so other implemnetations could use it to complete
53 virtual bool Insert(HistoryAndBookmarkRow* row) = 0;
59 // Return true if |row| has a value explicitly set for at least one of the
60 // columns in |row| that are known to this class.
61 bool HasColumnIn(const HistoryAndBookmarkRow& row);
visit_sql_handler.cc 31 // The created time is updated according the given |row|.
37 // Visit row is insertted/removed to keep consistent with urls table.
42 bool VisitSQLHandler::Update(const HistoryAndBookmarkRow& row,
60 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) ||
67 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
69 if (!AddVisit(id->url_id, row.created()))
81 bool VisitSQLHandler::Insert(HistoryAndBookmarkRow* row) {
82 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL_ID));
85 if (!history_db_->GetURLRow(row->url_id(), &url_row))
93 // Add a row if the last visit time is different from created time
    [all...]
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/omnibox/
omnibox_popup_matrix.h 18 virtual void OnMatrixRowSelected(OmniboxPopupMatrix* matrix, size_t row) = 0;
20 // Called when the user clicks on a row.
21 virtual void OnMatrixRowClicked(OmniboxPopupMatrix* matrix, size_t row) = 0;
23 // Called when the user middle clicks on a row.
25 size_t row) = 0;
41 // Return the currently highlighted row. Returns -1 if no row is highlighted.
  /external/chromium_org/ui/views/controls/table/
test_table_model.cc 25 string16 TestTableModel::GetText(int row, int column_id) {
26 return ASCIIToUTF16(base::IntToString(row) + "x" +
30 gfx::ImageSkia TestTableModel::GetIcon(int row) {
  /external/markdown/markdown/extensions/
tables.py 55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border):
59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
76 def _split_row(self, row, border):
77 """ split a row of text into list of cells. """
79 if row.startswith('|'):
80 row = row[1:
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 86 // Kill a row.
107 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
108 zoneStrings.put(row[0], row);
121 private static void assertUtc(String[] row) {
124 assertEquals(Arrays.toString(row), "UTC", row[2]); local
125 assertEquals(Arrays.toString(row), "UTC", row[4]); local
135 for (String[] row : array)
150 String[] row = array[i]; local
    [all...]
  /build/tools/
fileslist.py 33 row = (
37 output.append(row)
41 for row in output:
42 print "%12d %s" % row
  /external/chromium/chrome/browser/
possible_url_model.h 36 const GURL& GetURL(int row);
37 const std::wstring& GetTitle(int row);
44 virtual string16 GetText(int row, int col_id) OVERRIDE;
45 virtual SkBitmap GetIcon(int row) OVERRIDE;
  /external/chromium_org/chrome/browser/resources/file_manager/css/
tree.css 13 .tree-item > .tree-row {
37 .tree-item[expanded] > .tree-row > .expand-icon {
42 .tree-row .expand-icon {
46 .tree-row[may-have-children] .expand-icon {
50 .tree-row[has-children=false] .expand-icon {
54 .tree-row[selected] {
66 .tree-item > .tree-row > * {
80 .tree-rename > .tree-row > .tree-label {
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.cc 61 bool PmpColumnReader::ReadString(const uint32 row, std::string* result) const {
64 if (field_type_ != PMP_TYPE_STRING || row >= rows_read_)
67 DCHECK_LT(row, strings_.size());
68 *result = strings_[row];
72 bool PmpColumnReader::ReadUInt32(const uint32 row, uint32* result) const {
75 if (field_type_ != PMP_TYPE_UINT32 || row >= rows_read_)
78 *result = reinterpret_cast<uint32*>(data_.get() + kPmpHeaderSize)[row];
82 bool PmpColumnReader::ReadDouble64(const uint32 row, double* result) const {
85 if (field_type_ != PMP_TYPE_DOUBLE64 || row >= rows_read_)
88 *result = reinterpret_cast<double*>(data_.get() + kPmpHeaderSize)[row];
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
HashBasedTable_CustomFieldSerializer.java 42 for (Entry<?, ?> row : hashMap.entrySet()) {
43 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
53 * Therefore, the backing map is serializable (assuming the row,
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 39 public Button getButtonAt(int column, int row) {
40 if (row < 0 || row > 2) {
41 throw new IllegalArgumentException("row out of range");
46 return (Button) getColumn(column).getChildAt(row);
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 16 // per row. This class converts these SkBitmaps to NSImages on demand, and
26 // Returns the icon of the |row|th row.
27 virtual SkBitmap GetIcon(int row) const = 0;
37 // Lazily converts the image at the given row and caches it in |icon_images_|.
38 NSImage* GetImageForRow(int row);
47 // The table model we query for row count and icons.

Completed in 462 milliseconds

1 23 4 5 6 7 8 91011>>