HomeSort by relevance Sort by last modified time
    Searched defs:Row (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/predictors/
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...]
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...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
mosaic_mode.js 1008 var row = this.columns_[column].getRowByTileIndex(index);
1009 if (!row) {
1010 console.error('Cannot find row for tile #' + index);
1015 if (row.hasTile(sameRowNeighbourIndex))
1023 getEdgeTileIndex_(row.getCenterY(), -direction);
1041 var row = this.columns_[column].getRowByTileIndex(index);
1042 if (!row) {
1043 console.error('Cannot find row for tile #' + index);
1047 // Find the first item in the next row, or the last item in the previous row
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrRectanizer.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [all...]
GrRectanizer_fifo.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 56 final Row row = new Row (true); local
57 add (row);
59 return row;
64 final Row row = new Row (false); local
65 add (row);
67 return row;
    [all...]
  /external/skia/src/gpu/
GrRectanizer.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [all...]
GrRectanizer_fifo.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [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/webrtc/src/system_wrappers/source/
data_log.cc 31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row {
35 Row();
36 ~Row();
57 // A LogTable contains multiple rows, where only the latest row is active for
71 // Buffers the current row while it is waiting to be written to file,
72 // which is done by a call to Flush(). A new row is available when the
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row(
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 41 private List<Row> rows = new ArrayList<Row>();
91 rows.add(new Row(fieldList));
104 * Adds a new <code>Row</code>.
105 * @param row the new row to add.
107 public void addRow(Row row){
108 rows.add(row);
125 public Iterator<Row> getRows()
    [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);
724 AddRow(new Row(false, 0, vertical_resize, column_set));
728 AddRow(new Row(true, pixel_count, vertical_resize, NULL));
812 // SizeRowsAndColumns sets the size and location of each row/column, but
888 // Reset the height of each row
927 Row* row = rows_[view_state->start_row]; 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/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
162 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
163 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col];
    [all...]
  /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...]
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 352 // Get the index of row we're looking for in the line table.
356 // Take file number and line/column from the row.
357 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
358 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
361 Line = Row.Line;
362 Column = Row.Column;
436 // Get the index of row we're looking for in the line table.
444 // Take file number and line/column from the row.
445 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]
    [all...]
DWARFDebugLine.h 87 struct Row {
88 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
89 /// Called after a row is appended to the matrix.
94 static bool orderByAddress(const Row& LHS, const Row& RHS) {
167 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
177 // Returns the index of the row with file/line info for a given address,
178 // or -1 if there is no such row.
194 typedef std::vector<Row> RowVector;
202 struct State : public Row, public Sequence, public LineTable
221 unsigned row; member in struct:llvm::DWARFDebugLine::State
    [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/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...]
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 93 ArrayList<Row> mRows = new ArrayList<Row>();
115 private class Row {
119 public Row(int row, String snippet) {
121 mRowNumber = row;
143 mRows.add(new Row(i, snippet));
208 * a "word" by taking the substring of the full row text in the words table
296 Row row = mRows.get(mCurrentRow) local
    [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...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 52 * &lt;Row android:keyWidth="32px" &gt;
55 * &lt;/Row&gt;
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/third_party/skia/src/core/
SkAAClip.cpp 91 return segments * 2; // each segment is row[0] + row[1] (n + alpha)
102 uint8_t* row = head->data(); local
105 row[0] = n;
106 row[1] = 0xFF;
108 row += 2;
175 static size_t compute_row_length(const uint8_t row[], int width) {
176 const uint8_t* origRow = row;
178 int n = row[0];
181 row += 2
211 const uint8_t* row = head->data() + yoff->fOffset; local
448 uint8_t* row = base + yoff->fOffset; local
851 const uint8_t* row = this->findRow(top, &lastY); local
898 Row* row = fRows.begin(); local
916 Row* row = fCurrRow; local
1004 const Row* row = fRows.begin(); local
1058 const Row& row = fRows[y]; local
1079 const Row& row = fRows[i]; local
1858 const uint8_t* row = fAAClip->findRow(y); local
1926 const uint8_t* row = fAAClip->findRow(y); local
1944 const uint8_t* row = fAAClip->findRow(y, &lastY); local
2160 const uint8_t* row = fAAClip->findRow(y, &localStopY); local
    [all...]
  /external/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 1239 milliseconds

1 2 3