Lines Matching full:void
52 - (void) waitForDebuggerConnection;
53 - (void) waitForAck;
54 - (void) sendToDebugger:(NSString *)message;
55 - (void) sendToDebugger:(NSString *)message waitForResponse:(BOOL)wait;
58 - (void) setServerSocket: (NSInteger) aServerSocket;
61 - (void) setDebuggerSocket: (NSInteger) aDebuggerSocket;
64 - (void) setGrammarName: (NSString *) aGrammarName;
67 - (void) setDebuggerPort: (NSInteger) aDebuggerPort;
74 - (void) enterRule:(NSString *)ruleName;
75 - (void) enterAlt:(NSInteger)alt;
76 - (void) exitRule:(NSString *)ruleName;
77 - (void) enterSubRule:(NSInteger)decisionNumber;
78 - (void) exitSubRule:(NSInteger)decisionNumber;
79 - (void) enterDecision:(NSInteger)decisionNumber;
80 - (void) exitDecision:(NSInteger)decisionNumber;
81 - (void) consumeToken:(id<ANTLRToken>)t;
82 - (void) consumeHiddenToken:(id<ANTLRToken>)t;
83 - (void) LT:(NSInteger)i foundToken:(id<ANTLRToken>)t;
84 - (void) mark:(NSInteger)marker;
85 - (void) rewind:(NSInteger)marker;
86 - (void) rewind;
87 - (void) beginBacktrack:(NSInteger)level;
88 - (void) endBacktrack:(NSInteger)level wasSuccessful:(BOOL)successful;
89 - (void) locationLine:(NSInteger)line column:(NSInteger)pos;
90 - (void) recognitionException:(ANTLRRecognitionException *)e;
91 - (void) beginResync;
92 - (void) endResync;
93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
94 - (void) commence;
95 - (void) terminate;
99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
105 - (void) createNilNode:(unsigned)hash;
106 - (void) createNode:(unsigned)hash text:(NSString *)text type:(NSInteger)type;
107 - (void) createNode:(unsigned)hash fromTokenAtIndex:(NSInteger)tokenIndex;
108 - (void) makeNode:(unsigned)newRootHash parentOf:(unsigned)oldRootHash;
109 - (void) addChild:(unsigned)childHash toTree:(unsigned)treeHash;
110 - (void) setTokenBoundariesForTree:(unsigned)nodeHash From:(NSInteger)tokenStartIndex To:(NSInteger)tokenStopIndex;