| /packages/inputmethods/LatinIME/java/res/xml-sw600dp/ |
| rows_qwertz.xml | 26 <Row 34 </Row> 35 <Row 44 </Row> 45 <Row 58 </Row>
|
| rows_number_password.xml | 24 <Row> 37 </Row> 38 <Row> 51 </Row> 52 <Row> 65 </Row> 66 <Row> 79 </Row>
|
| /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
| SoftKeyboard.java | 84 * Rows in this soft keyboard. Each row has a id. Only matched rows will be 214 for (int row = 0; row < mKeyRows.size(); row++) { 215 KeyRow keyRow = mKeyRows.get(row); 279 public KeyRow getKeyRowForDisplay(int row) { 280 if (null != mKeyRows && mKeyRows.size() > row) { 281 KeyRow keyRow = mKeyRows.get(row); 290 public SoftKey getKey(int row, int location) { 291 if (null != mKeyRows && mKeyRows.size() > row) { [all...] |
| /external/chromium_org/chrome/browser/history/android/ |
| 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,
|
| /external/chromium_org/chrome/browser/resources/file_manager/foreground/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/browser/resources/predictors/ |
| autocomplete_action_predictor.js | 56 var row = document.createElement('tr'); 57 row.className = (entry.confidence > 0.8 ? 'action-prerender' : 61 row.appendChild(document.createElement('td')).textContent = 63 row.appendChild(document.createElement('td')).textContent = entry.url; 64 row.appendChild(document.createElement('td')).textContent = 66 row.appendChild(document.createElement('td')).textContent = 68 row.appendChild(document.createElement('td')).textContent = 71 databaseSection.appendChild(row);
|
| /external/chromium_org/chrome/browser/resources/ |
| profile_signin_confirmation.css | 5 #button-row { 14 #button-row button {
|
| /external/chromium_org/chrome/browser/ui/gtk/ |
| confirm_bubble_gtk.cc | 77 // Add the icon, the title label and the close button to the first row. 78 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing); local 81 gtk_box_pack_start(GTK_BOX(row), icon_view, FALSE, FALSE, 0); 85 gtk_box_pack_start(GTK_BOX(row), title_label, FALSE, FALSE, 0); 86 gtk_box_pack_start(GTK_BOX(row), gtk_label_new(NULL), TRUE, TRUE, 0); 91 gtk_box_pack_end(GTK_BOX(row), close_button_->widget(), FALSE, FALSE, 0); 92 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local 94 // Add the message label to the second row. 101 // Add the the link label to the third row if it exists. 104 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing) local 112 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local 119 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing); local 134 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local [all...] |
| /external/chromium_org/third_party/skia/src/gpu/effects/ |
| GrTextureStripAtlas.h | 44 * @param data Bitmap data to copy into the row 45 * @return The row index we inserted into, or -1 if we failed to find an open row. The caller 46 * is responsible for calling unlockRow() with this row index when it's done with it. 49 void unlockRow(int row); 52 * These functions help turn an integer row index in [0, 1, 2, ... numRows] into a scalar y 63 * Where yOffset, returned by getYOffset(), is the offset to the start of the row within the 64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row, 67 SkScalar getYOffset(int row) const { return SkIntToScalar(row) / fNumRows; [all...] |
| /external/chromium_org/third_party/sqlite/src/test/ |
| speed2.test | 90 speed_trial speed2-insert1 50000 row $sql 101 speed_trial speed2-insert2 50000 row $sql 115 speed_trial speed2-select1a [expr {50*50000}] row $sql 125 speed_trial speed2-select2a [expr {50*50000}] row $sql 128 speed_trial speed2-vacuum1 100000 row VACUUM 139 speed_trial speed2-select1b [expr {50*50000}] row $sql 149 speed_trial speed2-select2b [expr {50*50000}] row $sql 154 speed_trial speed2-createidx 150000 row { 179 speed_trial speed2-select4a 100000 row $sql 188 speed_trial speed2-select5a 100000 row $sq [all...] |
| /external/chromium_org/ui/keyboard/resources/layouts/ |
| webui_qwerty.html | 9 <kb-row class="top"> 13 </kb-row> 14 <kb-row> 20 </kb-row> 21 <kb-row> 26 </kb-row> 27 <kb-row> 34 </kb-row> 40 <kb-row class="top"> 44 </kb-row> [all...] |
| /external/chromium_org/ui/webui/resources/css/ |
| tree.css | 11 .tree-item > .tree-row { 44 .tree-item[expanded] > .tree-row > .expand-icon { 50 .tree-row .expand-icon { 54 .tree-row[may-have-children] .expand-icon { 58 .tree-row[has-children=false] .expand-icon { 62 .tree-row:hover { 69 WebKit has a bug with attribute selectors so we apply selected to the tree row 75 .tree-row[selected] { 80 .tree-row[selected] { 86 .tree-row[selected]:hover [all...] |
| /external/eigen/Eigen/src/Core/ |
| NestByValue.h | 50 inline const CoeffReturnType coeff(Index row, Index col) const 52 return m_expression.coeff(row, col); 55 inline Scalar& coeffRef(Index row, Index col) 57 return m_expression.const_cast_derived().coeffRef(row, col); 71 inline const PacketScalar packet(Index row, Index col) const 73 return m_expression.template packet<LoadMode>(row, col); 77 inline void writePacket(Index row, Index col, const PacketScalar& x) 79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
|
| /external/jpeg/ |
| jdmainct.c | 28 * Postprocessor input data is counted in "row groups". A row group 35 * row group (times any additional scale factor that the upsampler is 38 * The coefficient controller will deliver data to us one iMCU row at a time; 39 * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or 40 * exactly min_DCT_scaled_size row groups. (This amount of data corresponds 41 * to one row of MCUs when the image is fully interleaved.) Note that the 42 * number of sample rows varies across components, but the number of row 44 * row at the bottom of the image. 47 * access to the sample row(s) above and below its current input row group [all...] |
| /external/qemu/distrib/jpeg-6b/ |
| jdmainct.c | 28 * Postprocessor input data is counted in "row groups". A row group 35 * row group (times any additional scale factor that the upsampler is 38 * The coefficient controller will deliver data to us one iMCU row at a time; 39 * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or 40 * exactly min_DCT_scaled_size row groups. (This amount of data corresponds 41 * to one row of MCUs when the image is fully interleaved.) Note that the 42 * number of sample rows varies across components, but the number of row 44 * row at the bottom of the image. 47 * access to the sample row(s) above and below its current input row group [all...] |
| /external/skia/src/gpu/effects/ |
| GrTextureStripAtlas.h | 44 * @param data Bitmap data to copy into the row 45 * @return The row index we inserted into, or -1 if we failed to find an open row. The caller 46 * is responsible for calling unlockRow() with this row index when it's done with it. 49 void unlockRow(int row); 52 * These functions help turn an integer row index in [0, 1, 2, ... numRows] into a scalar y 63 * Where yOffset, returned by getYOffset(), is the offset to the start of the row within the 64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row, 67 SkScalar getYOffset(int row) const { return SkIntToScalar(row) / fNumRows; [all...] |
| /frameworks/base/core/res/res/xml/ |
| kg_password_kbd_numeric.xml | 26 <Row android:rowEdgeFlags="top"> 32 </Row> 34 <Row> 40 </Row> 42 <Row> 48 </Row> 50 <Row android:rowEdgeFlags="bottom"> 57 </Row>
|
| password_kbd_numeric.xml | 27 <Row android:rowEdgeFlags="top"> 33 </Row> 35 <Row> 41 </Row> 43 <Row> 49 </Row> 51 <Row android:rowEdgeFlags="bottom"> 56 </Row>
|
| /frameworks/base/core/res/res/xml-xlarge/ |
| password_kbd_numeric.xml | 27 <Row android:rowEdgeFlags="top"> 33 </Row> 35 <Row> 41 </Row> 43 <Row> 49 </Row> 51 <Row android:rowEdgeFlags="bottom"> 56 </Row>
|
| /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...] |
| /libcore/luni/src/test/java/tests/api/org/xml/sax/ |
| SAXParseExceptionTest.java | 33 public static final int ROW = 1; 41 l.setLineNumber(ROW); 54 assertEquals(ROW, e.getLineNumber()); 65 assertEquals(ROW, e.getLineNumber()); 87 assertEquals(ROW, e.getLineNumber()); 95 l.setLineNumber(ROW); 106 assertEquals(ROW, e.getLineNumber()); 117 assertEquals(ROW, e.getLineNumber()); 137 SAXParseException e = new SAXParseException(ERR, PUB, SYS, ROW, COL, c); 144 assertEquals(ROW, e.getLineNumber()) [all...] |
| /packages/inputmethods/LatinIME/java/res/xml/ |
| rows_number_password.xml | 24 <Row> 37 </Row> 38 <Row> 51 </Row> 52 <Row> 65 </Row> 66 <Row> 79 </Row>
|
| rows_phone_symbols.xml | 28 <Row> 44 </Row> 45 <Row> 60 </Row> 61 <Row> 73 </Row> 74 <Row> 85 </Row>
|
| /packages/inputmethods/PinyinIME/res/xml/ |
| skb_phone.xml | 24 <row> 35 </row> 37 <row> 48 </row> 50 <row> 63 </row> 65 <row> 74 </row>
|