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

1 2 3 4

  /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...]
autocomplete_action_predictor_table_unittest.cc 38 bool RowsAreEqual(const AutocompleteActionPredictorTable::Row& lhs,
39 const AutocompleteActionPredictorTable::Row& rhs) const;
85 test_db_.push_back(AutocompleteActionPredictorTable::Row(
89 test_db_.push_back(AutocompleteActionPredictorTable::Row(
93 test_db_.push_back(AutocompleteActionPredictorTable::Row(
120 const AutocompleteActionPredictorTable::Row& lhs,
121 const AutocompleteActionPredictorTable::Row& rhs) const {
133 AutocompleteActionPredictorTable::Row row; local
134 db_->autocomplete_table()->GetRow(test_db_[0].id, &row);
195 AutocompleteActionPredictorTable::Row row; local
    [all...]
autocomplete_action_predictor.h 144 typedef std::map<DBCacheKey, AutocompleteActionPredictorTable::Row::Id>
177 std::vector<AutocompleteActionPredictorTable::Row>* row_buffer);
188 // |id_list| must not be NULL. Every row id deleted will be added to id_list.
191 std::vector<AutocompleteActionPredictorTable::Row::Id>* id_list);
autocomplete_action_predictor_unittest.cc 141 history::URLRow row(test_row.url);
142 row.set_title(test_row.title);
143 row.set_last_visit(visit_time);
145 return url_db->AddURL(row);
148 AutocompleteActionPredictorTable::Row CreateRowFromTestUrlInfo(
150 AutocompleteActionPredictorTable::Row row; local
151 row.id = base::GenerateGUID();
152 row.user_text = test_row.user_text;
153 row.url = test_row.url
165 AutocompleteActionPredictorTable::Row row = local
    [all...]
  /external/clang/test/SemaCXX/
constexpr-nqueens.cpp 13 constexpr Board addQueen(int Row, int Col) {
14 return Board(State | ((uint64_t)Row << (Col * 4)));
19 constexpr bool ok(int Row, int Col) {
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) {
24 getQueenRow(CheckCol) == Row ? false :
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false :
26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false :
27 okRecurse(Row, Col, CheckCol + 1);
29 constexpr bool at(int Row, int Col)
    [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/llvm/lib/DebugInfo/
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...]
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.cpp 53 void DWARFDebugLine::Row::postAppend() {
59 void DWARFDebugLine::Row::reset(bool default_is_stmt) {
72 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
90 for (std::vector<Row>::const_iterator pos = Rows.begin(),
103 Sequence::FirstRowIndex = row;
105 ++row; // Increase the row number.
110 Sequence::LastRowIndex = row;
115 Row::postAppend();
119 row = DoneParsingLineTable
562 DWARFDebugLine::Row row; local
580 DWARFDebugLine::Row row; local
    [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...]
  /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_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/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/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 15 class Row;
19 // Each row has exactly one ColumnSet, ColumnSets can be shared between rows.
31 // The id is later used when starting a new row.
39 // Adds a padding row. Padding rows typically don't have any views, but are
41 // |size| specifies the height of the row.
44 // Starts a new row with the specified column set.
47 // This is a convenience function that starts a new row,
56 // TODO(groby): This currently *must* be called after a StartRow for the row
69 // Returns the column set of the last non-padding row.
72 // Get the height of a given row
    [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/chromium_org/third_party/skia/src/core/
SkRegion_rects.cpp 70 struct Row {
76 SkTDArray<Row> fRows;
95 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size);
96 SkRegion::RunType* rowHead = row;
101 // record the L R values for this row
108 *row++ = edge->fX;
122 *row++ = currR;
123 *row++ = edge->fX;
131 *row++ = currR;
134 int rowCount = row - rowHead
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.h 33 // // First start a row.
34 // layout->StartRow(0, // This row isn't vertically resizable.
35 // 0); // The column set to use for this row.
48 // columns and rows with a resize percent > 0 are resized. Each column/row
54 // new row you specify the id of the column set the row is to use.
65 class Row;
113 // The id is later used when starting a new row.
121 // Adds a padding row. Padding rows typically don't have any views, and
123 // Size specifies the height of the row
    [all...]
  /external/skia/src/core/
SkRegion_rects.cpp 70 struct Row {
76 SkTDArray<Row> fRows;
95 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size);
96 SkRegion::RunType* rowHead = row;
101 // record the L R values for this row
108 *row++ = edge->fX;
122 *row++ = currR;
123 *row++ = edge->fX;
131 *row++ = currR;
134 int rowCount = row - rowHead
    [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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
96 public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) {

Completed in 787 milliseconds

1 2 3 4