Home
last modified time | relevance | path

Searched refs:_last (Results 1 – 15 of 15) sorted by relevance

/third_party/boost/boost/regex/v4/
Dfileiter.hpp146 const char* _last; 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()
157 const char* end(){ return _last; } in end()
158 size_t size(){ return _last - _first; } in size()
173 pointer* _last;
185 mapfile(){ hfile = 0; _size = 0; _first = _last = 0; }
186 mapfile(const char* file){ hfile = 0; _size = 0; _first = _last = 0; open(file); }
248 BOOST_ASSERT(node < file->_last);
/third_party/python/Lib/email/
Dfeedparser.py166 self._last = None
208 self._last = msg
394 if self._last.get_content_maintype() == 'multipart':
395 epilogue = self._last.epilogue
397 self._last.epilogue = None
402 self._last.epilogue = epilogue[:-end]
404 payload = self._last._payload
409 self._last._payload = payload
414 self._last = self._cur
/third_party/python/Lib/test/support/
Dwarnings_helper.py60 self._last = 0
63 if len(self._warnings) > self._last:
71 return self._warnings[self._last:]
74 self._last = len(self._warnings)
/third_party/boost/libs/regex/src/
Dfileiter.cpp128 _last = _first + GetFileSize(hfile, 0); in open()
150 _first = _last = 0; in close()
249 BOOST_ASSERT(node <= _last); in lock()
250 if(node < _last) in lock()
271 if(0 == read_pos && node == _last - 1) in lock()
301 BOOST_ASSERT(node <= _last); in unlock()
302 if(node < _last) in unlock()
342 _last = _first + cnodes; in open()
360 while(p != _last) in close()
368 _first = _last = 0; in close()
/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()
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/python/Lib/xml/etree/
DElementTree.py1418 self._last = None # last element
1441 if self._last is not None:
1444 assert self._last.tail is None, "internal error (tail)"
1445 self._last.tail = text
1447 assert self._last.text is None, "internal error (text)"
1448 self._last.text = text
1463 self._last = elem = self._factory(tag, attrs)
1479 self._last = self._elem.pop()
1480 assert self._last.tag == tag,\
1482 self._last.tag, tag)
[all …]
/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/node/lib/
D_http_outgoing.js103 this._last = false;
433 this._last = true;
445 this._last = true;
455 this._last = true;
519 self._last = true;
D_http_client.js246 this._last = true;
249 this._last = false;
308 this._last = true;
D_http_server.js588 state.outgoing[state.outgoing.length - 1]._last = true;
590 socket._httpMessage._last = true;
799 if (res._last) {
/third_party/node/deps/npm/node_modules/agent-base/
Dindex.js90 req._last = true;
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/
Dindex.js90 req._last = true;
/third_party/flutter/flutter/packages/flutter/lib/
Dfoundation.dart31 // dynamic _last;
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dgesture_detector.dart53 // String _last;
738 /// the code is being used inside a [State] object with a `_last` field that is
748 /// ..onTapDown = (TapDownDetails details) { setState(() { _last = 'down'; }); }
749 /// ..onTapUp = (TapUpDetails details) { setState(() { _last = 'up'; }); }
750 /// ..onTap = () { setState(() { _last = 'tap'; }); }
751 /// ..onTapCancel = () { setState(() { _last = 'cancel'; }); };
755 /// child: Container(width: 300.0, height: 300.0, color: Colors.yellow, child: Text(_last)),
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md2477 …com/nodejs/node/commit/9c6791ee00)] - **n-api**: correct bug in napi\_get\_last\_error (Octavian S…