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

12

  /external/guava/guava/src/com/google/common/collect/
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/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 51 static inline void setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(RenderTableSection::RowStruct* row)
53 ASSERT(row && row->rowRenderer);
54 row->logicalHeight = row->rowRenderer->style()->logicalHeight();
55 if (row->logicalHeight.isRelative())
56 row->logicalHeight = Length();
116 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
117 // the anonymous row containing it, if there is one.
126 RenderObject* row = new (renderArena()) RenderTableRow(document() /* anonymous table row */) local
282 Row& row = *m_grid[i].row; local
366 Row* row = m_grid[r].row; local
1012 RenderTableRow* row = toRenderTableRow(cell->parent()); local
    [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/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) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 199 * @param row the row that this key belongs to. row's x-coordinate will be the right edge of
204 public Key(Resources res, Keyboard.Params params, Keyboard.Builder.Row row,
207 final int keyHeight = row.mRowHeight;
215 final float keyXPos = row.getKeyX(keyAttr);
216 final float keyWidth = row.getKeyWidth(keyAttr, keyXPos);
217 final int keyYPos = row.getKeyY();
226 // Update row to have current x coordinate
    [all...]
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 79 /** vertical height of drawn blocks in each row */
86 /** total vertical space for row */
93 /** start of first row */
130 public static interface Row {
136 Row row; field in class:TimeLineView.Record
139 public Record(Row row, Block block) {
140 this.row = row;
432 Row row = rec.row; local
    [all...]
  /external/tinyxml/
tinyxml.h 104 void Clear() { row = col = -1; }
106 int row; // 0 based. member in struct:TiXmlCursor
181 The row and column are 1-based. (That is the first row and first column is
183 a row and column value.
185 Generally, the row and column value will be set when the TiXmlDocument::Load(),
193 There is a minor performance cost to computing the row and column. Computation
198 int Row() const { return location.row + 1; }
199 int Column() const { return location.col + 1; } ///< See Row()
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /external/emma/lib/
emma.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 679 milliseconds

12