/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pgen.h | 12 struct _node; 13 extern grammar *pgen(struct _node *);
|
compile.h | 12 struct _node; /* Declare the existence of this type */ 13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
|
node.h | 10 typedef struct _node { struct 16 struct _node *n_child;
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pgen.h | 12 struct _node; 13 extern grammar *pgen(struct _node *);
|
compile.h | 12 struct _node; /* Declare the existence of this type */ 13 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
|
node.h | 10 typedef struct _node { struct 16 struct _node *n_child;
|
/external/chromium_org/third_party/bintrees/bintrees/ |
walker.py | 13 __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 is not None [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
PlatformFontsSidebarPane.js | 63 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)
|
ElementsTreeOutline.js | 215 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.moveTo(parentNode, anchorNode, this._selectNodeAfterEdit.bind(this, wasExpanded)) [all...] |
DOMBreakpointsSidebarPane.js | 81 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 });
|
ScreencastView.js | 448 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.getAttribute("class") [all...] |
/external/chromium_org/third_party/freetype/src/cache/ |
ftccache.h | 212 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->link = *_bucket; [all...] |
/external/freetype/src/cache/ |
ftccache.h | 212 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->link = *_bucket; [all...] |
/external/bison/src/ |
system.h | 231 Type *_node, *_next; \ 232 for (_node = List; _node; _node = _next) \ 234 _next = _node->next; \ 235 free (_node); \
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
RecognitionException.cs | 95 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 is CommonTree) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
RecognitionException.cs | 97 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 is CommonTree [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXPolicyNode.java | 150 PKIXPolicyNode _node = new PKIXPolicyNode(new ArrayList(), local 162 _child.setParent(_node); 163 _node.addChild(_child); 166 return _node;
|
CertPathValidatorUtilities.java | 414 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 = (PKIXPolicyNode)policyNodeVec.get(j) local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
node.py | 175 _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...] |
cparse.py | 439 _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 is not None [all...] |
genpyx.py | 223 _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 is None and (not isinstance(other,Compound) or not other.has_members()) [all...] |
ir.py | 140 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.marked = _node.marked or self[i].marke [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/ |
loupe.js | 35 this._node = $('loupe'); 72 this._node.style.display = 'none'; 81 this._node.style.display = '';
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
uuid.py | 459 _node = None variable 470 global _node 471 if _node is not None: 472 return _node 482 _node = getter() 485 if _node is not None: 486 return _node
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
uuid.py | 459 _node = None variable 470 global _node 471 if _node is not None: 472 return _node 482 _node = getter() 485 if _node is not None: 486 return _node
|