/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; 84 test_db_.push_back(AutocompleteActionPredictorTable::Row( 88 test_db_.push_back(AutocompleteActionPredictorTable::Row( 92 test_db_.push_back(AutocompleteActionPredictorTable::Row( 119 const AutocompleteActionPredictorTable::Row& lhs, 120 const AutocompleteActionPredictorTable::Row& rhs) const { 132 AutocompleteActionPredictorTable::Row row; local 133 db_->autocomplete_table()->GetRow(test_db_[0].id, &row); 194 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/chromium_org/mojo/examples/keyboard/ |
keys.h | 45 struct Row { 53 std::vector<const Row*> GetQWERTYRows(); 57 std::vector<const Row*> GetNumericRows();
|
keyboard_view.h | 23 struct Row; 54 // Lays out the buttons for the specified row. 55 void LayoutRow(const Row& row, 62 void SetRows(const std::vector<const Row*>& rows); 64 // Configures the button in a row. 65 void ConfigureButtonsInRow(int row_index, const Row& row); 70 // Returns the button corresponding to a key at the specified row/column. 71 views::LabelButton* GetButton(int row, int column) [all...] |
keys.cc | 64 const Row kQWERTYRow1 = { 70 const Row kQWERTYRow2 = { 76 const Row kQWERTYRow3 = { 82 const Row kQWERTYRow4 = { 141 const Row kNumericRow1 = { 147 const Row kNumericRow2 = { 153 const Row kNumericRow3 = { 159 const Row kNumericRow4 = { 167 std::vector<const Row*> GetQWERTYRows() { 168 std::vector<const Row*> rows [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
OnItemClickedListener.java | 25 public void onItemClicked(Object item, Row row);
|
OnItemSelectedListener.java | 17 * Interface for receiving notification when a row or item becomes selected. 23 * Called when the a row or a new item becomes selected. The concept of current selection 24 * is different than focus. Row or item can be selected even they don't have focus. 26 * item or selected row when user selects rows outside row UI (e.g. headers left of 30 * selection changes between rows, regardless if row view has focus or not. 32 * For a {@link ListRow} case, parameter item can be null if the list row is empty. 35 * In the case of a grid, the row parameter is always null. 38 * Row has focus: event is fired when focus changes between child of the row [all...] |
OnItemViewClickedListener.java | 22 RowPresenter.ViewHolder rowViewHolder, Row row);
|
OnItemViewSelectedListener.java | 17 * Interface for receiving notification when a row or item becomes selected. 21 * Called when the a row or a new item becomes selected. The concept of current selection 22 * is different than focus. Row or item can be selected even they don't have focus. 24 * item or selected row when user selects rows outside row UI (e.g. headers left of 28 * selection changes between rows, regardless if row view has focus or not. 30 * For a {@link ListRow} case, parameter item can be null if the list row is empty. 33 * In the case of a grid, the row parameter is always null. 36 * Row has focus: event is fired when focus changes between child of the row [all...] |
Row.java | 19 * A row in a RowsFragment. This is the base class for all rows. 23 public class Row { 34 * Constructor for a Row. 36 * @param id The id of the row. 37 * @param headerItem The {@link HeaderItem} for this Row, or null if there 40 public Row(long id, HeaderItem headerItem) { 46 * Constructor for a Row. 48 * @param headerItem The {@link HeaderItem} for this Row, or null if there 51 public Row(HeaderItem headerItem) { 56 * Constructor for a Row [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrRectanizer_pow2.h | 15 // of two can have, at most, one active row/shelf. Once a row/shelf for 17 // to a new row. 43 struct Row { 46 // but it is used to signal if there exists an open row of this height 54 Row fRows[kMaxExponent]; // 0-th entry will be unused 70 void initRow(Row* row, int rowHeight) { 71 row->fLoc.set(0, fNextStripY); 72 row->fRowHeight = rowHeight [all...] |
/external/skia/src/gpu/ |
GrRectanizer_pow2.h | 15 // of two can have, at most, one active row/shelf. Once a row/shelf for 17 // to a new row. 43 struct Row { 46 // but it is used to signal if there exists an open row of this height 54 Row fRows[kMaxExponent]; // 0-th entry will be unused 70 void initRow(Row* row, int rowHeight) { 71 row->fLoc.set(0, fNextStripY); 72 row->fRowHeight = rowHeight [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.cpp | 125 DWARFDebugLine::Row::Row(bool default_is_stmt) { 129 void DWARFDebugLine::Row::postAppend() { 135 void DWARFDebugLine::Row::reset(bool default_is_stmt) { 149 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { 184 for (const Row &R : Rows) { 202 Row.reset(LineTable->Prologue.DefaultIsStmt); 210 Sequence.LowPC = Row.Address; 214 LineTable->appendRow(Row); 215 if (Row.EndSequence) 603 DWARFDebugLine::Row row; local 621 DWARFDebugLine::Row row; local [all...] |
DWARFDebugLine.h | 85 struct Row { 86 explicit Row(bool default_is_stmt = false); 88 /// Called after a row is appended to the matrix. 93 static bool orderByAddress(const Row& LHS, const Row& RHS) { 166 void appendRow(const DWARFDebugLine::Row &R) { 173 // Returns the index of the row with file/line info for a given address, 174 // or -1 if there is no such row. 194 typedef std::vector<Row> RowVector; 215 // The row number that starts at zero for the prologue, and increases fo [all...] |
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
DWARFDebugLine.h | 106 struct Row 108 typedef std::vector<Row> collection; 112 Row(bool default_is_stmt = false); 113 Row(const Row& rhs) : 125 Row& operator =(const Row& rhs) 142 virtual ~Row() {} 146 static void Insert(Row::collection& state_coll, const Row& state) 221 int row; \/\/ The row number that starts at zero for the prologue, and increases for each row added to the matrix member in struct:DWARFDebugLine::State [all...] |
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
desktop_region.h | 25 // Internally each region is stored as a set of rows where each row contains one 32 // RowSpan represents a horizontal span withing a single row. 47 // Row represents a single row of a region. A row is set of rectangles that 49 struct Row { 50 Row(int32_t top, int32_t bottom); 51 ~Row(); 59 // Type used to store list of rows in the region. The bottom position of row 62 typedef std::map<int, Row*> Rows [all...] |
/external/eigen/Eigen/src/OrderingMethods/ |
Eigen_Colamd.h | 69 /* knobs [0] and stats [0]: dense row knob and output statistic. */ 114 /* Row and column status */ 122 /* Macros for row and column status update and checking. */ 123 #define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark) 125 #define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE) 129 #define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; } 137 // == Row and Column structures == 141 Index start ; /* index for A of first row in this column, or DEAD */ 175 Index start ; /* index for A of first col in this row */ 176 Index length ; /* number of principal columns in this row */ 505 Index row ; \/* a row index *\/ local 724 Index r, row ; \/* a row index *\/ local 974 Index row ; \/* a row index *\/ local [all...] |
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
BrowseAnimationFragment.java | 23 import android.support.v17.leanback.widget.Row; 80 createRandomRow(new HeaderItem(i, "Row " + i))); 91 public void onItemClicked(Object item, Row row) { 92 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row) 105 public void onItemClicked(Object item, Row row) { 106 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row) 119 public void onItemClicked(Object item, Row row) { [all...] |
/external/lldb/source/Symbol/ |
UnwindPlan.cpp | 21 UnwindPlan::Row::RegisterLocation::operator == (const UnwindPlan::Row::RegisterLocation& rhs) const 52 UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len) 62 UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len) 70 UnwindPlan::Row::RegisterLocation::Dump (Stream &s, const UnwindPlan* unwind_plan, const UnwindPlan::Row* row, Thread* thread, bool verbose) const 99 if (unwind_plan && row) 101 const uint32_t cfa_reg = row->GetCFARegister(); 103 const int32_t offset = row->GetCFAOffset() + m_location.offset 318 RowSP row; local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
netioapi.h | 361 const MIB_ANYCASTIPADDRESS_ROW *Row 365 const MIB_IPFORWARD_ROW2 *Row 374 PMIB_IPNET_ROW2 Row 378 const MIB_IPNET_ROW2 *Row 392 const MIB_IPNET_ROW2 *Row 396 const MIB_UNICASTIPADDRESS_ROW *Row 400 const MIB_IPFORWARD_ROW2 *Row 413 const MIB_IPNET_ROW2 *Row 422 const MIB_UNICASTIPADDRESS_ROW *Row 426 PMIB_UNICASTIPADDRESS_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...] |
/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...] |