HomeSort by relevance Sort by last modified time
    Searched refs:Row (Results 26 - 50 of 78) sorted by null

12 3 4

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 52 * <Row android:keyWidth="32px" >
55 * </Row>
65 private static final String TAG_ROW = "Row";
164 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
165 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
168 public static class Row {
169 /** Default width of a key in this row. */
171 /** Default height of a key in this row. */
173 /** Default horizontal gap between keys in this row. */
175 /** Vertical gap following this row. *
570 Row row = new Row(this); local
760 int row = 0; local
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 268 std::vector<AutocompleteActionPredictorTable::Row>* rows =
269 new std::vector<AutocompleteActionPredictorTable::Row>();
299 std::vector<AutocompleteActionPredictorTable::Row::Id> id_list;
340 std::vector<AutocompleteActionPredictorTable::Row> rows_to_add;
341 std::vector<AutocompleteActionPredictorTable::Row> rows_to_update;
356 AutocompleteActionPredictorTable::Row row; local
357 row.user_text = key.user_text;
358 row.url = key.url;
362 row.id = base::GenerateGUID()
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 48 * &lt;Row android:keyWidth="32px" &gt;
51 * &lt;/Row&gt;
66 private static final String TAG_ROW = "Row";
147 private ArrayList<Row> rows = new ArrayList<Row>();
150 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
151 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
160 public static class Row {
161 /** Default width of a key in this row. */
163 /** Default height of a key in this row. *
581 Row row = new Row(this); local
616 Row row = rows.get(rowIndex); local
783 int row = 0; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_variance_impl_mmx.asm 96 ; Row 1
121 ; Row 2
144 ; Row 3
167 ; Row 4
190 ; Row 5
214 ; Row 6
237 ; Row 7
260 ; Row 8
344 ; Row 1
358 ; Row
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java 112 ReportedData.Row row = new ReportedData.Row(fields); local
113 data.addRow(row);
  /external/tinyxml/
xmltest.cpp 356 XmlTest( "Error row", doc.ErrorRow(), 3 );
358 //printf( "error=%d id='%s' row %d col%d\n", (int) doc.Error(), doc.ErrorDesc(), doc.ErrorRow()+1, doc.ErrorCol() + 1 );
397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 );
399 XmlTest( "Location tracking: room row", room->Row(), 1 );
401 XmlTest( "Location tracking: doors row", doors->Row(), 1 );
403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 )
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uresdata.c 630 * row of a temporary array
636 typedef struct Row {
638 } Row;
643 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
644 keyChars+((const Row *)right)->keyIndex);
649 Row *rows;
842 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
956 Row rows[STACK_ROW_CAPACITY];
    [all...]
  /external/icu4c/common/
uresdata.c 649 * row of a temporary array
655 typedef struct Row {
657 } Row;
662 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
663 keyChars+((const Row *)right)->keyIndex);
668 Row *rows;
861 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
975 Row rows[STACK_ROW_CAPACITY];
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
58 self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
62 self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
64 self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Lst, wx.CB_DROPDOWN | wx.CB_READONLY )
69 self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
71 self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
73 self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
75 self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.h 78 void addCell(RenderTableCell*, RenderTableRow* row);
110 typedef Vector<CellStruct> Row;
119 Row row; member in struct:WebCore::FINAL::RowStruct
164 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
165 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col];
    [all...]
RenderTableSection.cpp 53 static inline void setRowLogicalHeightToRowStyleLogicalHeight(RenderTableSection::RowStruct& row)
55 ASSERT(row.rowRenderer);
56 row.logicalHeight = row.rowRenderer->style()->logicalHeight();
59 static inline void updateLogicalHeightForCell(RenderTableSection::RowStruct& row, const RenderTableCell* cell)
67 Length cRowLogicalHeight = row.logicalHeight;
72 row.logicalHeight = logicalHeight;
77 row.logicalHeight = logicalHeight;
139 RenderObject* row = beforeChild->previousSibling(); local
140 if (row && row->isTableRow() && row->isAnonymous())
156 RenderObject* row = RenderTableRow::createAnonymousWithParentRenderer(this); local
171 RenderTableRow* row = toRenderTableRow(child); local
645 Row& row = m_grid[r].row; local
746 Row& row = m_grid[r].row; local
1331 RenderTableRow* row = toRenderTableRow(cell->parent()); local
1483 unsigned row = r - 1; local
1497 RenderTableRow* row = m_grid[r].rowRenderer; local
1524 RenderTableRow* row = m_grid[r].rowRenderer; local
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.cc 262 // Row -------------------------------------------------------------
264 class Row : public LayoutElement {
266 Row(bool fixed_height, int height, float resize_percent,
276 virtual ~Row() {}
305 // The column set used for this row; null for padding rows.
311 DISALLOW_COPY_AND_ASSIGN(Row);
720 AddRow(new Row(false, 0, vertical_resize, column_set));
724 AddRow(new Row(true, pixel_count, vertical_resize, NULL));
808 // SizeRowsAndColumns sets the size and location of each row/column, but
884 // Reset the height of each row
923 Row* row = rows_[view_state->start_row]; local
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
variance_impl_mmx.asm 96 ; Row 1
121 ; Row 2
144 ; Row 3
167 ; Row 4
190 ; Row 5
214 ; Row 6
237 ; Row 7
260 ; Row 8
344 ; Row 1
358 ; Row
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboard.java 88 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
223 public LatinKey(Resources res, Keyboard.Row parent, int x, int y,
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 42 * <p>The allowed row and column keys must be supplied when the table is
43 * created. The table always contains a mapping for every row key / column pair.
44 * The value corresponding to a given row and column is null unless another
47 * <p>The table's size is constant: the product of the number of supplied row
52 * <p>The ordering of the row and column keys provided when the table is
61 * <p>Null row keys or column keys are not permitted.
64 * where the array indices correspond to the position of a row or column in the
86 * @param rowKeys row keys that may be stored in the generated table
99 * iterable, to specify the allowed row keys and/or column keys. Note that
107 * <p>If {@code table} includes a mapping with row key {@code r} and
    [all...]
StandardTable.java 42 * {@link Table} implementation backed by a map that associates row keys with
44 * records by the row key alone or by both keys, but not by just the column key.
48 * all optional operations are supported. Null row keys, columns keys, and
51 * <p>Lookups by row key are often faster than lookups by column key, because
53 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
55 * iteration across all row keys occurs.
222 /** Remove a row key / column key / value mapping, if present. */
266 * <p>The set's iterator traverses the mappings for the first row, the
267 * mappings for the second row, and so on.
269 * <p>Each cell is an immutable snapshot of a row key / column key / valu
335 @Override public Map<C, V> row(R rowKey) { method in class:StandardTable
    [all...]
TreeBasedTable.java 40 * Implementation of {@code Table} whose row keys and column keys are ordered
42 * {@code TreeBasedTable}, you may provide comparators for the row keys and
51 * all optional operations are supported. Null row keys, columns keys, and
54 * <p>Lookups by row key are often faster than lookups by column key, because
56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
58 * iteration across all row keys occurs.
61 * row, both {@code row(rowKey)} and {@code rowMap().get(rowKey)} are {@link
93 * of both row and column keys.
110 * @param rowComparator the comparator that orders the row key
172 public SortedMap<C, V> row(R rowKey) { method in class:TreeBasedTable
    [all...]
  /external/clang/tools/scan-build/
scan-build 310 my $Row = {
320 push @$Stats, $Row;
451 foreach my $Row (@$Stats) {
452 $FilesHash->{$Row->{Filename}} = 1;
453 $TotalBlocks += $Row->{Total};
454 $UnreachedBlocks += $Row->{Unreachable};
455 $BlockAborted++ if $Row->{Aborted} eq 'yes';
456 $WorkListAborted++ if $Row->{Empty} eq 'no';
457 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no'
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkAAClip.cpp 93 return segments * 2; // each segment is row[0] + row[1] (n + alpha)
104 uint8_t* row = head->data(); local
107 row[0] = n;
108 row[1] = 0xFF;
110 row += 2;
177 static size_t compute_row_length(const uint8_t row[], int width) {
178 const uint8_t* origRow = row;
180 int n = row[0];
183 row += 2
213 const uint8_t* row = head->data() + yoff->fOffset; local
450 uint8_t* row = base + yoff->fOffset; local
853 const uint8_t* row = this->findRow(top, &lastY); local
900 Row* row = fRows.begin(); local
918 Row* row = fCurrRow; local
1006 const Row* row = fRows.begin(); local
1060 const Row& row = fRows[y]; local
1081 const Row& row = fRows[i]; local
1849 const uint8_t* row = fAAClip->findRow(y); local
1917 const uint8_t* row = fAAClip->findRow(y); local
1935 const uint8_t* row = fAAClip->findRow(y, &lastY); local
2151 const uint8_t* row = fAAClip->findRow(y, &localStopY); local
    [all...]
  /external/skia/src/core/
SkAAClip.cpp 93 return segments * 2; // each segment is row[0] + row[1] (n + alpha)
104 uint8_t* row = head->data(); local
107 row[0] = n;
108 row[1] = 0xFF;
110 row += 2;
177 static size_t compute_row_length(const uint8_t row[], int width) {
178 const uint8_t* origRow = row;
180 int n = row[0];
183 row += 2
213 const uint8_t* row = head->data() + yoff->fOffset; local
450 uint8_t* row = base + yoff->fOffset; local
853 const uint8_t* row = this->findRow(top, &lastY); local
900 Row* row = fRows.begin(); local
918 Row* row = fCurrRow; local
1006 const Row* row = fRows.begin(); local
1060 const Row& row = fRows[y]; local
1081 const Row& row = fRows[i]; local
1849 const uint8_t* row = fAAClip->findRow(y); local
1917 const uint8_t* row = fAAClip->findRow(y); local
1935 const uint8_t* row = fAAClip->findRow(y, &lastY); local
2151 const uint8_t* row = fAAClip->findRow(y, &localStopY); local
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
mosaic_mode.js 1013 var row = this.columns_[column].getRowByTileIndex(index);
1014 if (!row) {
1015 console.error('Cannot find row for tile #' + index);
1020 if (row.hasTile(sameRowNeighbourIndex))
1028 getEdgeTileIndex_(row.getCenterY(), -direction);
1046 var row = this.columns_[column].getRowByTileIndex(index);
1047 if (!row) {
1048 console.error('Cannot find row for tile #' + index);
1052 // Find the first item in the next row, or the last item in the previous row
    [all...]
  /external/chromium/chrome/browser/resources/keyboard/
main.js 81 * Set the position, a.k.a. row, of this key.
421 * @param {number} position The position of the row (0-3).
422 * @param {Array.<BaseKey>} keys The keys in the row.
425 function Row(position, keys) {
432 Row.prototype = {
434 * Get the total aspect ratio of the row.
446 * Create the DOM elements for the row.
447 * @return {Element} The top-level DOM Element for the row.
451 this.element_.className = 'row';
492 * Resizes all keys in the row according to the global size
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/opencv/cxcore/include/
cvwimage.h 64 // We use the convention (c,r) to refer to column c and row r with (0,0) being
77 // *im(2, 3) = 15; // Modify the element at column 2, row 3
80 // // Copy the second row into the first. This can be done with no memory
88 // float* row = im->Row(r);
90 // for (int ch = 0; ch < im->Channels(); ++ch, ++row) {
91 // *row = uchar(rand() & 255);
209 inline const T* Row(int r) const {
213 inline T* Row(int r) {
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h 102 void Clear() { row = col = -1; }
104 int row; // 0 based. member in struct:TiXmlCursor
227 The row and column are 1-based. (That is the first row and first column is
229 a row and column value.
231 Generally, the row and column value will be set when the TiXmlDocument::Load(),
239 There is a minor performance cost to computing the row and column. Computation
244 int Row() const { return location.row + 1; }
245 int Column() const { return location.col + 1; } ///< See Row()
    [all...]

Completed in 4950 milliseconds

12 3 4