/external/e2fsprogs/e2fsck/ |
dict.c | 58 #define nilnode dict_nilnode macro 69 #define dict_root(D) ((D)->nilnode.left) 70 #define dict_nil(D) (&(D)->nilnode) 266 new->nilnode.left = &new->nilnode; 267 new->nilnode.right = &new->nilnode; 268 new->nilnode.parent = &new->nilnode; 269 new->nilnode.color = dnode_black [all...] |
/external/opencv3/modules/imgproc/src/ |
gcgraph.hpp | 156 Vtx stub, *nilNode = &stub, *first = nilNode, *last = nilNode; 158 stub.next = nilNode; 180 last->next = nilNode; 181 nilNode->next = 0; 192 while( first != nilNode ) 211 u->next = nilNode; 364 u->next = nilNode;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
TraceDebugEventListener.cs | 84 public override void NilNode(object t) { 85 Console.Out.WriteLine("nilNode " + adaptor.GetUniqueID(t));
|
DebugEventRepeater.cs | 137 public virtual void NilNode(object t) { 138 _listener.NilNode(t);
|
BlankDebugEventListener.cs | 112 public virtual void NilNode(object t) {
|
DebugEventHub.cs | 248 public virtual void NilNode(object t) { 251 listener.NilNode(t);
|
DebugEventSocketProxy.cs | 300 public override void NilNode(object t) { 302 Transmit("nilNode\t" + ID);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
TraceDebugEventListener.cs | 94 public override void NilNode( object t ) 96 Console.Out.WriteLine( "nilNode " + adaptor.GetUniqueID( t ) );
|
DebugEventRepeater.cs | 165 public virtual void NilNode( object t ) 167 _listener.NilNode( t );
|
BlankDebugEventListener.cs | 140 public virtual void NilNode( object t )
|
DebugEventHub.cs | 301 public virtual void NilNode( object t ) 306 listener.NilNode( t );
|
DebugEventSocketProxy.cs | 341 public override void NilNode( object t ) 344 Transmit( "nilNode\t" + ID );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventRepeater.java | 79 public void nilNode(Object t) { listener.nilNode(t); }
|
TraceDebugEventListener.java | 65 public void nilNode(Object t) {System.out.println("nilNode "+adaptor.getUniqueID(t));}
|
BlankDebugEventListener.java | 68 public void nilNode(Object t) {}
|
DebugEventHub.java | 244 public void nilNode(Object t) { 247 listener.nilNode(t);
|
DebugEventSocketProxy.java | 266 public void nilNode(Object t) { 268 transmit("nilNode\t"+ID);
|
/prebuilts/go/darwin-x86/src/text/template/parse/ |
node.go | 382 // NilNode holds the special identifier 'nil' representing an untyped nil constant. 383 type NilNode struct { 389 func (t *Tree) newNil(pos Pos) *NilNode { 390 return &NilNode{tr: t, NodeType: NodeNil, Pos: pos} 393 func (n *NilNode) Type() NodeType { 400 func (n *NilNode) String() string { 404 func (n *NilNode) tree() *Tree { 408 func (n *NilNode) Copy() Node {
|
/prebuilts/go/linux-x86/src/text/template/parse/ |
node.go | 382 // NilNode holds the special identifier 'nil' representing an untyped nil constant. 383 type NilNode struct { 389 func (t *Tree) newNil(pos Pos) *NilNode { 390 return &NilNode{tr: t, NodeType: NodeNil, Pos: pos} 393 func (n *NilNode) Type() NodeType { 400 func (n *NilNode) String() string { 404 func (n *NilNode) tree() *Tree { 408 func (n *NilNode) Copy() Node {
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3basetreeadaptor.c | 44 static pANTLR3_BASE_TREE nilNode (pANTLR3_BASE_TREE_ADAPTOR adaptor); 86 adaptor->nilNode = (void * (*)(pANTLR3_BASE_TREE_ADAPTOR)) 87 nilNode; 107 adaptor->nilNode = (void * (*)(pANTLR3_BASE_TREE_ADAPTOR)) 441 nilNode (pANTLR3_BASE_TREE_ADAPTOR adaptor) 659 // Reclaim the old nilNode() 708 // Keep track of the root we are given. If it is a nilNode, then we
|
antlr3commontreenodestream.c | 476 ANTLR3_BOOLEAN nilNode; 480 nilNode = ctns->adaptor->isNilNode(ctns->adaptor, t); 485 if (nilNode == ANTLR3_FALSE) 495 if (nilNode == ANTLR3_FALSE && nCount>0) 512 if (nilNode == ANTLR3_FALSE && nCount > 0)
|
antlr3commontree.c | 493 pANTLR3_STRING nilNode; 495 nilNode = tree->strFactory->newPtr(tree->strFactory, (pANTLR3_UINT8)"nil", 3); 497 return nilNode;
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
debug.py | 274 self.dbg.nilNode(node) 657 def nilNode(self, t): 789 def nilNode(self, t): 790 self.record("nilNode %s" % self.adaptor.getUniqueID(t)) 1067 def nilNode(self, t): 1068 self.transmit("nilNode\t%d" % self.adaptor.getUniqueID(t)) [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3basetreeadaptor.h | 73 void * (*nilNode) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor);
|
antlr3commontree.h | 144 /// and are now dead. The nilNode() method will eat one of these before
|