| /packages/inputmethods/PinyinIME/res/xml/ |
| skb_sym2.xml | 25 <row> 27 </row> 29 <row> 41 </row> 43 <row width="10.205%p"> 54 </row> 56 <row width="14.696%p" key_type="1"> 66 </row>
|
| /external/chromium_org/chrome/browser/resources/net_internals/ |
| table_printer.js | 11 * single header row. The header row appears at the top of an HTML formatted 13 * from the table body by a partial row of dashes. 16 * the header row. In HTML tables, it uses the title class and in ascii tables 45 * Starts a new row. 54 * Adds a column to the current row, setting its value to cellText. 73 * Adds a header row, if not already present, and adds a new column to it, 79 // Insert empty new row at start of |rows_| if currently no header row. 107 var row = this.rows_[rowIndex] [all...] |
| /external/chromium/chrome/browser/ui/cocoa/ |
| task_manager_mac.mm | 189 NSInteger row = [tableView_ clickedRow]; 190 if (row < 0) 192 taskManager_->ActivateProcess(viewToModelMap_[row]); 273 // |nameColumn| displays an icon for every row -- this is done by an 344 // If a row is selected, make sure that all rows belonging to the same process 389 row:(NSInteger)row { 396 if (taskManagerObserver_->IsBackgroundRow(viewToModelMap_[row]) && 397 ![tableView isRowSelected:row]) { 399 if ((row % 2) == 1 && [tableView usesAlternatingRowBackgroundColors]) [all...] |
| /external/chromium_org/chrome/browser/history/ |
| scored_history_match_unittest.cc | 64 URLRow row(GURL(url), 0); 65 row.set_title(ASCIIToUTF16(title)); 66 row.set_visit_count(visit_count); 67 row.set_typed_count(typed_count); 68 row.set_last_visit(base::Time::NowFromSystemTime() - 70 return row; 112 // to calculate last visit time when building a row. 208 // to calculate last visit time when building a row. 213 URLRow row(MakeURLRow(url_string.c_str(), "abcd bcd", 8, 3, 1)); 215 PopulateWordStarts(row, &word_starts) [all...] |
| /external/chromium_org/chrome/browser/resources/predictors/ |
| resource_prefetch_predictor.js | 69 var row = document.createElement('tr'); 76 row.appendChild(t); 80 row.className = 'last'; 82 row.appendChild(document.createElement('td')).textContent = 84 row.appendChild(document.createElement('td')).textContent = 86 row.appendChild(document.createElement('td')).textContent = 88 row.appendChild(document.createElement('td')).textContent = 90 row.appendChild(document.createElement('td')).textContent = 92 row.appendChild(document.createElement('td')).textContent = 94 row.appendChild(document.createElement('td')).textContent [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
| AXARIAGrid.cpp | 60 AXTableRow* row = toAXTableRow(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...] |
| /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
| MockSuggestionProviderCursor.java | 28 private final ArrayList<Row> mRows; 32 mRows = new ArrayList<Row>(); 35 public Row addRow(Object... values) { 36 Row row = new Row(values); local 37 mRows.add(row); 38 return row; 90 private class Row { 92 public Row(Object... values) [all...] |
| /external/chromium/chrome/browser/ |
| possible_url_model.cc | 111 const GURL& PossibleURLModel::GetURL(int row) { 112 if (row < 0 || row >= RowCount()) { 116 return results_[row].url; 119 const std::wstring& PossibleURLModel::GetTitle(int row) { 120 if (row < 0 || row >= RowCount()) { 124 return results_[row].title; 127 string16 PossibleURLModel::GetText(int row, int col_id) { 128 if (row < 0 || row >= RowCount()) [all...] |
| 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/chrome/browser/ui/gtk/ |
| gtk_tree.h | 24 // Get the row number corresponding to |path|. 27 // Get the row number corresponding to |iter|. 30 // Get the row number in the child tree model corresponding to |sort_path| in 35 // Select the given row by number. 36 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view); 38 // Remove the row and all its children from the |tree_store|. If there is a 39 // following row, |iter| will be updated to point to the it and the return value 63 // Should fill in the column and row. 64 virtual void SetColumnValues(int row, GtkTreeIter* iter) = 0; 100 // Callback checking whether a row should be drawn as a separator [all...] |
| /external/chromium_org/chrome/browser/history/android/ |
| bookmark_model_sql_handler.cc | 101 bool BookmarkModelSQLHandler::Update(const HistoryAndBookmarkRow& row, 105 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::BOOKMARK)) { 106 if (row.is_bookmark()) { 110 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::PARENT_ID)) { 115 i->url, url_row.title(), row.parent_id())); 130 } else if (row.is_value_set_explicitly(HistoryAndBookmarkRow::TITLE)) { 135 i->url, row.title())); 153 bool BookmarkModelSQLHandler::Insert(HistoryAndBookmarkRow* row) { 154 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL)); 155 if (!row->is_value_set_explicitly(HistoryAndBookmarkRow::BOOKMARK) | [all...] |
| visit_sql_handler.h | 25 virtual bool Update(const HistoryAndBookmarkRow& row, 27 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE; 31 // Add a row in visit table with the given |url_id| and |visit_time|. 34 // Add the given |visit_count| rows for |url_id|. The visit time of each row
|
| /external/chromium_org/chrome/browser/ui/gtk/ |
| gtk_tree.h | 25 // Get the row number corresponding to |path|. 28 // Get the row number corresponding to |iter|. 31 // Get the row number in the child tree model corresponding to |sort_path| in 36 // Select the given row by number. 37 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view); 39 // Remove the row and all its children from the |tree_store|. If there is a 40 // following row, |iter| will be updated to point to the it and the return value 64 // Should fill in the column and row. 65 virtual void SetColumnValues(int row, GtkTreeIter* iter) = 0; 101 // Callback checking whether a row should be drawn as a separator [all...] |
| /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/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
| s_bitmap.c | 54 GLint row, col; local 77 for (row = 0; row < height; row++) { 79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0); 87 span.array->y[count] = py + row; 99 /* get ready for next row */ 109 span.array->y[count] = py + row; 121 /* get ready for next row */ 126 if (count + width >= SWRAST_MAX_WIDTH || row + 1 == height) [all...] |
| /external/mesa3d/src/mesa/swrast/ |
| s_bitmap.c | 54 GLint row, col; local 77 for (row = 0; row < height; row++) { 79 bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0); 87 span.array->y[count] = py + row; 99 /* get ready for next row */ 109 span.array->y[count] = py + row; 121 /* get ready for next row */ 126 if (count + width >= SWRAST_MAX_WIDTH || row + 1 == height) [all...] |
| /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/ |
| flexbox-lots-of-data.html | 23 .row:nth-child(2n) { 26 .row { 63 <div class="row"><div class="cell col-level"></div><div class="cell col-proc"></div><div class="cell col-text">--------- xxxxxxxxx xx /xxx/xxx/xxxxxx</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxxxx xxx.xxxxxx.xxxxxxx.xxxxxxxxx (xxx xxxx) xxx xxxx.</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxxxxxxxxxxxxxxxxxxxxxxx: xxx=x, xxxxxxxxx=x, xxxxxxxxx xxxxxxxxx=x</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxx xxxx xxx.xxxxxx.xxxxxxx.xxxxxxxxx xxx xxxxxxxxx xxx.xxxxxx.xxxxxxx.xxxxxxxxx/xxx.xxxxxx.xxxxxxx.xxxxxxxxxx.xxxxxxxxxxxxxxxxxxxx: xxx=xxxx xxx=xxxxx xxxx={xxxxx, xxxx, xxxx, xxxx, xxxx}</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxxxx xxx.xxxxxx.xxxxxxx.xxxx.xxxxxxxx (xxx xxxx) xxx xxxx.</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxx xxxx xxx.xxxxxx.xxxxxxx.xxxx.xxxxxxxx xxx xxxxxxxxx xxx.xxxxxx.xxxxxxx.xxxx.xxxxxxxx/xxx.xxxxxx.xxxxxxx.xxxxxxxxxx.xxxxxxxxxxxxxxxxxxxx: xxx=xxxx xxx=xxxxx xxxx={xxxxx, xxxx, xxxx, xxxx}</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="cell col-text">xxxxxxx xxx.xxxxxx.xxxxxxx.xxxx.xxxx (xxx xxxx) xxx xxxx.</div></div><div class="row"><div class="cell col-level">x</div><div class="cell col-proc">xxxxxxxxxxxxxxx</div><div class="ce (…) [all...] |
| /frameworks/base/core/java/android/content/ |
| DefaultDataHandler.java | 35 * Insert one row: 37 * <row uri="content://contacts/people"> 40 * </row></pre> 47 * Use first row's uri to insert into another table, 50 * <row uri="content://contacts/people"> 53 * <row postfix="phones"> 55 * </row> 56 * <row postfix="phones"> 58 * </row> 59 * </row></pre [all...] |
| /packages/apps/Launcher2/ |
| print_db.py | 46 for row in c: 47 rows.append(row) 124 data = [dict(zip(columns,row)) for row in rows] 154 for row in rows: 157 for i in range(0,len(row)): 158 cell = row[i] 159 # row[0] is always _id 161 print_functions[i](out, row[0], row, cell [all...] |
| /frameworks/base/core/jni/ |
| android_database_CursorWindow.cpp | 47 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) { 49 msg.appendFormat("Couldn't read row %d, col %d from CursorWindow. " 51 row, column); 153 jint row, jint column) { 155 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window); 157 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column); 161 //throwExceptionWithRowCol(env, row, column); 168 jint row, jint column) { 170 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window); 172 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column) [all...] |
| /external/jpeg/ |
| rdrle.c | 59 * then fetch the required row from the virtual array on subsequent calls. 69 JDIMENSION row; /* current row # in the virtual array */ member in struct:_rle_source_struct 71 rle_pixel** rle_row; /* holds a row returned by rle_getrow() */ 181 * Read one row of pixels. 191 source->row--; 193 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE); 199 * Read one row of pixels. 215 source->row--; 217 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE) 244 JDIMENSION row, col; local [all...] |
| /external/qemu/distrib/jpeg-6b/ |
| rdrle.c | 59 * then fetch the required row from the virtual array on subsequent calls. 69 JDIMENSION row; /* current row # in the virtual array */ member in struct:_rle_source_struct 71 rle_pixel** rle_row; /* holds a row returned by rle_getrow() */ 181 * Read one row of pixels. 191 source->row--; 193 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE); 199 * Read one row of pixels. 215 source->row--; 217 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE) 244 JDIMENSION row, col; local [all...] |
| /frameworks/base/core/java/android/database/ |
| MatrixCursor.java | 62 * Gets value at the given column for the current row. 70 throw new CursorIndexOutOfBoundsException("Before first row."); 73 throw new CursorIndexOutOfBoundsException("After last row."); 79 * Adds a new row to the end and returns a builder for that row. Not safe 83 * row 86 final int row = rowCount++; local 89 return new RowBuilder(row); 93 * Adds a new row to the end with the given column values. Not safe 114 * Adds a new row to the end with the given column values. Not saf 196 private final int row; field in class:MatrixCursor.RowBuilder [all...] |
| /build/tools/ |
| fileslist.py | 33 row = ( 37 output.append(row) 41 for row in output: 42 print "%12d %s" % row
|
| /external/chromium_org/chrome/browser/resources/chromeos/login/ |
| screen_account_picker.html | 8 <podrow id="pod-row" class="podrow images-loading"></podrow>
|