Searched refs:Row (Results 1 - 25 of 78) sorted by relevance

1234

/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) { argument
14 return Board(State | ((uint64_t)Row << (Col * 4)));
19 constexpr bool ok(int Row, int Col) { argument
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) { argument
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, in argument
37 tryBoard(const Board &Try, int N, int Col, int Row, const Board &B) argument
41 buildBoardScan(int N, int Col, int Row, const Board &B) argument
57 check(const char *p, int Row, int Col) argument
[all...]
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_table.h37 struct Row { struct in class:predictors::AutocompleteActionPredictorTable
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);
67 void AddRow(const Row& row);
68 void UpdateRow(const Row
[all...]
H A Dautocomplete_action_predictor_table.cc24 const predictors::AutocompleteActionPredictorTable::Row& row,
36 predictors::AutocompleteActionPredictorTable::Row* row) {
52 AutocompleteActionPredictorTable::Row::Row() function in class:predictors::AutocompleteActionPredictorTable::Row
57 AutocompleteActionPredictorTable::Row::Row(const Row::Id& id, function in class:predictors::AutocompleteActionPredictorTable::Row
69 AutocompleteActionPredictorTable::Row::Row(const Row function in class:predictors::AutocompleteActionPredictorTable::Row
[all...]
H A Dautocomplete_action_predictor_table_unittest.cc38 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;
135 << "Expected: Row with id " << test_db_[0].id << "\n"
136 << "Got: Row wit
[all...]
/external/chromium_org/mojo/examples/keyboard/
H A Dkeys.h45 struct Row { struct in namespace:mojo::examples
53 std::vector<const Row*> GetQWERTYRows();
57 std::vector<const Row*> GetNumericRows();
H A Dkeyboard_view.h23 struct Row;
55 void LayoutRow(const Row& row,
62 void SetRows(const std::vector<const Row*>& rows);
65 void ConfigureButtonsInRow(int row_index, const Row& row);
91 std::vector<const Row*> rows_;
H A Dkeys.cc64 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*> row
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java56 final Row row = new Row (true);
64 final Row row = new Row (false);
105 private static class Row extends IElement.Factory.ElementImpl class in class:HTMLTable
116 Row (final boolean th) method in class:HTMLTable.Row
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp125 DWARFDebugLine::Row::Row(bool default_is_stmt) { function in class:DWARFDebugLine::Row
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
[all...]
H A DDWARFDebugLine.h85 struct Row { struct in class:llvm::DWARFDebugLine
86 explicit Row(bool default_is_stmt = false);
93 static bool orderByAddress(const Row& LHS, const Row& RHS) {
166 void appendRow(const DWARFDebugLine::Row &R) {
194 typedef std::vector<Row> RowVector;
218 struct Row Row; member in struct:llvm::DWARFDebugLine::ParsingState
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h106 struct Row struct in class:DWARFDebugLine
108 typedef std::vector<Row> collection;
112 Row(bool default_is_stmt = false);
113 Row(const Row& rhs) : function in struct:DWARFDebugLine::Row
125 Row& operator =(const Row& rhs)
142 virtual ~Row() {}
146 static void Insert(Row::collection& state_coll, const Row
[all...]
H A DDWARFDebugLine.cpp207 Row row(prologue.default_is_stmt);
1003 Row::const_iterator pos = rows.begin();
1004 Row::const_iterator end = rows.end();
1015 DWARFDebugLine::LineTable::AppendRow(const DWARFDebugLine::Row& state)
1025 static bool FindMatchingAddress (const DWARFDebugLine::Row& row1, const DWARFDebugLine::Row& row2)
1042 DWARFDebugLine::Row row;
1044 Row::const_iterator begin_pos = rows.begin();
1045 Row::const_iterator end_pos = rows.end();
1046 Row
1076 DWARFDebugLine::Row::Row(bool default_is_stmt) : function in class:DWARFDebugLine::Row
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.h47 // Row represents a single row of a region. A row is set of rectangles that
49 struct Row { struct in class:webrtc::DesktopRegion
50 Row(int32_t top, int32_t bottom);
51 ~Row();
62 typedef std::map<int, Row*> Rows;
140 static void AddSpanToRow(Row* row, int32_t left, int32_t right);
143 static bool IsSpanInRow(const Row& row, const RowSpan& rect);
/external/eigen/Eigen/src/OrderingMethods/
H A DEigen_Colamd.h114 /* Row and column status */
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 ==
199 required for the Col and Row arrays, respectively, which are internal to
218 static Index init_rows_cols (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> col [], Index A [], Index p [], Index stats[COLAMD_STATS] );
221 static void init_scoring (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> Col [], Index A [], Index head [], double knobs[COLAMD_KNOBS], Index *p_n_row2, Index *p_n_col2, Index *p_max_deg);
224 static Index find_ordering (Index n_row, Index n_col, Index Alen, Colamd_Row<Index> Row [], colamd_col<Index> Col [], Index A [], Index head [], Index n_col2, Index max_deg, Index pfree);
233 static Index garbage_collection (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_co
338 Colamd_Row<Index> *Row ; /* pointer into A of Row [0..n_row] array */ local
[all...]
/external/lldb/source/Symbol/
H A DUnwindPlan.cpp21 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
153 UnwindPlan::Row::Clear ()
162 UnwindPlan::Row::Dump (Stream& s, const UnwindPlan* unwind_plan, Thread* thread, addr_t base_addr) const
190 UnwindPlan::Row::Row() function in class:UnwindPlan::Row
[all...]
H A DDWARFCallFrameInfo.cpp286 UnwindPlan::Row::RegisterLocation reg_location;
440 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row;
447 UnwindPlan::Row::RegisterLocation reg_location;
458 case DW_CFA_advance_loc : // (Row Creation Instruction)
466 UnwindPlan::Row *newrow = new UnwindPlan::Row;
511 case DW_CFA_set_loc : // 0x1 (Row Creation Instruction)
519 UnwindPlan::Row *newrow = new UnwindPlan::Row;
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java41 private List<Row> rows = new ArrayList<Row>();
91 rows.add(new Row(fieldList));
104 * Adds a new <code>Row</code>.
107 public void addRow(Row row){
125 public Iterator<Row> getRows() {
126 return Collections.unmodifiableList(new ArrayList<Row>(rows)).iterator();
221 public static class Row { class in class:ReportedData
224 public Row(List<Field> fields) { method in class:ReportedData.Row
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dsimple_grid_layout.h15 class Row;
89 void AddRow(Row* row);
97 ScopedVector<Row> rows_;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer_pow2.h43 struct Row { struct in class:GrRectanizerPow2
54 Row fRows[kMaxExponent]; // 0-th entry will be unused
70 void initRow(Row* row, int rowHeight) {
H A DGrRectanizer_pow2.cpp24 Row* row = &fRows[HeightToRowIndex(height)];
37 // that row is now "full", so retarget our Row record for
/external/skia/src/gpu/
H A DGrRectanizer_pow2.h43 struct Row { struct in class:GrRectanizerPow2
54 Row fRows[kMaxExponent]; // 0-th entry will be unused
70 void initRow(Row* row, int rowHeight) {
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log.cc31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row { class in namespace:webrtc
35 Row();
36 ~Row();
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row() function in class:webrtc::Row
112 Row::~Row() {
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log.cc31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row { class in namespace:webrtc
35 Row();
36 ~Row();
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row() function in class:webrtc::Row
112 Row::~Row() {
[all...]
/external/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp504 UnwindPlan::RowSP row(new UnwindPlan::Row);
509 UnwindPlan::Row::RegisterLocation initial_regloc;
536 // Allocate a new Row, populate it with the existing Row contents.
537 UnwindPlan::Row *newrow = new UnwindPlan::Row;
566 UnwindPlan::Row::RegisterLocation regloc;
570 // Allocate a new Row, populate it with the existing Row contents.
571 newrow = new UnwindPlan::Row;
[all...]
/external/lldb/include/lldb/Symbol/
H A DUnwindPlan.h42 class Row { class in class:lldb_private::UnwindPlan
220 const UnwindPlan::Row* row,
241 Row ();
243 Row (const UnwindPlan::Row& rhs) : function in class:lldb_private::UnwindPlan::Row
252 operator == (const Row &rhs) const;
341 }; // class Row
345 typedef std::shared_ptr<Row> RowSP;

Completed in 5138 milliseconds

1234