HomeSort by relevance Sort by last modified time
    Searched full:getchannel (Results 1 - 25 of 264) sorted by null

1 2 3 4 5 6 7 8 91011

  /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/chromium_org/chrome/common/
chrome_version_info_android.cc 15 switch (GetChannel()) {
22 NOTREACHED() << "Unknown channel " << GetChannel();
27 VersionInfo::Channel VersionInfo::GetChannel() {
chrome_version_info_chromeos.cc 31 VersionInfo::Channel VersionInfo::GetChannel() {
chrome_version_info_posix.cc 33 VersionInfo::Channel VersionInfo::GetChannel() {
  /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();
  /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...]
  /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++;
ClassicToken.java 56 channel = oldToken.getChannel();
98 public int getChannel() {
  /external/chromium/webkit/glue/
p2p_transport.h 51 virtual net::Socket* GetChannel() = 0;
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service_factory.cc 37 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
  /external/chromium_org/chrome/browser/ui/webui/help/
version_updater_chromeos.h 21 virtual void GetChannel(bool get_current_channel,
  /external/chromium_org/chrome/common/extensions/features/
feature_channel.h 16 // process this should be chrome::VersionInfo::GetChannel(), and in the
  /external/chromium_org/chromeos/dbus/
fake_update_engine_client.cc 49 void FakeUpdateEngineClient::GetChannel(bool get_current_channel,
  /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();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 115 public int getChannel(BluetoothDevice remoteDevice, int uuid) {
117 if (V) Log.v(TAG, "getChannel " + key);
121 if (V) Log.v(TAG, "getChannel for " + remoteDevice + "_" + Integer.toHexString(uuid) +
140 if (channel != getChannel(remoteDevice, uuid)) {
  /cts/tools/vm-tests-tf/src/util/build/
BuildStep.java 107 FileChannel inChannel = new FileInputStream(in).getChannel();
108 FileChannel outChannel = new FileOutputStream(out).getChannel();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonToken.js 18 this.channel = oldToken.getChannel();
80 getChannel: function() {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRRecognizerSharedState.h 61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRRecognizerSharedState.h 61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTokenStream.h 42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;
84 - (NSInteger)getChannel;
ANTLRRecognizerSharedState.h 61 @property (getter=getChannel,setter=setChannel:) NSUInteger channel;
81 - (NSUInteger) getChannel;
  /external/chromium_org/chrome/browser/
chrome_browser_field_trials_mobile.cc 33 chrome::VersionInfo::GetChannel() == chrome::VersionInfo::CHANNEL_STABLE;
91 chrome::VersionInfo::GetChannel() == chrome::VersionInfo::CHANNEL_STABLE;

Completed in 716 milliseconds

1 2 3 4 5 6 7 8 91011