Home
last modified time | relevance | path

Searched refs:_first (Results 1 – 25 of 26) sorted by relevance

12

/third_party/boost/boost/detail/
Dob_compressed_pair.hpp96 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/
Dftcmru.h168 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/
Dftcmru.h168 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/
Dftcmru.h168 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/
Dfileiter.hpp145 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_/
Dcustom_interval.cpp33 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/
Dfileiter.cpp117 _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/
Dedge_list.hpp109 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/
Dcommon.hpp139 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/
Danimated_cross_fade.dart14 // 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/
Dfoundation.dart22 // bool _first;
/third_party/libnl/python/netlink/
Dcore.py438 self._first = 1
458 if self._first:
460 self._first = 0
/third_party/icu/icu4c/source/test/cintltst/
Duenumtst.c140 static const UChar _first[] = {102,105,114,115,116,0}; /* "first" */ variable
146 _first, _second, _third, _fourth
/third_party/boost/boost/proto/
Dproto_fwd.hpp690 typedef functional::first _first; typedef
/third_party/python/Lib/unittest/
Dmock.py696 _first = last._mock_name or 'mock'
699 _first += '.'
700 _name_list[0] = _first
/third_party/boost/libs/mp11/doc/article/
Dsimple_cxx11_metaprogramming.adoc365 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/
DCHANGELOG.md468 * _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/
Dlist_wheel_viewport.dart812 // suitable angles (via _first/lastVisibleLayoutOffset) reach the paint
/third_party/flutter/engine/flutter/lib/snapshot/
Dfuchsia_compilation_trace.txt448 dart:collection,LinkedList,get:_first
449 dart:collection,LinkedList,set:_first
/third_party/boost/libs/bimap/doc/
Dtutorial.qbk705 pairs, two new placeholders are instantiated: `_first` and `_second`, and
/third_party/boost/libs/graph/doc/
Disomorphism-impl-v2.w606 \code{depth\_first\_search} function, because we want the roots of the
Disomorphism-impl-v3.w660 normally call the BGL \code{depth\_first\_search} function to do this,
Disomorphism-impl.w508 \code{depth\_first\_search} function, because we want the roots of the
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dcompilation_trace.txt369 dart:_internal,FollowedByIterable,get:_first
924 dart:collection,LinkedList,get:_first
929 dart:collection,LinkedList,set:_first
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2339 …//github.com/nodejs/node/commit/406c50c1d4)] - **src**: read break\_node\_first\_line from the ins…

12