Home
last modified time | relevance | path

Searched refs:it_t (Results 1 – 25 of 100) sorted by relevance

1234

/dports/math/mfem/mfem-4.3/fem/
H A Dteltrans.hpp139 template <typename it_t> struct Result<0,it_t>
141 static const int ne = it_t::batch_size;
142 typedef typename it_t::vreal_t vreal_t;
160 template <typename it_t> struct Result<1,it_t>
162 static const int ne = it_t::batch_size;
163 typedef typename it_t::vreal_t vreal_t;
206 template <typename it_t> struct Result<2,it_t>
252 template <typename it_t> struct Result<3,it_t>
305 template <typename it_t> struct Result<6,it_t>
309 typedef typename it_t::vint_t vint_t;
[all …]
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/dialogs/
H A Dtransactioneditor.cpp381 …for (it_t = d->m_transactions.begin(); (rc == true) && (it_t != d->m_transactions.end()); ++it_t) { in fixTransactionCommodity()
384 if ((*it_t).transaction().commodity().isEmpty()) in fixTransactionCommodity()
389 switch ((*it_t).transaction().splitCount()) { in fixTransactionCommodity()
401 (*it_t).transaction().modifySplit(splitB); in fixTransactionCommodity()
436 (*it_t).transaction().modifySplit(splitA); in fixTransactionCommodity()
466 if (!(*it_t).split().shares().isZero() && !(*it_t).split().value().isZero()) in fixTransactionCommodity()
467 price = (*it_t).split().shares() / (*it_t).split().value(); in fixTransactionCommodity()
480 (*it_t).transaction().modifySplit(s); in fixTransactionCommodity()
494 d->m_transaction = (*it_t).transaction(); in fixTransactionCommodity()
632 …for (it_t = d->m_transactions.begin(); storeTransactions && !newTransactionCreated && it_t != d->m… in enterTransactions()
[all …]
/dports/math/g2o/g2o-20201223_git/g2o/solvers/structure_only/
H A Dstructure_only_solver.h89 for (g2o::HyperGraph::EdgeSet::iterator it_t=track.begin(); it_t!=track.end(); ++it_t) { variable
90 g2o::OptimizableGraph::Edge* e = dynamic_cast<g2o::OptimizableGraph::Edge *>(*it_t);
115 for (g2o::HyperGraph::EdgeSet::iterator it_t=track.begin(); it_t!=track.end(); ++it_t) { variable
116 g2o::OptimizableGraph::Edge* e = dynamic_cast<g2o::OptimizableGraph::Edge *>(*it_t);
164 … for (g2o::HyperGraph::EdgeSet::iterator it_t=track.begin(); it_t!=track.end(); ++it_t) { variable
165 … g2o::OptimizableGraph::Edge* e = dynamic_cast<g2o::OptimizableGraph::Edge *>(*it_t);
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/widgets/
H A Dselectedtransactions.cpp42 SelectedTransactions::const_iterator it_t; in warnLevel() local
43 for (it_t = begin(); warnLevel < SelectedTransaction::OneAccountClosed && it_t != end(); ++it_t) { in warnLevel()
44 SelectedTransaction::warnLevel_t thisLevel = (*it_t).warnLevel(); in warnLevel()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/stan/math/rev/core/
H A Dgrad.hpp38 typedef std::vector<vari*>::reverse_iterator it_t; in grad() typedef
40 it_t begin = ChainableStack::instance().var_stack_.rbegin(); in grad()
41 it_t end = empty_nested() ? ChainableStack::instance().var_stack_.rend() in grad()
43 for (it_t it = begin; it < end; ++it) { in grad()
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/sieve/
H A Dlas-descent-trees.hpp124 typedef std::list<tree *>::iterator it_t; in ~tree() typedef
125 for(it_t i = children.begin() ; i != children.end() ; i++) in ~tree()
132 typedef std::list<tree *>::const_iterator it_t; in is_successful() typedef
133 for(it_t i = children.begin() ; i != children.end() ; i++) { in is_successful()
164 typedef std::list<tree *>::iterator it_t; in ~descent_tree() typedef
165 for(it_t i = forest.begin() ; i != forest.end() ; i++) in ~descent_tree()
273 typedef std::list<tree *>::iterator it_t; in tree_depth() typedef
274 for(it_t i = t->children.begin() ; i != t->children.end() ; i++) { in tree_depth()
281 typedef std::list<tree *>::iterator it_t; in tree_weight() typedef
282 for(it_t i = t->children.begin() ; i != t->children.end() ; i++) { in tree_weight()
H A Dlas-descent-trees.cpp33 typedef list<tree *>::iterator it_t; in display_tree() typedef
34 for(it_t i = t->children.begin() ; i != t->children.end() ; i++) { in display_tree()
59 typedef list<tree *>::iterator it_t; in display_all_trees() typedef
61 for(it_t i = forest.begin() ; i != forest.end() ; i++, total++) { in display_all_trees()
71 for(it_t i = forest.begin() ; i != forest.end() ; i++, total++) { in display_all_trees()
/dports/devel/hyperscan/hyperscan-5.4.0/util/
H A Dstring_util.h113 template<typename it_t>
114 void prettyPrintRange(std::ostream &out, it_t begin, it_t end) { in prettyPrintRange()
116 it_t it = begin; in prettyPrintRange()
117 it_t itp = it; in prettyPrintRange()
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/mymoney/storage/
H A Dmymoneystoragedump.cpp98 QList<MyMoneyTransaction>::ConstIterator it_t; in writeStream() local
311 for (it_t = list_t.constBegin(); it_t != list_t.constEnd(); ++it_t) { in writeStream()
312 dumpTransaction(s, storage, *it_t); in writeStream()
400 s << " ID = " << it_t.id() << "\n"; in dumpTransaction()
401 s << " Postdate = " << it_t.postDate().toString(Qt::ISODate) << "\n"; in dumpTransaction()
402 s << " EntryDate = " << it_t.entryDate().toString(Qt::ISODate) << "\n"; in dumpTransaction()
403 s << " Commodity = [" << it_t.commodity() << "]\n"; in dumpTransaction()
404 s << " Memo = " << it_t.memo() << "\n"; in dumpTransaction()
405 s << " BankID = " << it_t.bankID() << "\n"; in dumpTransaction()
406 dumpKVP("KVP:", s, it_t, 2); in dumpTransaction()
[all …]
/dports/science/fastjet/fastjet-3.3.4/plugins/ATLASCone/
H A DCommonUtils.hh54 typedef typename T::iterator it_t; in clear_list() typedef
55 it_t it = list.begin(); in clear_list()
56 it_t itE = list.end(); in clear_list()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/examples/
H A Dpairs.cpp21 typedef std::map<std::string, int>::iterator it_t; typedef
22 it_t it;
23 it_t last;
H A Dpairs_with_raw_functions.cpp21 typedef std::map<std::string, int>::iterator it_t; typedef
22 it_t it;
23 it_t last;
/dports/devel/sol2/sol2-4.0.0-alpha/examples/source/
H A Dpairs.cpp20 typedef std::map<std::string, int>::iterator it_t; typedef
21 it_t it;
22 it_t last;
H A Dpairs_with_raw_functions.cpp20 typedef std::map<std::string, int>::iterator it_t; typedef
21 it_t it;
22 it_t last;
/dports/devel/boost-docs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_subimage() typedef
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
535 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
560 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_full() typedef
598 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
599 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
620 using it_t = typename row_buffer_helper_t::iterator_t; in read_stripped_data() typedef
626 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
628 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
629 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/devel/hyperscan/boost_1_75_0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_subimage() typedef
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
535 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
560 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_full() typedef
598 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
599 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
620 using it_t = typename row_buffer_helper_t::iterator_t; in read_stripped_data() typedef
626 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
628 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
629 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/devel/boost-python-libs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_subimage() typedef
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
535 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
560 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_full() typedef
598 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
599 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
620 using it_t = typename row_buffer_helper_t::iterator_t; in read_stripped_data() typedef
626 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
628 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
629 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_subimage() typedef
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
535 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
560 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_full() typedef
598 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
599 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
620 using it_t = typename row_buffer_helper_t::iterator_t; in read_stripped_data() typedef
626 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
628 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
629 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t;
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width;
535 it_t end = begin + dst_subimage_view.width();
560 using it_t = typename row_buffer_helper_t::iterator_t;
598 it_t begin = row_buffer_helper.begin() + row * tile_width;
599 it_t end = begin + dst_subimage_view.width();
620 using it_t = typename row_buffer_helper_t::iterator_t;
626 it_t begin = row_buffer_helper.begin();
628 it_t first = begin + this->_settings._top_left.x;
629 it_t last = first + this->_settings._dim.x; // one after last element
/dports/devel/boost-libs/boost_1_72_0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp437 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_subimage() typedef
532 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
535 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
560 using it_t = typename row_buffer_helper_t::iterator_t; in read_tiled_data_full() typedef
598 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
599 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
620 using it_t = typename row_buffer_helper_t::iterator_t; in read_stripped_data() typedef
626 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
628 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
629 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/boost_1.69.0/boost/gil/extension/io/tiff/detail/
H A Dread.hpp439 typedef typename row_buffer_helper_t::iterator_t it_t; in read_tiled_data_subimage() typedef
534 it_t begin = row_buffer_helper.begin() + tile_row * tile_width; in read_tiled_data_subimage()
537 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_subimage()
562 typedef typename row_buffer_helper_t::iterator_t it_t; in read_tiled_data_full() typedef
600 it_t begin = row_buffer_helper.begin() + row * tile_width; in read_tiled_data_full()
601 it_t end = begin + dst_subimage_view.width(); in read_tiled_data_full()
623 typedef typename row_buffer_helper_t::iterator_t it_t; in read_stripped_data() typedef
629 it_t begin = row_buffer_helper.begin(); in read_stripped_data()
631 it_t first = begin + this->_settings._top_left.x; in read_stripped_data()
632 it_t last = first + this->_settings._dim.x; // one after last element in read_stripped_data()
/dports/sysutils/xstow/xstow-1.0.2/src/
H A Dbacktrace.h28 typedef std::list<Ticket>::iterator it_t; typedef
48 it_t it = stack.end(); in pop()
71 for( it_t it = stack.begin(); it != stack.end(); it++ ) in bt()
/dports/sysutils/ua/ua-7a35148/
H A Dfilei.h283 typedef typename M::const_iterator it_t; // subset iterator typedef
328 for(it_t it= cmn.begin(); it != cmn.end(); ++it) {
372 for(it_t it=cmn.begin(); it != cmn.end(); ++it) {
378 for(it_t lit = locmn.begin(); lit!=locmn.end(); ++lit) {
/dports/math/cgal/CGAL-5.3/include/CGAL/Nef_3/
H A DSNC_point_locator.h58 mutable Timer ct_t, pl_t, rs_t, it_t; variable
693 CGAL_NEF_TIMER(it_t.start()); in intersect_with_edges_and_facets()
739 CGAL_NEF_TIMER(it_t.stop()); in intersect_with_edges_and_facets()
744 CGAL_NEF_TIMER(it_t.start()); in intersect_with_edges()
779 CGAL_NEF_TIMER(it_t.stop()); in intersect_with_edges()
784 CGAL_NEF_TIMER(it_t.start()); in intersect_with_facets()
817 CGAL_NEF_TIMER(it_t.stop()); in intersect_with_facets()
954 CGAL_NEF_TIMER(it_t.start()); in intersect_with_edges()
976 CGAL_NEF_TIMER(it_t.stop()); in intersect_with_edges()
981 CGAL_NEF_TIMER(it_t.start()); in intersect_with_facets()
[all …]
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/views/
H A Dkgloballedgerview_p.h1191 it_t = list.begin(); in doDeleteTransactions()
1192 while (it_t != list.end()) { in doDeleteTransactions()
1194 const auto deletedNum = (*it_t).split().number(); in doDeleteTransactions()
1198 file->removeTransaction((*it_t).transaction()); in doDeleteTransactions()
1202 while (it_t != list.end()) { in doDeleteTransactions()
1204 it_t = list.erase(it_t); in doDeleteTransactions()
1207 ++it_t; in doDeleteTransactions()
1212 list.erase(it_t); in doDeleteTransactions()
1214 it_t = list.begin(); in doDeleteTransactions()
1345 for (it_t = list.constBegin(); it_t != list.constEnd(); ++it_t) { in markTransaction()
[all …]

1234