Home
last modified time | relevance | path

Searched refs:_node (Results 1 – 25 of 40) sorted by relevance

12

/third_party/boost/boost/xpressive/detail/core/
Dlist.hpp56 list_iterator(list_iterator<> const &it) : _node(it._node) {} in list_iterator()
57 explicit list_iterator(node_base *n = 0) : _node(n) {} in list_iterator()
61 Ref dereference() const { return static_cast<node *>(_node)->_value; } in dereference()
62 void increment() { _node = _node->_next; } in increment()
63 void decrement() { _node = _node->_prev; } in decrement()
64 bool equal(list_iterator const &it) const { return _node == it._node; } in equal()
65 node_base *_node; member
165 x._sentry._prev->_next = it._node; in splice()
166 x._sentry._next->_prev = it._node->_prev; in splice()
168 it._node->_prev->_next = x._sentry._next; in splice()
[all …]
/third_party/skia/third_party/externals/freetype/src/cache/
Dftcmru.h168 FTC_MruNode _first, _node; \
173 _node = NULL; \
177 _node = _first; \
180 if ( _compare( _node, (key) ) ) \
182 if ( _node != _first ) \
183 FTC_MruNode_Up( _pfirst, _node ); \
185 node = _node; \
188 _node = _node->next; \
190 } while ( _node != _first); \
225 FTC_MruNode _node = _first; \
[all …]
Dftccache.h212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( !_node ) \
233 if ( _node->hash == _hash && \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
237 _pnode = &_node->link; \
246 while ( *_pnode != _node ) \
259 if ( _node != *_bucket ) \
261 *_pnode = _node->link; \
262 _node->link = *_bucket; \
[all …]
/third_party/freetype/src/cache/
Dftcmru.h168 FTC_MruNode _first, _node; \
173 _node = NULL; \
177 _node = _first; \
180 if ( _compare( _node, (key) ) ) \
182 if ( _node != _first ) \
183 FTC_MruNode_Up( _pfirst, _node ); \
185 node = _node; \
188 _node = _node->next; \
190 } while ( _node != _first); \
225 FTC_MruNode _node = _first; \
[all …]
Dftccache.h212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( !_node ) \
233 if ( _node->hash == _hash && \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
237 _pnode = &_node->link; \
246 while ( *_pnode != _node ) \
259 if ( _node != *_bucket ) \
261 *_pnode = _node->link; \
262 _node->link = *_bucket; \
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/cache/
Dftcmru.h168 FTC_MruNode _first, _node; \
173 _node = NULL; \
177 _node = _first; \
180 if ( _compare( _node, (key) ) ) \
182 if ( _node != _first ) \
183 FTC_MruNode_Up( _pfirst, _node ); \
185 node = _node; \
188 _node = _node->next; \
190 } while ( _node != _first); \
225 FTC_MruNode _node = _first; \
[all …]
Dftccache.h212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( !_node ) \
233 if ( _node->hash == _hash && \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
237 _pnode = &_node->link; \
246 while ( *_pnode != _node ) \
259 if ( _node != *_bucket ) \
261 *_pnode = _node->link; \
262 _node->link = *_bucket; \
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dnotes.markdown101 - **region\_node** - single-entry, single-exit region.
105 region\_node::loop\_phi contains the phi expressions to be executed
106 at the region entry, region\_node::phi contains the phi expressions
110 - **depart\_node** - "depart region \$id after { ... }"
115 - **repeat\_node** - "repeat region \$id after { ... }"
120 - **if\_node** - "if (cond) { ... }"
124 for the **if\_node**, we enclose **if\_node** in the
125 **region\_node** and store corresponding phi's in the
126 **region\_node**, this allows more uniform handling.
188 region\_node::loop\_phi nodes is 1 + number of repeat nodes that
[all …]
/third_party/python/Lib/
Duuid.py640 _node = None variable
650 global _node
651 if _node is not None:
652 return _node
656 _node = getter()
659 if (_node is not None) and (0 <= _node < (1 << 48)):
660 return _node
661 assert False, '_random_getnode() returned invalid value: {}'.format(_node)
Dplatform.py572 def _node(default=''): function
834 node = _node()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dfocus_manager.dart63 FocusAttachment._(this._node) : assert(_node != null);
68 final FocusNode _node;
74 bool get isAttached => _node._attachment == this;
81 assert(_node != null);
82 …assert(_focusDebug('Detaching node:', <String>[_node.toString(), 'With enclosing scope ${_node.enc…
84 if (_node.hasPrimaryFocus) {
85 _node.unfocus();
87 _node._parent?._removeChild(_node);
88 _node._attachment = null;
116 assert(_node != null);
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_dead_cf.c136 def_only_used_in_cf_node(nir_ssa_def *def, void *_node) in def_only_used_in_cf_node() argument
138 nir_cf_node *node = _node; in def_only_used_in_cf_node()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DYAMLTraits.h1103 HNode(Node *n) : _node(n) { }
1108 Node *_node;
1118 return NullNode::classof(n->_node);
1133 return ScalarNode::classof(n->_node) ||
1134 BlockScalarNode::classof(n->_node);
1150 return MappingNode::classof(n->_node);
1170 return SequenceNode::classof(n->_node);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLTraits.cpp111 return CurrentNode ? CurrentNode->_node : nullptr; in getCurrentNode()
120 std::string foundTag = CurrentNode->_node->getVerbatimTag(); in mapTag()
348 Tag = CurrentNode->_node->getVerbatimTag(); in scalarTag()
353 setError(hnode->_node, message); in setError()
/third_party/flutter/engine/flutter/shell/platform/darwin/ios/framework/Source/
Daccessibility_bridge.mm29 // _node.textDirection.
33 // _node.textDirection.
138 _node = *node;
157 if (_node.IsPlatformViewNode()) {
/third_party/libuv/docs/src/guide/
Dintroduction.rst70 .. _node.js: https://www.nodejs.org
Dthreads.rst396 .. _node.js is cancer: http://widgetsandshit.com/teddziuba/2011/10/node-js-is-cancer.html
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h1642 TiXmlHandle( TiXmlNode* _node ) { this->node = _node; } in TiXmlHandle() argument
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h1642 TiXmlHandle( TiXmlNode* _node ) { this->node = _node; } in TiXmlHandle() argument
/third_party/python/Misc/NEWS.d/
D3.10.0b3.rst335 ``_node`` no longer appears in the list.
/third_party/typescript/src/compiler/transformers/
Djsx.ts343 …function visitJsxOpeningFragmentJSX(_node: JsxOpeningFragment, children: readonly JsxChild[], isCh…
/third_party/node/deps/acorn/acorn-walk/dist/
Dwalk.js187 function ignore(_node, _st, _c) {} argument
Dwalk.mjs181 function ignore(_node, _st, _c) {} argument
/third_party/python/Lib/test/
Dtest_uuid.py468 _node=None, # Ignore any cached node value.
/third_party/typescript/src/compiler/
Demitter.ts687 isLateBound: (_node): _node is LateBoundDeclaration => false,

12