HomeSort by relevance Sort by last modified time
    Searched full:nilnode (Results 1 - 25 of 38) sorted by null

1 2

  /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/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);
RemoteDebugEventSocketListener.cs 458 } else if (elements[0].Equals("nilNode")) {
461 listener.NilNode(node);
  /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 );
RemoteDebugEventSocketListener.cs 595 else if ( elements[0].Equals( "nilNode" ) )
599 listener.NilNode( node );
  /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);
  /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;
antlr3debughandlers.c 80 static void nilNode (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE t);
130 delboy->nilNode = nilNode;
908 nilNode (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE t)
911 sprintf(buffer, "nilNode\t%d\n", delboy->adaptor->getUniqueID(delboy->adaptor, t));
  /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

Completed in 752 milliseconds

1 2