/aosp_15_r20/external/antlr/runtime/ObjC/Framework/ |
H A D | CommonTreeAdaptor.m | 55 - (id) dupNode:(id<BaseTree>)t 110 - (void) setTokenBoundaries:(id<BaseTree>)aTree From:(id<Token>)startToken To:(id<Token>)stopToken 124 - (NSInteger)getTokenStartIndex:(id<BaseTree>) t 131 - (NSInteger)getTokenStopIndex:(id<BaseTree>) t 145 - (void)setText:(id<BaseTree>)t Text:(NSString *)text 158 - (void) setType:(id<BaseTree>)t Type:(NSInteger)tokenType 176 - (id<BaseTree>) getChild:(id<BaseTree>)t At:(NSInteger)i 183 - (void) setChild:(id<BaseTree>)t At:(NSInteger)i Child:(id<BaseTree>)child 190 - (id) deleteChild:(id<BaseTree>)t Index:(NSInteger)anIndex 195 - (NSInteger) getChildCount:(id<BaseTree>) t [all …]
|
H A D | DebugTreeAdaptor.m | 92 - (id<BaseTree>) newTreeWithToken:(id<Token>) payload 115 - (void) addChild:(id<BaseTree>)child toTree:(id<BaseTree>)aTree 121 - (id<BaseTree>) becomeRoot:(id<BaseTree>)newRoot old:(id<BaseTree>)oldRoot 136 - (void) addTokenAsChild:(id<Token>)child toTree:(id<BaseTree>)aTree 142 - (id<BaseTree>) makeToken:(id<Token>)newRoot parentOf:(id<BaseTree>)oldRoot 201 …tBoundariesForTree:(id<BaseTree>)aTree fromToken:(id<Token>)startToken toToken:(id<Token>)stopToken
|
H A D | TreeException.m | 38 …wException:(id<BaseTree>)theOldRoot newRoot:(id<BaseTree>)theNewRoot stream:(id<IntStream>)aStream; 43 …ithOldRoot:(id<BaseTree>)theOldRoot newRoot:(id<BaseTree>)theNewRoot stream:(id<IntStream>)aStream; 62 - (void) setNewRoot:(id<BaseTree>)aTree 71 - (void) setOldRoot:(id<BaseTree>)aTree
|
H A D | BaseTree.m | 42 @implementation BaseTree implementation 73 + newTree:(id<BaseTree>) node 88 - (id) initWith:(id<BaseTree>)node 164 - (void) addChild:(id<BaseTree>) t 218 - (void) setChild:(NSUInteger) i With:(id<BaseTree>)t 350 - (void) sanityCheckParentAndChildIndexes:(id<BaseTree>)aParent At:(NSInteger) i 411 - (void) setParent:(id<BaseTree>) t
|
H A D | TreeVisitorAction.m | 66 - (id<BaseTree>)pre:(id<BaseTree>) t 79 - (id<BaseTree>)post:(id<BaseTree>) t 119 - (id<BaseTree>)pre:(id<BaseTree>) t 129 - (id<BaseTree>)post:(id<BaseTree>) t
|
H A D | TreeIterator.m | 42 + (TreeIterator *) newANTRLTreeIteratorWithAdaptor:(CommonTreeAdaptor *)adaptor 63 -(id) initWithTree:(id<BaseTree>) t 79 -(id) initWithTreeAdaptor:(id<TreeAdaptor>)a andTree:(id<BaseTree>)t
|
H A D | CommonTreeNodeStream.m | 132 - (BOOL) isEOF:(id<BaseTree>) aTree 221 - (NSString *) toStringFromNode:(id<BaseTree>)startNode ToNode:(id<BaseTree>)stopNode
|
H A D | BaseTreeAdaptor.m | 304 - (id<BaseTree>) getParent:(id<BaseTree>) t 311 - (void) setParent:(id<BaseTree>)t With:(id<BaseTree>) parent
|
H A D | NodeMapElement.m | 50 + (NodeMapElement *)newNodeMapElementWithIndex:(id)anIndex Node:(id<BaseTree>)aNode 91 - (void)setNode:(id<BaseTree>)aNode
|
H A D | UniqueIDMap.m | 153 - (id)getNode:(id<BaseTree>)aNode 169 - (void)putID:(id)anID Node:(id<BaseTree>)aNode
|
H A D | TreeFilter.m | 202 - (void) applyOnce:(id<BaseTree>)t rule:(fptr *)whichRule 217 - (void) downup:(id<BaseTree>) t
|
H A D | TreeVisitor.m | 83 - (id<BaseTree>)visit:(id<BaseTree>)t Action:(TreeVisitorAction *)action
|
H A D | RewriteRuleNodeStream.m | 63 - (id<BaseTree>) toTree:(id<BaseTree>)element
|
H A D | RecognitionException.m | 258 - (void) setNode: (id<BaseTree>) aNode
|
H A D | Map.m | 306 - (NSInteger)getNode:(id<BaseTree>)aNode
|
H A D | UnbufferedCommonTreeNodeStream.m | 273 - (void) addLookahead:(id<BaseTree>)aNode
|
/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
H A D | BaseTree.cs | 48 public abstract class BaseTree : ITree { class 51 public BaseTree() { in BaseTree() method in Antlr.Runtime.Tree.BaseTree 60 public BaseTree(ITree node) { in BaseTree() method in Antlr.Runtime.Tree.BaseTree
|
/aosp_15_r20/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
H A D | BaseTree.java | 39 public abstract class BaseTree implements Tree { class 42 public BaseTree() { in BaseTree() method in BaseTree 49 public BaseTree(Tree node) { in BaseTree() method in BaseTree
|
/aosp_15_r20/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
H A D | BaseTree.as | 35 public class BaseTree implements Tree { class in org.antlr.runtime.tree 42 public function BaseTree(node:Tree = null) { method in org.antlr.runtime.tree.BaseTree
|
/aosp_15_r20/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
H A D | BaseTree.js | 7 org.antlr.runtime.tree.BaseTree = function() {}; class in org.antlr.runtime.tree
|
/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
H A D | RemoteDebugEventSocketListener.cs | 37 using BaseTree = Antlr.Runtime.Tree.BaseTree; typedef
|
/aosp_15_r20/external/antlr/runtime/Ruby/lib/antlr3/ |
H A D | tree.rb | 312 class BaseTree < ::Array class
|
/aosp_15_r20/external/antlr/runtime/Python/antlr3/ |
H A D | tree.py | 671 class BaseTree(Tree): class
|
/aosp_15_r20/external/antlr/runtime/Python3/antlr3/ |
H A D | tree.py | 667 class BaseTree(Tree): class
|
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/room/room-external-antlr/2.7.0-alpha12/androidx.room_room-external-antlr/linux_glibc_common/local-combined/ |
D | androidx.room_room-external-antlr.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/androidx/
META- ... |