/external/clang/test/SemaCXX/ |
D | constexpr-nqueens.cpp | 13 constexpr Board addQueen(int Row, int Col) { in addQueen() 14 return Board(State | ((uint64_t)Row << (Col * 4))); in addQueen() 19 constexpr bool ok(int Row, int Col) { in ok() 20 return okRecurse(Row, Col, 0); in ok() 22 constexpr bool okRecurse(int Row, int Col, int CheckCol) { in okRecurse() 24 getQueenRow(CheckCol) == Row ? false : in okRecurse() 25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false : in okRecurse() 26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false : in okRecurse() 27 okRecurse(Row, Col, CheckCol + 1); in okRecurse() 29 constexpr bool at(int Row, int Col) { in at() [all …]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 125 DWARFDebugLine::Row::Row(bool default_is_stmt) { in Row() function in DWARFDebugLine::Row 129 void DWARFDebugLine::Row::postAppend() { in postAppend() 135 void DWARFDebugLine::Row::reset(bool default_is_stmt) { in reset() 149 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump() 184 for (const Row &R : Rows) { in dump() 202 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence() 210 Sequence.LowPC = Row.Address; in appendRowToMatrix() 214 LineTable->appendRow(Row); in appendRowToMatrix() 215 if (Row.EndSequence) { in appendRowToMatrix() 217 Sequence.HighPC = Row.Address; in appendRowToMatrix() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Row.java | 15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, class 16 Freezable<Row<C0, C1, C2, C3, C4>>{ 36 public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> { 41 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> { 46 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> { 51 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> { 57 public Row<C0, C1, C2, C3, C4> set0(C0 item) { in set0() 63 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1() 69 public Row<C0, C1, C2, C3, C4> set2(C2 item) { in set2() 75 public Row<C0, C1, C2, C3, C4> set3(C3 item) { in set3() [all …]
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Eigen_Colamd.h | 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 ; } 218 static Index init_rows_cols (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> … 221 static void init_scoring (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> Col… 224 static Index find_ordering (Index n_row, Index n_col, Index Alen, Colamd_Row<Index> Row [], colamd_… 233 static Index garbage_collection (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Ind… 236 static inline Index clear_mark (Index n_row, Colamd_Row<Index> Row [] ) ; 338 Colamd_Row<Index> *Row ; /* pointer into A of Row [0..n_row] array */ in colamd() local 435 Row = (Colamd_Row<Index> *) &A [Alen + Col_size] ; in colamd() [all …]
|
/external/lldb/source/Symbol/ |
D | UnwindPlan.cpp | 21 UnwindPlan::Row::RegisterLocation::operator == (const UnwindPlan::Row::RegisterLocation& rhs) const in operator ==() 52 UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len) in SetAtDWARFExpression() 62 UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len) in SetIsDWARFExpression() 70 UnwindPlan::Row::RegisterLocation::Dump (Stream &s, const UnwindPlan* unwind_plan, const UnwindPlan… in Dump() 153 UnwindPlan::Row::Clear () in Clear() 162 UnwindPlan::Row::Dump (Stream& s, const UnwindPlan* unwind_plan, Thread* thread, addr_t base_addr) … in Dump() 190 UnwindPlan::Row::Row() : in Row() function in UnwindPlan::Row 199 UnwindPlan::Row::GetRegisterInfo (uint32_t reg_num, UnwindPlan::Row::RegisterLocation& register_loc… in GetRegisterInfo() 211 UnwindPlan::Row::SetRegisterInfo (uint32_t reg_num, const UnwindPlan::Row::RegisterLocation registe… in SetRegisterInfo() 217 UnwindPlan::Row::SetRegisterLocationToAtCFAPlusOffset (uint32_t reg_num, int32_t offset, bool can_r… in SetRegisterLocationToAtCFAPlusOffset() [all …]
|
D | DWARFCallFrameInfo.cpp | 286 UnwindPlan::Row::RegisterLocation reg_location; in ParseCIE() 440 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row; in FDEToUnwindPlan() 447 UnwindPlan::Row::RegisterLocation reg_location; in FDEToUnwindPlan() 466 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 519 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 532 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 545 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 558 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan() 633 UnwindPlan::Row *newrow = new UnwindPlan::Row; in FDEToUnwindPlan()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugLine.h | 106 struct Row struct 108 typedef std::vector<Row> collection; argument 112 Row(bool default_is_stmt = false); argument 113 Row(const Row& rhs) : in Row() function 125 Row& operator =(const Row& rhs) 142 virtual ~Row() {} in ~Row() argument 146 static void Insert(Row::collection& state_coll, const Row& state); 147 static void Dump(lldb_private::Log *log, const Row::collection& state_coll); 175 void AppendRow(const DWARFDebugLine::Row& state); argument 186 Row::collection rows; [all …]
|
D | DWARFDebugLine.cpp | 207 Row row(prologue.default_is_stmt); in DumpStatementOpcodes() 1003 Row::const_iterator pos = rows.begin(); in Dump() 1004 Row::const_iterator end = rows.end(); in Dump() 1015 DWARFDebugLine::LineTable::AppendRow(const DWARFDebugLine::Row& state) in AppendRow() 1025 static bool FindMatchingAddress (const DWARFDebugLine::Row& row1, const DWARFDebugLine::Row& row2) in FindMatchingAddress() 1042 DWARFDebugLine::Row row; in LookupAddress() 1044 Row::const_iterator begin_pos = rows.begin(); in LookupAddress() 1045 Row::const_iterator end_pos = rows.end(); in LookupAddress() 1046 Row::const_iterator pos = lower_bound(begin_pos, end_pos, row, FindMatchingAddress); in LookupAddress() 1076 DWARFDebugLine::Row::Row(bool default_is_stmt) : in Row() function in DWARFDebugLine::Row [all …]
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugLine.h | 85 struct Row { struct 86 explicit Row(bool default_is_stmt = false); 93 static bool orderByAddress(const Row& LHS, const Row& RHS) { in orderByAddress() argument 166 void appendRow(const DWARFDebugLine::Row &R) { in appendRow() 200 typedef std::vector<Row> RowVector; 224 struct Row Row; member
|
/external/lldb/source/Plugins/UnwindAssembly/x86/ |
D | UnwindAssembly-x86.cpp | 504 UnwindPlan::RowSP row(new UnwindPlan::Row); in get_non_call_site_unwind_plan() 509 UnwindPlan::Row::RegisterLocation initial_regloc; in get_non_call_site_unwind_plan() 537 UnwindPlan::Row *newrow = new UnwindPlan::Row; in get_non_call_site_unwind_plan() 566 UnwindPlan::Row::RegisterLocation regloc; in get_non_call_site_unwind_plan() 571 newrow = new UnwindPlan::Row; in get_non_call_site_unwind_plan() 583 newrow = new UnwindPlan::Row; in get_non_call_site_unwind_plan() 607 UnwindPlan::Row::RegisterLocation regloc; in get_non_call_site_unwind_plan() 612 newrow = new UnwindPlan::Row; in get_non_call_site_unwind_plan() 624 UnwindPlan::Row::RegisterLocation regloc; in get_non_call_site_unwind_plan() 629 newrow = new UnwindPlan::Row; in get_non_call_site_unwind_plan() [all …]
|
/external/webrtc/src/system_wrappers/source/ |
D | data_log.cc | 33 class Row { class 35 Row(); 36 ~Row(); 95 typedef std::list<Row*> RowList; 101 Row* current_row_; 107 Row::Row() in Row() function in webrtc::Row 112 Row::~Row() { in ~Row() 121 int Row::InsertCell(const std::string& column_name, in InsertCell() 131 void Row::ToString(const std::string& column_name, in ToString() 147 current_row_(new Row), in LogTable() [all …]
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | HTMLTable.java | 56 final Row row = new Row (true); in newTitleRow() 64 final Row row = new Row (false); in newRow() 105 private static class Row extends IElement.Factory.ElementImpl class in HTMLTable 116 Row (final boolean th) in Row() method in HTMLTable.Row
|
/external/libavc/encoder/arm/ |
D | ime_distortion_metrics_a9q.s | 373 @Row 1 374 vld1.8 {d0, d1}, [r2], r4 @ load src Row 1 375 vld1.8 {d2, d3}, [r0], r3 @ load ref1 Row 1 376 vld1.8 {d4, d5}, [r1], r3 @ load ref2 Row 1 378 @Row 2 379 vld1.8 {d6, d7}, [r2], r4 @ load src Row 2 382 vld1.8 {d8, d9}, [r0], r3 @ load ref1 Row 2 385 vld1.8 {d10, d11}, [r1], r3 @ load ref2 Row 2 390 @Row 1 391 vld1.8 {d0, d1}, [r2], r4 @ load src Row 1 [all …]
|
/external/lldb/include/lldb/Symbol/ |
D | UnwindPlan.h | 42 class Row { 220 const UnwindPlan::Row* row, 241 Row (); 243 Row (const UnwindPlan::Row& rhs) : in Row() function 252 operator == (const Row &rhs) const; 345 typedef std::shared_ptr<Row> RowSP;
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | XEquivalenceMap.java | 16 import com.ibm.icu.impl.Row; 17 import com.ibm.icu.impl.Row.R2; 26 Map<K,Row.R2<V,Set<R>>> source_target_reasons = new HashMap<K,Row.R2<V,Set<R>>>(); 57 target_reasons = Row.of(target, reasons); in add()
|
/external/lldb/source/Plugins/UnwindAssembly/InstEmulation/ |
D | UnwindAssemblyInstEmulation.cpp | 101 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 166 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 178 UnwindPlan::Row::RegisterLocation pc_regloc; in GetNonCallSiteUnwindPlanFromAssembly() 179 UnwindPlan::Row::RegisterLocation ra_regloc; in GetNonCallSiteUnwindPlanFromAssembly() 228 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 234 newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly() 257 UnwindPlan::Row *newrow = new UnwindPlan::Row; in GetNonCallSiteUnwindPlanFromAssembly()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 452 std::vector<DWARFDebugLine::Row> &Rows, 768 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit() 807 auto &Row = Rows[Idx]; in emitLineTableForUnit() local 814 MS->EmitIntValue(Row.Address, PointerSize); in emitLineTableForUnit() 818 AddressDelta = (Row.Address - Address) / MinInstLength; in emitLineTableForUnit() 827 if (FileNum != Row.File) { in emitLineTableForUnit() 828 FileNum = Row.File; in emitLineTableForUnit() 833 if (Column != Row.Column) { in emitLineTableForUnit() 834 Column = Row.Column; in emitLineTableForUnit() 843 if (Isa != Row.Isa) { in emitLineTableForUnit() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopInterchange.cpp | 198 bool isOuterMostDepPositive(CharMatrix &DepMatrix, unsigned Row, in isOuterMostDepPositive() argument 201 if (DepMatrix[Row][i] == '<') in isOuterMostDepPositive() 203 if (DepMatrix[Row][i] == '>') in isOuterMostDepPositive() 211 bool containsNoDependence(CharMatrix &DepMatrix, unsigned Row, in containsNoDependence() argument 214 if (DepMatrix[Row][i] != '=' || DepMatrix[Row][i] != 'S' || in containsNoDependence() 215 DepMatrix[Row][i] != 'I') in containsNoDependence() 221 bool validDepInterchange(CharMatrix &DepMatrix, unsigned Row, in validDepInterchange() argument 224 if (isOuterMostDepPositive(DepMatrix, Row, OuterLoopId)) in validDepInterchange() 248 if (!containsNoDependence(DepMatrix, Row, OuterLoopId)) in validDepInterchange() 264 for (unsigned Row = 0; Row < NumRows; ++Row) { in isLegalToInterChangeLoops() local [all …]
|
/external/skia/src/gpu/ |
D | GrRectanizer_pow2.h | 43 struct Row { struct 54 Row fRows[kMaxExponent]; // 0-th entry will be unused argument 70 void initRow(Row* row, int rowHeight) { in initRow()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | LocaleMatcher.java | 18 import com.ibm.icu.impl.Row; 19 import com.ibm.icu.impl.Row.R2; 20 import com.ibm.icu.impl.Row.R3; 179 final Row.R2<ULocale, Double> matchRow = getBestMatchInternal(language); in getBestMatch() 241 private Row.R2<ULocale, Double> getBestMatchInternal(ULocale languageCode) { in getBestMatchInternal() 264 return Row.R2.of(bestTableMatch, bestWeight); in getBestMatchInternal() 269 R2<ULocale, Double> row = Row.of(addLikelySubtags(language), weight); in add() 273 …Map<ULocale,Row.R2<ULocale, Double>> maximizedLanguageToWeight = new LinkedHashMap<ULocale, R2<ULo… 429 …LinkedHashSet<Row.R3<LocalePatternMatcher,LocalePatternMatcher,Double>> scores = new LinkedHashSet… 682 …R3<LocalePatternMatcher,LocalePatternMatcher,Double> data = Row.of(desiredMatcher, supportedMatche… in addDistance() [all …]
|
/external/tinyxml/ |
D | xmltest.cpp | 397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 ); in main() 399 XmlTest( "Location tracking: room row", room->Row(), 1 ); in main() 401 XmlTest( "Location tracking: doors row", doors->Row(), 1 ); in main() 403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 ); in main() 405 XmlTest( "Location tracking: text row", text->Row(), 3 ); in main() 407 XmlTest( "Location tracking: door0 row", door0->Row(), 3 ); in main() 409 XmlTest( "Location tracking: door1 row", door1->Row(), 4 ); in main() 431 XmlTest( "Location tracking: Tab 8: room row", room->Row(), 1 ); in main() 433 XmlTest( "Location tracking: Tab 8: doors row", doors->Row(), 1 ); in main() 513 XmlTest( "UTF-8: Russian value row.", 4, element->Row() ); in main() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | TrieMapTest.java | 22 import com.ibm.icu.impl.Row; 23 import com.ibm.icu.impl.Row.R3; 248 Row.R3<Integer, Integer, String>[] expected = new Row.R3[] { in checkSearch() 249 Row.of(1,4,"first"), in checkSearch() 250 Row.of(3,7,"fifth"), in checkSearch() 251 Row.of(8,11,"first"), in checkSearch() 252 Row.of(8,13,"second"), in checkSearch() 253 Row.of(14,19,"third"), in checkSearch() 268 actualList.add(Row.of(start,end,value)); in checkSearch()
|
/external/clang/tools/scan-build/ |
D | scan-build | 327 my $Row = { 337 push @$Stats, $Row; 478 foreach my $Row (@$Stats) { 479 $FilesHash->{$Row->{Filename}} = 1; 480 $TotalBlocks += $Row->{Total}; 481 $UnreachedBlocks += $Row->{Unreachable}; 482 $BlockAborted++ if $Row->{Aborted} eq 'yes'; 483 $WorkListAborted++ if $Row->{Empty} eq 'no'; 484 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no';
|
/external/fonttools/Lib/fontTools/ |
D | inspect.py | 18 class Row(object): class 129 children.append(Row(self, i, k, v, self._font)) 141 c = self._children[n] = Row(self, n, k, v, self._font) 170 self._root = Row(None, 0, "font", font, font)
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetDialogs.py | 46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls: 50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len) 58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1)) 60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)… 62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi… 64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls… 69 … self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text) 71 …self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lb… 73 …self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl… 75 … self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len) [all …]
|