Searched refs:readBufferSize (Results 1 – 7 of 7) sorted by relevance
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRInputStream.m | 24 …oc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStr… 29 …return [[ANTLRInputStream alloc] initWithInput:anInput size:theSize readBufferSize:ANTLRReaderStre… 34 …oc] initWithInput:anInput size:ANTLRReaderStream.INITIAL_BUFFER_SIZE readBufferSize:ANTLRReaderStr… 39 readBufferSize:(NSInteger)theRBSize 42 …return [[ANTLRInputStream alloc] initWithInput:anInput size:theSize readBufferSize:theRBSize encod… 53 readBufferSize:(NSInteger)theRBSize 56 ;self = [super initWithReader:anInput size:theSize readBufferSize:theRBSize]; 58 //[self load:theSize readBufferSize:theRBSize];
|
D | ANTLRReaderStream.m | 38 …return [[ANTLRReaderStream alloc] initWithReader:r size:INITIAL_BUFFER_SIZE readBufferSize:READ_BU… 43 return [[ANTLRReaderStream alloc] initWithReader:r size:aSize readBufferSize:READ_BUFFER_SIZE]; 46 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aRead… 49 return [[ANTLRReaderStream alloc] initWithReader:r size:aSize readBufferSize:aReadChunkSize]; 63 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkS… 70 [self load:aSize readBufferSize:aReadChunkSize]; 75 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize
|
D | ANTLRReaderStream.h | 30 + (id) newANTLRReaderStream:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aRead… 31 - (id) initWithReader:(NSFileHandle *)r size:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkS… 32 - (void) load:(NSInteger)aSize readBufferSize:(NSInteger)aReadChunkSize;
|
D | ANTLRInputStream.h | 24 readBufferSize:(NSInteger)theRBSize 29 readBufferSize:(NSInteger)theRBSize
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | ANTLRInputStream.java | 57 int readBufferSize, in ANTLRInputStream() argument 68 load(isr, size, readBufferSize); in ANTLRInputStream()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | ANTLRInputStream.cs | 61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding) in ANTLRInputStream() argument 62 : base(GetStreamReader(input, encoding), size, readBufferSize) { in ANTLRInputStream()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | ANTLRInputStream.cs | 67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding ) in ANTLRInputStream() argument 68 : base(GetStreamReader(input, encoding), size, readBufferSize) in ANTLRInputStream()
|