/third_party/boost/boost/detail/ |
D | ob_compressed_pair.hpp | 96 T1 _first; member in boost::detail::compressed_pair_0 108 compressed_pair_0() : _first(), _second() {} in compressed_pair_0() 109 compressed_pair_0(first_param_type x, second_param_type y) : _first(x), _second(y) {} in compressed_pair_0() 113 init_one<best_conversion_traits<A, T1, T2>::value>::init(val, &_first, &_second); in compressed_pair_0() 116 : _first(x.first()), _second(x.second()) {} in compressed_pair_0() 121 _first = x._first; 128 first_reference first() { return _first; } in first() 129 first_const_reference first() const { return _first; } in first() 137 swap(_first, y._first); in swap() 147 T1 _first; member in boost::detail::compressed_pair_1 [all …]
|
/third_party/skia/third_party/externals/freetype/src/cache/ |
D | ftcmru.h | 168 FTC_MruNode _first, _node; \ 172 _first = *(_pfirst); \ 175 if ( _first ) \ 177 _node = _first; \ 182 if ( _node != _first ) \ 190 } while ( _node != _first); \ 220 FTC_MruNode _first = (list)->nodes; \ 223 if ( _first ) \ 225 FTC_MruNode _node = _first; \ 236 } while ( _node != _first ); \
|
/third_party/flutter/skia/third_party/externals/freetype/src/cache/ |
D | ftcmru.h | 168 FTC_MruNode _first, _node; \ 172 _first = *(_pfirst); \ 175 if ( _first ) \ 177 _node = _first; \ 182 if ( _node != _first ) \ 190 } while ( _node != _first); \ 220 FTC_MruNode _first = (list)->nodes; \ 223 if ( _first ) \ 225 FTC_MruNode _node = _first; \ 236 } while ( _node != _first ); \
|
/third_party/freetype/src/cache/ |
D | ftcmru.h | 168 FTC_MruNode _first, _node; \ 172 _first = *(_pfirst); \ 175 if ( _first ) \ 177 _node = _first; \ 182 if ( _node != _first ) \ 190 } while ( _node != _first); \ 220 FTC_MruNode _first = (list)->nodes; \ 223 if ( _first ) \ 225 FTC_MruNode _node = _first; \ 236 } while ( _node != _first ); \
|
/third_party/boost/boost/regex/v4/ |
D | fileiter.hpp | 145 const char* _first; member in boost::BOOST_REGEX_DETAIL_NS::mapfile 151 mapfile(){ hfile = hmap = 0; _first = _last = 0; } in mapfile() 152 mapfile(const char* file){ hfile = hmap = 0; _first = _last = 0; open(file); } in mapfile() 156 const char* begin(){ return _first; } in begin() 158 size_t size(){ return _last - _first; } in size() 172 pointer* _first; 185 mapfile(){ hfile = 0; _size = 0; _first = _last = 0; } 186 mapfile(const char* file){ hfile = 0; _size = 0; _first = _last = 0; open(file); } 205 return file ? ((node - file->_first) * mapfile::buf_size + offset) : 0; 211 node = file->_first + (pos / mapfile::buf_size); [all …]
|
/third_party/boost/libs/icl/example/custom_interval_/ |
D | custom_interval.cpp | 33 MyInterval(): _first(), _past(){} in MyInterval() 34 MyInterval(int lo, int up): _first(lo), _past(up){} in MyInterval() 35 int first()const{ return _first; } in first() 38 int _first, _past; member in MyInterval
|
/third_party/boost/libs/regex/src/ |
D | fileiter.cpp | 117 _first = static_cast<const char*>(MapViewOfFile(hmap, FILE_MAP_READ, 0, 0, 0)); in open() 118 if (_first == 0) in open() 128 _last = _first + GetFileSize(hfile, 0); in open() 146 UnmapViewOfFile((void*)_first); in close() 150 _first = _last = 0; in close() 248 BOOST_ASSERT(node >= _first); in lock() 269 int read_pos = std::fseek(hfile, (node - _first) * buf_size, SEEK_SET); in lock() 300 BOOST_ASSERT(node >= _first); in unlock() 341 _first = new pointer[(int)cnodes]; in open() 342 _last = _first + cnodes; in open() [all …]
|
/third_party/boost/boost/graph/ |
D | edge_list.hpp | 109 return std::make_pair(edge_iterator(g._first), edge_iterator(g._last)); in edges() 201 return std::make_pair(edge_iterator(0), edge_iterator(g._last - g._first)); in edges() 209 return g._first[e].first; in source() 217 return g._first[e].second; in target() 301 edge_list(EdgeIter first, EdgeIter last) : _first(first), _last(last) in edge_list() 306 : _first(first), _last(last), m_num_edges(E) in edge_list() 310 EdgeIter _first, _last; member in boost::edge_list
|
/third_party/boost/boost/spirit/home/classic/tree/ |
D | common.hpp | 139 node_iter_data(IteratorT const& _first, IteratorT const& _last) in node_iter_data() 140 : first(_first), last(_last), is_root_(false), parser_id_(), value_() in node_iter_data() 264 node_val_data(IteratorT const& _first, IteratorT const& _last) in node_val_data() 267 std::copy(_first, _last, std::inserter(text, text.end())); in node_val_data() 272 node_val_data(IteratorT2 const& _first, IteratorT2 const& _last) in node_val_data() 275 std::copy(_first, _last, std::inserter(text, text.end())); in node_val_data() 278 node_val_data(IteratorT const& _first, IteratorT const& _last) in node_val_data() 279 : text(_first, _last), is_root_(false), parser_id_(), value_() in node_val_data() 284 node_val_data(IteratorT2 const& _first, IteratorT2 const& _last) in node_val_data() 285 : text(_first, _last), is_root_(false), parser_id_(), value_() in node_val_data()
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | animated_cross_fade.dart | 14 // bool _first; 88 /// on a boolean field `_first`; when `_first` is true, the first logo is shown, 98 /// crossFadeState: _first ? CrossFadeState.showFirst : CrossFadeState.showSecond,
|
/third_party/flutter/flutter/packages/flutter/lib/ |
D | foundation.dart | 22 // bool _first;
|
/third_party/libnl/python/netlink/ |
D | core.py | 438 self._first = 1 458 if self._first: 460 self._first = 0
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | uenumtst.c | 140 static const UChar _first[] = {102,105,114,115,116,0}; /* "first" */ variable 146 _first, _second, _third, _fourth
|
/third_party/boost/boost/proto/ |
D | proto_fwd.hpp | 690 typedef functional::first _first; typedef
|
/third_party/python/Lib/unittest/ |
D | mock.py | 696 _first = last._mock_name or 'mock' 699 _first += '.' 700 _name_list[0] = _first
|
/third_party/boost/libs/mp11/doc/article/ |
D | simple_cxx11_metaprogramming.adoc | 365 using _first = F<T1>; 368 using type = mp_push_front<_rest, _first>; 499 using _first = F< typename mp_front_impl<L>::type... >; 502 using type = mp_push_front<_rest, _first>;
|
/third_party/node/deps/npm/node_modules/yargs-parser/ |
D | CHANGELOG.md | 468 * _first released in 3.1.0, better handling of negative values should be considered a breaking chan…
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | list_wheel_viewport.dart | 812 // suitable angles (via _first/lastVisibleLayoutOffset) reach the paint
|
/third_party/flutter/engine/flutter/lib/snapshot/ |
D | fuchsia_compilation_trace.txt | 448 dart:collection,LinkedList,get:_first 449 dart:collection,LinkedList,set:_first
|
/third_party/boost/libs/bimap/doc/ |
D | tutorial.qbk | 705 pairs, two new placeholders are instantiated: `_first` and `_second`, and
|
/third_party/boost/libs/graph/doc/ |
D | isomorphism-impl-v2.w | 606 \code{depth\_first\_search} function, because we want the roots of the
|
D | isomorphism-impl-v3.w | 660 normally call the BGL \code{depth\_first\_search} function to do this,
|
D | isomorphism-impl.w | 508 \code{depth\_first\_search} function, because we want the roots of the
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | compilation_trace.txt | 369 dart:_internal,FollowedByIterable,get:_first 924 dart:collection,LinkedList,get:_first 929 dart:collection,LinkedList,set:_first
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V12.md | 2339 …//github.com/nodejs/node/commit/406c50c1d4)] - **src**: read break\_node\_first\_line from the ins…
|