Searched refs:_node (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/bintrees/bintrees/
H A Dwalker.py13 __slots__ = ['_node', '_stack', '_tree']
17 self._node = tree.root
22 self._node = self._tree.root
26 return self._node.key
30 return self._node.value
34 return (self._node.key, self._node.value)
38 return self._node is not None
41 self._node = self._tree.root
42 while self._node i
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs95 private object _node; field in class:Antlr.Runtime.RecognitionException
187 return adaptor.GetType(_node);
223 return _node;
226 _node = value;
291 this._node = nodes.LT(1);
293 IToken payload = adaptor.GetToken(_node);
316 } else if (this._node is Tree.ITree) {
317 this._line = ((Tree.ITree)this._node).Line;
318 this._charPositionInLine = ((Tree.ITree)this._node).CharPositionInLine;
319 if (this._node i
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs97 private object _node; field in class:Antlr.Runtime.RecognitionException
213 return adaptor.GetType( _node );
260 return _node;
264 _node = value;
331 this._node = input.LT(1);
348 IToken payload = adaptor.GetToken(_node);
386 else if (this._node is Tree.ITree)
388 this._line = ((Tree.ITree)this._node).Line;
389 this._charPositionInLine = ((Tree.ITree)this._node).CharPositionInLine;
390 if (this._node i
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DPlatformFontsSidebarPane.js63 delete this._node;
66 this._node = node;
76 if (!this._node)
78 WebInspector.cssModel.getPlatformFontsForNode(this._node.id, this._refreshUI.bind(this, this._node));
88 if (this._node !== node)
H A DElementsTreeOutline.js215 var selectedNode = this.selectedTreeElement ? this.selectedTreeElement._node : null;
400 WebInspector.domAgent.highlightDOMNode(element && element._node ? element._node.id : 0);
431 if (treeElement._node.nodeName() === "BODY" || treeElement._node.nodeName() === "HEAD")
452 var node = treeElement._node;
454 if (node === this._treeElementBeingDragged._node)
514 parentNode = treeElement._node;
516 var dragTargetNode = treeElement._node;
522 this._treeElementBeingDragged._node
[all...]
H A DDOMBreakpointsSidebarPane.js81 if (element._node === node)
184 if (element._node === node)
185 this._removeBreakpoint(element._node, element._type);
196 element._node = node;
236 this._removeBreakpoint(element._node, element._type);
315 breakpoints.push({ url: this._inspectedURL, path: element._node.path(), type: element._type, enabled: element._checkboxElement.checked });
H A DScreencastView.js448 this._node = null;
454 this._node = WebInspector.domAgent.nodeForId(nodeId);
628 if (!this._node)
634 var lowerCaseName = this._node.localName() || this._node.nodeName().toLowerCase();
636 this._nodeIdElement.textContent = this._node.getAttribute("id") ? "#" + this._node.getAttribute("id") : "";
637 this._nodeIdElement.textContent = this._node.getAttribute("id") ? "#" + this._node.getAttribute("id") : "";
638 var className = this._node
[all...]
H A DNavigatorView.js587 this._node.populate();
602 this._node = node;
617 if (!this._node)
620 this._navigatorView.handleFolderContextMenu(/** @type {!Event} */ (event), this._node);
1165 if (!this._treeElement || this._treeElement._node !== this)
H A DHeapSnapshot.js198 return this._node();
228 _node: function()
238 var edgeIndex = this._globalEdgeIndex - this._node()._edgeIndexesStart();
239 this._edgeInstance = this._snapshot.createEdge(this._node().rawEdges(), edgeIndex);
/external/chromium_org/third_party/freetype/src/cache/
H A Dftccache.h212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( _node == NULL ) \
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
[all...]
/external/freetype/src/cache/
H A Dftccache.h212 FTC_Node *_bucket, *_pnode, _node; \
229 _node = *_pnode; \
230 if ( _node == NULL ) \
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
[all...]
/external/bison/src/
H A Dsystem.h231 Type *_node, *_next; \
232 for (_node = List; _node; _node = _next) \
234 _next = _node->next; \
235 free (_node); \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java150 PKIXPolicyNode _node = new PKIXPolicyNode(new ArrayList(),
162 _child.setParent(_node);
163 _node.addChild(_child);
166 return _node;
H A DCertPathValidatorUtilities.java414 PKIXPolicyNode _node)
416 PKIXPolicyNode _parent = (PKIXPolicyNode)_node.getParent();
434 _parent.removeChild(_node);
435 removePolicyNodeRecurse(policyNodes, _node);
443 PKIXPolicyNode _node)
445 policyNodes[_node.getDepth()].remove(_node);
447 if (_node.hasChildren())
449 Iterator _iter = _node.getChildren();
504 PKIXPolicyNode _node
411 removePolicyNode( PKIXPolicyNode validPolicyTree, List[] policyNodes, PKIXPolicyNode _node) argument
441 removePolicyNodeRecurse( List[] policyNodes, PKIXPolicyNode _node) argument
[all...]
H A DRFC3280CertPathUtilities.java1354 PKIXPolicyNode _node = (PKIXPolicyNode)_nodes.get(k);
1356 Iterator _policySetIter = _node.getExpectedPolicies().iterator();
1376 Iterator _childrenIter = _node.getChildren();
1394 _newChildExpectedPolicies, _node, _apq, _policy, false);
1395 _node.addChild(_newChild);
2436 PKIXPolicyNode _node = (PKIXPolicyNode)_nodeDepth.get(k);
2438 if (RFC3280CertPathUtilities.ANY_POLICY.equals(_node.getValidPolicy()))
2440 Iterator _iter = _node.getChildren();
2452 PKIXPolicyNode _node = (PKIXPolicyNode)_vpnsIter.next();
2453 String _validPolicy = _node
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dnode.py175 _node = node.__class__( *items )
176 _node.__dict__.update( node.__dict__ )
182 #for node1 in _node.nodes():
184 #assert _node == self
185 return _node # Done !!
188 items.append(_node) # set
193 _node = node[ idxs[-1] ]
195 if isinstance(_node,Node):
197 nodes.append( _node )
202 items.append(_node)
[all...]
H A Dcparse.py439 _node = None
441 _node = symbols.get_tag( node.tag )
442 if _node is not None:
443 if not isinstance( _node, Struct ):
446 if len(_node)>1:
447 self.parse_error(lexer,"tag already defined as %s"%_node)
451 ##node = _node
452 #node = _node.clone()
456 _node = symbols.deep_get_tag( node.tag )
457 if _node i
[all...]
H A Dir.py140 shape = tuple( [ type(_node).__name__ for _node in node ] )
872 _node = cls()
878 _node.append( child )
879 _node.__dict__.update( node.__dict__ )
880 return _node
912 _node = self.tag_lookup[ node.tag.name ] # look-up the def'n
913 if verbose and node.marked and not _node.marked:
914 print '4:', _node.cstr(), '<--', self[i].cstr()
915 # _node
[all...]
H A Dgenpyx.py223 _node = names.get(self.tag.name,None)
224 if ( _node is not None and _node.has_members() ) or \
225 ( _node is not None and not self.has_members() ):
273 _node = names.get(self.tag.name,None)
274 if ( _node is not None and _node.has_members() ) or \
275 ( _node is not None and not self.has_members() ):
335 _node = names.get(node.tag.name,None)
338 #if ((_node i
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
H A Dloupe.js35 this._node = $('loupe');
72 this._node.style.display = 'none';
81 this._node.style.display = '';
/external/tinyxml2/
H A Dtinyxml2.h1262 XMLHandle( XMLNode* _node ) { node = _node; }
1264 XMLHandle( XMLNode& _node ) { node = &_node; }
1310 XMLConstHandle( const XMLNode* _node ) { node = _node; }
1311 XMLConstHandle( const XMLNode& _node ) { node = &_node; }
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h721 HNode(Node *n) : _node(n) { }
725 Node *_node; member in class:llvm::yaml::Input::HNode
733 return NullNode::classof(n->_node);
746 return ScalarNode::classof(n->_node);
759 return MappingNode::classof(n->_node);
777 return SequenceNode::classof(n->_node);
/external/opencv/cv/src/
H A D_cvkdtree.hpp316 bbf_node(int _node, accum_type _dist) argument
317 : node(_node), dist(_dist) {
/external/opencv/ml/src/
H A Dmlrtrees.cpp173 void CvForestTree::read( CvFileStorage* _fs, CvFileNode* _node, argument
176 CvDTree::read( _fs, _node, _data );
/external/llvm/lib/Support/
H A DYAMLTraits.cpp266 this->setError(hnode->_node, message);

Completed in 1289 milliseconds

12