/external/freetype/src/cache/ |
D | ftcmru.h | 168 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 …]
|
D | ftccache.h | 212 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/ |
D | tinyxml2.h | 1994 explicit XMLHandle( XMLNode* node ) : _node( node ) { in XMLHandle() 1997 explicit XMLHandle( XMLNode& node ) : _node( &node ) { in XMLHandle() 2000 XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { in XMLHandle() 2004 _node = ref._node; 2010 return XMLHandle( _node ? _node->FirstChild() : 0 ); in FirstChild() 2014 return XMLHandle( _node ? _node->FirstChildElement( name ) : 0 ); 2018 return XMLHandle( _node ? _node->LastChild() : 0 ); in LastChild() 2022 return XMLHandle( _node ? _node->LastChildElement( name ) : 0 ); 2026 return XMLHandle( _node ? _node->PreviousSibling() : 0 ); in PreviousSibling() 2030 return XMLHandle( _node ? _node->PreviousSiblingElement( name ) : 0 ); [all …]
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognitionException.cs | 95 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/u-boot/tools/binman/ |
D | entry.py | 54 self._node = node 117 self.pos = fdt_util.GetInt(self._node, 'pos') 118 self.size = fdt_util.GetInt(self._node, 'size') 119 self.align = fdt_util.GetInt(self._node, 'align') 122 (self._node.path, self.align)) 123 self.pad_before = fdt_util.GetInt(self._node, 'pad-before', 0) 124 self.pad_after = fdt_util.GetInt(self._node, 'pad-after', 0) 125 self.align_size = fdt_util.GetInt(self._node, 'align-size') 128 "of two" % (self._node.path, self.align_size)) 129 self.align_end = fdt_util.GetInt(self._node, 'align-end') [all …]
|
D | bsection.py | 54 self._node = node 71 self._size = fdt_util.GetInt(self._node, 'size') 72 self._align_size = fdt_util.GetInt(self._node, 'align-size') 76 self._pad_before = fdt_util.GetInt(self._node, 'pad-before', 0) 77 self._pad_after = fdt_util.GetInt(self._node, 'pad-after', 0) 78 self._pad_byte = fdt_util.GetInt(self._node, 'pad-byte', 0) 79 self._sort = fdt_util.GetBool(self._node, 'sort-by-pos') 80 self._end_4gb = fdt_util.GetBool(self._node, 'end-at-4gb') 85 self._name_prefix = fdt_util.GetString(self._node, 'name-prefix') 88 for node in self._node.subnodes: [all …]
|
D | image.py | 40 self._node = node 45 self._section = bsection.Section('main-section', self._node, True) 51 self._size = fdt_util.GetInt(self._node, 'size') 52 filename = fdt_util.GetString(self._node, 'filename') 55 self._section = bsection.Section('main-section', self._node)
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognitionException.cs | 102 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/grappler/ |
D | controller.py | 36 self._node = {} 38 self._node[node.name] = node 51 self.important_ops.append(self._node[name]) 64 node = self._node[node_name] 90 return self._node[node_name]
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | notes.markdown | 101 - **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/python/cpython2/Lib/ |
D | uuid.py | 523 _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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXPolicyNode.java | 150 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()
|
D | CertPathValidatorUtilities.java | 410 PKIXPolicyNode _node) in removePolicyNode() argument 412 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent(); in removePolicyNode() 430 _parent.removeChild(_node); in removePolicyNode() 431 removePolicyNodeRecurse(policyNodes, _node); in removePolicyNode() 439 PKIXPolicyNode _node) in removePolicyNodeRecurse() argument 441 policyNodes[_node.getDepth()].remove(_node); in removePolicyNodeRecurse() 443 if (_node.hasChildren()) in removePolicyNodeRecurse() 445 Iterator _iter = _node.getChildren(); in removePolicyNodeRecurse() 500 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); in processCertD1ii() local 502 if (ANY_POLICY.equals(_node.getValidPolicy())) in processCertD1ii() [all …]
|
D | RFC3280CertPathUtilities.java | 1383 PKIXPolicyNode _node = (PKIXPolicyNode)_nodes.get(k); in processCertD() local 1385 Iterator _policySetIter = _node.getExpectedPolicies().iterator(); in processCertD() 1405 Iterator _childrenIter = _node.getChildren(); in processCertD() 1423 _newChildExpectedPolicies, _node, _apq, _policy, false); in processCertD() 1424 _node.addChild(_newChild); in processCertD() 2486 PKIXPolicyNode _node = (PKIXPolicyNode)_nodeDepth.get(k); in wrapupCertG() local 2488 if (RFC3280CertPathUtilities.ANY_POLICY.equals(_node.getValidPolicy())) in wrapupCertG() 2490 Iterator _iter = _node.getChildren(); in wrapupCertG() 2502 PKIXPolicyNode _node = (PKIXPolicyNode)_vpnsIter.next(); in wrapupCertG() local 2503 String _validPolicy = _node.getValidPolicy(); in wrapupCertG() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
D | PKIXPolicyNode.java | 154 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()
|
D | CertPathValidatorUtilities.java | 411 PKIXPolicyNode _node) in removePolicyNode() argument 413 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent(); in removePolicyNode() 431 _parent.removeChild(_node); in removePolicyNode() 432 removePolicyNodeRecurse(policyNodes, _node); in removePolicyNode() 440 PKIXPolicyNode _node) in removePolicyNodeRecurse() argument 442 policyNodes[_node.getDepth()].remove(_node); in removePolicyNodeRecurse() 444 if (_node.hasChildren()) in removePolicyNodeRecurse() 446 Iterator _iter = _node.getChildren(); in removePolicyNodeRecurse() 501 PKIXPolicyNode _node = (PKIXPolicyNode)policyNodeVec.get(j); in processCertD1ii() local 503 if (ANY_POLICY.equals(_node.getValidPolicy())) in processCertD1ii() [all …]
|
D | RFC3280CertPathUtilities.java | 1384 PKIXPolicyNode _node = (PKIXPolicyNode)_nodes.get(k); in processCertD() local 1386 Iterator _policySetIter = _node.getExpectedPolicies().iterator(); in processCertD() 1406 Iterator _childrenIter = _node.getChildren(); in processCertD() 1424 _newChildExpectedPolicies, _node, _apq, _policy, false); in processCertD() 1425 _node.addChild(_newChild); in processCertD() 2487 PKIXPolicyNode _node = (PKIXPolicyNode)_nodeDepth.get(k); in wrapupCertG() local 2489 if (RFC3280CertPathUtilities.ANY_POLICY.equals(_node.getValidPolicy())) in wrapupCertG() 2491 Iterator _iter = _node.getChildren(); in wrapupCertG() 2503 PKIXPolicyNode _node = (PKIXPolicyNode)_vpnsIter.next(); in wrapupCertG() local 2504 String _validPolicy = _node.getValidPolicy(); in wrapupCertG() [all …]
|
/external/python/cpython3/Lib/ |
D | uuid.py | 676 _node = None variable 691 global _node 692 if _node is not None: 693 return _node 702 _node = getter() 705 if (_node is not None) and (0 <= _node < (1 << 48)): 706 return _node 707 assert False, '_random_getnode() returned invalid value: {}'.format(_node)
|
/external/python/cpython3/Include/ |
D | pgen.h | 12 struct _node; 13 extern grammar *pgen(struct _node *);
|
D | node.h | 10 typedef struct _node { struct 16 struct _node *n_child; argument
|
D | compile.h | 12 struct _node; /* Declare the existence of this type */ 13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
|
D | pythonrun.h | 76 PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int, 79 PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlagsFilename(const char *, 83 PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *,
|
/external/python/cpython2/Include/ |
D | pgen.h | 12 struct _node; 13 extern grammar *pgen(struct _node *);
|
D | compile.h | 12 struct _node; /* Declare the existence of this type */ 13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
|
D | node.h | 10 typedef struct _node { struct 16 struct _node *n_child; argument
|