HomeSort by relevance Sort by last modified time
    Searched refs:getChannel (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileOutputStreamTest.java 262 * @tests java.io.FileOutputStream#getChannel()
274 assertEquals(0, f.getChannel().position());
281 assertEquals(0, fos.getChannel().position());
283 assertEquals(10, fos.getChannel().position());
285 assertEquals(20, fos.getChannel().position());
287 assertEquals(30, fos.getChannel().position());
291 fos.getChannel().position();
302 assertEquals(0, fos.getChannel().position());
304 assertEquals(10, fos.getChannel().position());
306 assertEquals(20, fos.getChannel().position())
    [all...]
FileInputStreamTest.java 399 assertEquals(0, fis.getChannel().position());
403 assertEquals(count++, fis.getChannel().position());
408 fis.getChannel().position();
415 assertEquals(0, fis.getChannel().position());
418 assertEquals(10, fis.getChannel().position());
422 assertEquals(0, fis.getChannel().position());
425 assertEquals(100, fis.getChannel().position());
427 assertEquals(110, fis.getChannel().position());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CommonTokenStream.java 68 while ( tokens.get(p).getChannel()!=channel ) {
111 while ( tokens.get(i).getChannel()!=channel ) { // also stops at EOF (it's onchannel)
119 while ( i>=0 && ((Token)tokens.get(i)).getChannel()!=channel ) {
134 while ( tokens.get(i).getChannel()!=channel ) {
147 if ( t.getChannel()==channel ) n++;
Token.java 77 public int getChannel();
ClassicToken.java 56 channel = oldToken.getChannel();
98 public int getChannel() {
CommonToken.java 78 channel = oldToken.getChannel();
131 public int getChannel() {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
MappedByteBufferTest.java 46 FileChannel fc = fis.getChannel();
76 FileChannel fc = fis.getChannel();
129 FileChannel fileChannelRead = fileInputStream.getChannel();
136 FileChannel fileChannelR = inputStream.getChannel();
147 FileChannel fileChannelReadWrite = randomFile.getChannel();
155 FileChannel fileChannelRW = random.getChannel();
173 FileChannel fileChannelRead = fileInputStream.getChannel();
180 FileChannel fileChannelReadWrite = randomFile.getChannel();
195 FileChannel fileChannel = fileOutputStream.getChannel();
216 FileChannel ch = f.getChannel();
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 32 FileChannel fc = new FileInputStream(tmp).getChannel();
57 fc = new FileOutputStream(tmp).getChannel();
67 FileChannel fc = new FileOutputStream(tmp).getChannel();
71 fc = new FileInputStream(tmp).getChannel();
87 FileChannel fc = new FileOutputStream(tmp).getChannel();
101 FileChannel fc = fos.getChannel();
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRToken.h 71 - (NSUInteger) getChannel;
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRUnbufferedTokenStream.h 46 @property (getter=getChannel, setter=setChannel:) NSInteger channel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRToken.h 71 - (NSUInteger) getChannel;
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRUnbufferedTokenStream.h 46 @property (getter=getChannel, setter=setChannel:) NSInteger channel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRToken.h 71 - (NSUInteger) getChannel;
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRUnbufferedTokenStream.h 46 @property (getter=getChannel, setter=setChannel:) NSInteger channel;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelLockingTest.java 64 readOnlyChannel = fileInputStream.getChannel();
67 writeOnlyChannel = fileOutputStream.getChannel();
71 readWriteChannel = randomAccessFile.getChannel();
FileLockTest.java 61 readWriteChannel = randomAccessFile.getChannel();
176 FileChannel fileChannel = fout.getChannel();
188 fileChannel = fout.getChannel();
  /cts/tools/vm-tests-tf/src/util/build/
BuildStep.java 107 FileChannel inChannel = new FileInputStream(in).getChannel();
108 FileChannel outChannel = new FileOutputStream(out).getChannel();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 64 this.fc = raf.getChannel();
77 this.fc = raf.getChannel();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
StreamUtil.java 37 FileChannel channel = ((FileInputStream)in).getChannel();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatPackageWriterImpl.java 99 muxed.getBox(muxedFileOutputStream.getChannel());
110 muxed.getBox(muxedFileOutputStream.getChannel());
117 isoFile.getBox(allQualis.getChannel());
150 FileChannel fc = fos.getChannel();
  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 161 public int getChannel() {
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontoken.c 49 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token);
338 token->getChannel = getChannel;
494 static ANTLR3_UINT32 getChannel (pANTLR3_COMMON_TOKEN token)
571 if (token->getChannel(token) > ANTLR3_TOKEN_DEFAULT_CHANNEL)
574 outtext->addi (outtext, (ANTLR3_INT32)token->getChannel(token));

Completed in 554 milliseconds

1 2 3 4 5