Home | History | Annotate | Download | only in Framework

Lines Matching refs:theText

56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText;
85 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
132 - (void) insertAfterToken:(id<ANTLRToken>)t Text:(NSString *)theText;
133 - (void) insertAfterIndex:(NSInteger)anIndex Text:(NSString *)theText;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
137 - (void) insertBeforeToken:(id<ANTLRToken>)t Text:(NSString *)theText;
138 - (void) insertBeforeIndex:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
140 - (void) replaceFromIndex:(NSInteger)anIndex Text:(NSString *)theText;
141 - (void) replaceFromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
142 - (void) replaceFromToken:(id<ANTLRToken>)indexT Text:(NSString *)theText;
143 - (void) replaceFromToken:(id<ANTLRToken>)from ToToken:(id<ANTLRToken>)to Text:(NSString *)theText;
144 - (void) replaceProgNam:(NSString *)programName Token:(id<ANTLRToken>)from Token:(id<ANTLRToken>)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;