• Home
  • Raw
  • Download

Lines Matching refs:NSInteger

44 NSInteger instructionIndex;
46 NSInteger rwIndex;
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex;
51 @property (assign) NSInteger rwIndex;
54 + (RewriteOperation *) newRewriteOperation:(NSInteger)anIndex Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
61 - (NSInteger) execute:(NSString *)buf;
64 - (NSInteger) indexOf:(char)aChar inString:(NSString *)aString;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
79 NSInteger lastIndex;
82 @property (assign) NSInteger lastIndex;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theTex…
85 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
87 - (NSInteger) execute:(NSString *)buf;
94 + (ANTLRDeleteOp *) newANTLRDeleteOp:(NSInteger)from ToIndex:(NSInteger)to;
96 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to;
119 + (TokenRewriteStream *)newTokenRewriteStream:(id<TokenSource>) aTokenSource Channel:(NSInteger)aCh…
123 - (id)initWithTokenSource:(id<TokenSource>)aTokenSource Channel:(NSInteger)aChannel;
128 - (void) rollback:(NSInteger)instructionIndex;
129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
133 - (void) insertAfterIndex:(NSInteger)anIndex Text:(NSString *)theText;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theTe…
138 - (void) insertBeforeIndex:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)the…
140 - (void) replaceFromIndex:(NSInteger)anIndex Text:(NSString *)theText;
141 - (void) replaceFromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Tex…
146 - (void) delete:(NSInteger)anIndex;
147 - (void) delete:(NSInteger)from ToIndex:(NSInteger)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
152 - (NSInteger)getLastRewriteTokenIndex;
153 - (NSInteger)getLastRewriteTokenIndex:(NSString *)programName;
154 - (void)setLastRewriteTokenIndex:(NSString *)programName Index:(NSInteger)anInt;
158 - (NSString *)toOriginalString:(NSInteger)start End:(NSInteger)end;
161 - (NSString *)toStringFromStart:(NSInteger)start ToEnd:(NSInteger)end;
162 - (NSString *)toString:(NSString *)programName FromStart:(NSInteger)start ToEnd:(NSInteger)end;
165 - (HashMap *)getKindOfOps:(HashMap *)rewrites KindOfClass:(Class)kind Index:(NSInteger)before;
168 - (NSMutableString *)toDebugStringFromStart:(NSInteger)start ToEnd:(NSInteger)end;