Home | History | Annotate | Download | only in Framework

Lines Matching full:initwithindex

51     return [[ANTLRRewriteOperation alloc] initWithIndex:anIndex Text:theText];
54 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText
98 return [[ANTLRInsertBeforeOp alloc] initWithIndex:anIndex Text:theText];
101 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText
103 if ((self = [super initWithIndex:anIndex Text:theText]) != nil) {
131 return [[ANTLRReplaceOp alloc] initWithIndex:from ToIndex:to Text:theText];
134 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText
136 if ((self = [super initWithIndex:from Text:theText]) != nil) {
163 return [[ANTLRDeleteOp alloc] initWithIndex:from ToIndex:to];
166 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to
168 if ((self = [super initWithIndex:from ToIndex:to Text:nil]) != nil) {