/external/antlr/patches/ |
D | fix_infinite_recursion.diff | 11 Index: antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/DebugTreeAdaptor.java 13 --- antlr.orig/runtime/Java/src/main/java/org/antlr/runtime/debug/DebugTreeAdaptor.java 14 +++ antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/DebugTreeAdaptor.java 15 @@ -227,7 +227,7 @@ public class DebugTreeAdaptor implements
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3commontreeadaptor.inl | 675 DebugTreeAdaptor<ImplTraits>::DebugTreeAdaptor( DebuggerType* debugger ) function in DebugTreeAdaptor 681 void DebugTreeAdaptor<ImplTraits>::setDebugEventListener( DebuggerType* debugger) 687 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::nilNode() 695 void DebugTreeAdaptor<ImplTraits>::addChild(TreeType* t, TreeType* child) 705 void DebugTreeAdaptor<ImplTraits>::addChildToken(TreeType* t, CommonTokenType* child) 717 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::becomeRoot( TreeType… 726 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::becomeRootToken(Tree… 735 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::createTypeToken(ANTL… 744 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::createTypeTokenText(… 753 typename DebugTreeAdaptor<ImplTraits>::TreeType* DebugTreeAdaptor<ImplTraits>::createTypeText( ANTL… [all …]
|
D | antlr3commontreeadaptor.hpp | 121 class DebugTreeAdaptor : public ImplTraits::CommonTreeAdaptorType class 140 DebugTreeAdaptor( DebuggerType* debugger );
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
D | ASTDbg.stg | 33 DebugTreeAdaptor *adaptor = [DebugTreeAdaptor newTreeAdaptor:(id)dbg Adaptor:[CommonTreeAdaptor new… 38 adaptor = [DebugTreeAdaptor newTreeAdaptor:dbg Adaptor:anAdaptor]; 40 adaptor = [DebugTreeAdaptor newTreeAdaptor:adaptor withDBG:dbg]; 42 adaptor = (DebugTreeAdaptor *)adaptor; // delegator sends dbg adaptor
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/ |
D | ASTDbg.stg | 36 protected DebugTreeAdaptor adaptor = 37 new DebugTreeAdaptor(null,new CommonTreeAdaptor()); 39 this.adaptor = new DebugTreeAdaptor(dbg,adaptor);
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
D | ASTDbg.stg | 34 protected DebugTreeAdaptor adaptor; 37 this.adaptor = new DebugTreeAdaptor(dbg,adaptor); 39 this.adaptor = (DebugTreeAdaptor)adaptor; // delegator sends dbg adaptor
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
D | ASTDbg.stg | 36 protected DebugTreeAdaptor adaptor; 47 this.adaptor = new DebugTreeAdaptor(dbg,adaptor); 49 this.adaptor = (DebugTreeAdaptor)adaptor; // delegator sends dbg adaptor
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
D | ASTDbg.stg | 40 protected DebugTreeAdaptor adaptor; 51 this.adaptor = new DebugTreeAdaptor(dbg,adaptor); 53 this.adaptor = (DebugTreeAdaptor)adaptor; // delegator sends dbg adaptor
|
/external/antlr/runtime/ObjC/Framework/ |
D | DebugTreeAdaptor.h | 32 @interface DebugTreeAdaptor : BaseTreeAdaptor {
|
D | DebugTreeAdaptor.m | 27 #import "DebugTreeAdaptor.h" 30 @implementation DebugTreeAdaptor implementation
|
D | ANTLR.h | 59 #import <ANTLR/DebugTreeAdaptor.h>
|
D | antlr3.h | 59 #import <ANTLR/DebugTreeAdaptor.h>
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 52 public class DebugTreeAdaptor : ITreeAdaptor { class 56 public DebugTreeAdaptor(IDebugEventListener dbg, ITreeAdaptor adaptor) { in DebugTreeAdaptor() method in Antlr.Runtime.Debug.DebugTreeAdaptor
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 53 public class DebugTreeAdaptor : ITreeAdaptor class 58 public DebugTreeAdaptor( IDebugEventListener dbg, ITreeAdaptor adaptor ) in DebugTreeAdaptor() method in Antlr.Runtime.Debug.DebugTreeAdaptor
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeAdaptor.java | 47 public class DebugTreeAdaptor implements TreeAdaptor { class 51 public DebugTreeAdaptor(DebugEventListener dbg, TreeAdaptor adaptor) { in DebugTreeAdaptor() method in DebugTreeAdaptor
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python3/ |
D | ASTDbg.stg | 37 self._adaptor = DebugTreeAdaptor(self.dbg, adaptor)
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
D | ASTDbg.stg | 37 self._adaptor = DebugTreeAdaptor(self.dbg, adaptor)
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | ProfileGrammarParser.cs | 106 protected DebugTreeAdaptor adaptor; 116 this.adaptor = new DebugTreeAdaptor(dbg,adaptor);
|
D | DebugGrammarParser.cs | 102 protected DebugTreeAdaptor adaptor; 112 this.adaptor = new DebugTreeAdaptor(dbg,adaptor);
|
/external/antlr/runtime/Python3/antlr3/ |
D | debug.py | 207 class DebugTreeAdaptor(TreeAdaptor): class
|
/external/antlr/runtime/Python/antlr3/ |
D | debug.py | 201 class DebugTreeAdaptor(TreeAdaptor): class
|
/external/antlr/runtime/ObjC/Framework/ANTLR.xcodeproj/ |
D | project.pbxproj | 309 …80B1E45070013F640 /* DebugTreeAdaptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F7E261260B1… 892 …70013F640 /* DebugTreeAdaptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 893 …0013F640 /* DebugTreeAdaptor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =… 1680 F7E261260B1E45070013F640 /* DebugTreeAdaptor.h */, 1681 F7E261270B1E45070013F640 /* DebugTreeAdaptor.m */, 1763 F7E261280B1E45070013F640 /* DebugTreeAdaptor.h in Headers */,
|
/external/antlr/tool/ |
D | CHANGES.txt | 1669 org/antlr/runtime/debug/DebugTreeAdaptor.java 1774 implementation. Changed DebugTreeAdaptor to not fire events on null add
|