Home
last modified time | relevance | path

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

123

/external/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 …]
/external/tinyxml2/
Dtinyxml2.h2047 explicit XMLHandle( XMLNode* node ) : _node( node ) { in XMLHandle()
2050 explicit XMLHandle( XMLNode& node ) : _node( &node ) { in XMLHandle()
2053 XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { in XMLHandle()
2057 _node = ref._node;
2063 return XMLHandle( _node ? _node->FirstChild() : 0 ); in FirstChild()
2067 return XMLHandle( _node ? _node->FirstChildElement( name ) : 0 );
2071 return XMLHandle( _node ? _node->LastChild() : 0 ); in LastChild()
2075 return XMLHandle( _node ? _node->LastChildElement( name ) : 0 );
2079 return XMLHandle( _node ? _node->PreviousSibling() : 0 ); in PreviousSibling()
2083 return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 );
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs95 private object _node; field in Antlr.Runtime.RecognitionException
187 return adaptor.GetType(_node);
223 return _node;
226 _node = value;
291 this._node = nodes.LT(1); in ExtractInformationFromTreeNodeStream()
293 IToken payload = adaptor.GetToken(_node); in ExtractInformationFromTreeNodeStream()
316 } else if (this._node is Tree.ITree) { in ExtractInformationFromTreeNodeStream()
317 this._line = ((Tree.ITree)this._node).Line; in ExtractInformationFromTreeNodeStream()
318 this._charPositionInLine = ((Tree.ITree)this._node).CharPositionInLine; in ExtractInformationFromTreeNodeStream()
319 if (this._node is CommonTree) { in ExtractInformationFromTreeNodeStream()
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs102 private object _node; field in Antlr.Runtime.RecognitionException
245 return adaptor.GetType( _node );
300 return _node;
304 _node = value;
371 this._node = input.LT(1); in ExtractInformationFromTreeNodeStream()
401 IToken payload = adaptor.GetToken(positionNode ?? _node); in ExtractInformationFromTreeNodeStream()
440 else if (this._node is Tree.ITree) in ExtractInformationFromTreeNodeStream()
442 this._line = ((Tree.ITree)this._node).Line; in ExtractInformationFromTreeNodeStream()
443 this._charPositionInLine = ((Tree.ITree)this._node).CharPositionInLine; in ExtractInformationFromTreeNodeStream()
444 if (this._node is CommonTree) in ExtractInformationFromTreeNodeStream()
[all …]
/external/tensorflow/tensorflow/python/framework/
Dconvert_to_constants.py212 self._node = node
216 return self._node.name
247 return self._node
266 self._converted_self = source.converted_self().nodes[self._node.name]
273 for index, name in enumerate(self._node.input):
331 attr = self._node.attr[attr_name]
348 (index, self._node.name, attr_name, num_types))
386 node.name = self._node.name
403 if self._node.attr["batch_dims"].i != 0:
405 axis_node_name = self._node.name + "/axis"
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/
DNodeCursor.java112 protected JsonNode _node; field in NodeCursor.RootCursor
118 _node = n; in RootCursor()
131 return _node.asToken(); in nextToken()
133 _node = null; in nextToken()
141 return _done ? _node : null; in currentNode()
145 public NodeCursor startArray() { return new ArrayCursor(_node, this); } in startArray()
148 public NodeCursor startObject() { return new ObjectCursor(_node, this); } in startObject()
/external/python/cpython2/Lib/
Duuid.py523 _node = None variable
539 global _node
540 if _node is not None:
541 return _node
551 _node = getter()
554 if (_node is not None) and (0 <= _node < (1 << 48)):
555 return _node
556 assert False, '_random_getnode() returned invalid value: {}'.format(_node)
/external/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 …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXPolicyNode.java150 PKIXPolicyNode _node = new PKIXPolicyNode(new ArrayList(), in copy() local
162 _child.setParent(_node); in copy()
163 _node.addChild(_child); in copy()
166 return _node; in copy()
DCertPathValidatorUtilities.java421 PKIXPolicyNode _node) in removePolicyNode() argument
423 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent(); in removePolicyNode()
441 _parent.removeChild(_node); in removePolicyNode()
442 removePolicyNodeRecurse(policyNodes, _node); in removePolicyNode()
450 PKIXPolicyNode _node) in removePolicyNodeRecurse() argument
452 policyNodes[_node.getDepth()].remove(_node); in removePolicyNodeRecurse()
454 if (_node.hasChildren()) in removePolicyNodeRecurse()
456 Iterator _iter = _node.getChildren(); in removePolicyNodeRecurse()
511 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); in processCertD1ii() local
513 if (ANY_POLICY.equals(_node.getValidPolicy())) in processCertD1ii()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DPKIXPolicyNode.java154 PKIXPolicyNode _node = new PKIXPolicyNode(new ArrayList(), in copy() local
166 _child.setParent(_node); in copy()
167 _node.addChild(_child); in copy()
170 return _node; in copy()
DCertPathValidatorUtilities.java422 PKIXPolicyNode _node) in removePolicyNode() argument
424 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent(); in removePolicyNode()
442 _parent.removeChild(_node); in removePolicyNode()
443 removePolicyNodeRecurse(policyNodes, _node); in removePolicyNode()
451 PKIXPolicyNode _node) in removePolicyNodeRecurse() argument
453 policyNodes[_node.getDepth()].remove(_node); in removePolicyNodeRecurse()
455 if (_node.hasChildren()) in removePolicyNodeRecurse()
457 Iterator _iter = _node.getChildren(); in removePolicyNodeRecurse()
512 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); in processCertD1ii() local
514 if (ANY_POLICY.equals(_node.getValidPolicy())) in processCertD1ii()
[all …]
DRFC3280CertPathUtilities.java1288 PKIXPolicyNode _node = (PKIXPolicyNode)_nodes.get(k); in processCertD() local
1290 Iterator _policySetIter = _node.getExpectedPolicies().iterator(); in processCertD()
1310 Iterator _childrenIter = _node.getChildren(); in processCertD()
1328 _newChildExpectedPolicies, _node, _apq, _policy, false); in processCertD()
1329 _node.addChild(_newChild); in processCertD()
2405 PKIXPolicyNode _node = (PKIXPolicyNode)_nodeDepth.get(k); in wrapupCertG() local
2407 if (RFC3280CertPathUtilities.ANY_POLICY.equals(_node.getValidPolicy())) in wrapupCertG()
2409 Iterator _iter = _node.getChildren(); in wrapupCertG()
2421 PKIXPolicyNode _node = (PKIXPolicyNode)_vpnsIter.next(); in wrapupCertG() local
2422 String _validPolicy = _node.getValidPolicy(); in wrapupCertG()
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jce/provider/
DPKIXPolicyNode.java154 PKIXPolicyNode _node = new PKIXPolicyNode(new ArrayList(), in copy() local
166 _child.setParent(_node); in copy()
167 _node.addChild(_child); in copy()
170 return _node; in copy()
DCertPathValidatorUtilities.java422 PKIXPolicyNode _node) in removePolicyNode() argument
424 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent(); in removePolicyNode()
442 _parent.removeChild(_node); in removePolicyNode()
443 removePolicyNodeRecurse(policyNodes, _node); in removePolicyNode()
451 PKIXPolicyNode _node) in removePolicyNodeRecurse() argument
453 policyNodes[_node.getDepth()].remove(_node); in removePolicyNodeRecurse()
455 if (_node.hasChildren()) in removePolicyNodeRecurse()
457 Iterator _iter = _node.getChildren(); in removePolicyNodeRecurse()
512 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); in processCertD1ii() local
514 if (ANY_POLICY.equals(_node.getValidPolicy())) in processCertD1ii()
[all …]
/external/python/cpython3/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)
/external/python/cpython2/Include/
Dpgen.h12 struct _node;
13 extern grammar *pgen(struct _node *);
Dcompile.h12 struct _node; /* Declare the existence of this type */
13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
Dnode.h10 typedef struct _node { struct
16 struct _node *n_child; argument
/external/python/cpython3/Include/
Dnode.h10 typedef struct _node { struct
16 struct _node *n_child; argument
Dcompile.h11 struct _node; /* Declare the existence of this type */
15 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
Dpythonrun.h79 PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int, int);
84 PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlagsFilename(const char *,
91 PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *, int, int);
/external/autotest/client/cros/bluetooth/
Doutput_recorder.py79 self._main, self._node = pty.openpty()
91 self.cmd, stdout=self._node, stderr=self._node)
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/
DTestTreeDeserialization.java16 JsonNode _node; field in TestTreeDeserialization.Bean
19 public void setNode(JsonNode n) { _node = n; } in setNode()

123