HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 651 - 675 of 9695) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 109 public void engineStore(OutputStream stream, char[] password)
111 if (!(stream instanceof ByteArrayOutputStream)) {
112 throw new IOException("Incorrect stream");
114 if (((ByteArrayOutputStream) stream).size() == 0) {
115 throw new IOException("Incorrect stream size ");
121 public void engineLoad(InputStream stream, char[] password)
  /external/chromium_org/chrome/browser/extensions/api/streams_private/
streams_private_api.cc 49 scoped_ptr<content::StreamHandle> stream,
53 event_args->Append(new base::StringValue(stream->GetMimeType()));
54 event_args->Append(new base::StringValue(stream->GetOriginalURL().spec()));
55 event_args->Append(new base::StringValue(stream->GetURL().spec()));
70 GURL url = stream->GetURL();
71 streams_[extension_id][url] = make_linked_ptr(stream.release());
  /external/chromium_org/content/browser/loader/
stream_resource_handler.cc 9 #include "content/browser/streams/stream.h"
28 stream_ = new Stream(registry, this, url);
110 void StreamResourceHandler::OnSpaceAvailable(Stream* stream) {
114 void StreamResourceHandler::OnClose(Stream* stream) {
  /external/chromium_org/content/browser/media/
media_internals.h 35 // Called when an audio stream is deleted.
38 // Called when an audio stream is set to playing or paused.
42 // Called when the status of an audio stream is set to "created", "closed", or
47 // Called when the volume of an audio stream is set.
70 // Sets |property| of an audio stream to |value| and notifies observers.
71 // (host, stream_id) is a unique id for the audio stream.
  /external/chromium_org/content/browser/renderer_host/
socket_stream_host.h 26 // SocketStream to manage bi-directional communication over socket stream. The
45 // Sends |data| over the socket stream.
46 // socket stream must be open to send data.
47 // Returns true if the data is put in transmit buffer in socket stream.
49 // stream is closed).
52 // Closes the socket stream.
  /external/chromium_org/content/renderer/media/
media_stream_impl.cc 84 // Creates a WebKit representation of a stream sources based on
115 return extra_data->stream().get();
142 DVLOG(1) << "MediaStreamImpl::OnLocalMediaStreamStop: the stream has "
181 // The frame is needed to tell the MediaStreamDispatcher when a stream goes
209 // We can't abort the stream generation process.
210 // Instead, erase the request. Once the stream is generated we will stop the
211 // stream if the request does not exist.
226 return false; // This is not a valid stream.
228 webrtc::MediaStreamInterface* stream = GetNativeMediaStream(web_stream);
229 return (stream &
247 webrtc::MediaStreamInterface* stream = GetNativeMediaStream(web_stream); local
273 webrtc::MediaStreamInterface* stream = extra_data->stream().get(); local
    [all...]
  /external/chromium_org/media/audio/
audio_output_dispatcher.h 8 // is started, the proxy calls StartStream() to get an output stream that it
9 // uses to play audio. When playback is stopped, the proxy returns the stream
43 // Called by AudioOutputProxy to open the stream.
47 // Called by AudioOutputProxy when the stream is started.
54 // Called by AudioOutputProxy when the stream is stopped.
62 // Called by AudioOutputProxy when the stream is closed.
  /external/chromium_org/net/disk_cache/simple/
simple_util.h 41 // of a stream on that entry, returns the filename in which that stream would be
50 // Given the size of a file holding a stream in the simple backend and the key
51 // to an entry, returns the number of bytes in the stream.
55 // Given the size of a stream in the simple backend and the key to an entry,
60 // Given the key to an entry, and an offset into a stream on that entry, returns
  /external/chromium_org/net/spdy/
spdy_session.h 119 // A helper class used to manage a request to create a stream.
126 // Starts the request to create a stream. If OK is returned, then
128 // then when the stream is created, |callback| will be called, at
129 // which point ReleaseStream() may be called. Otherwise, the stream
145 // Cancels any pending stream creation request. May be called
149 // Transfers the created stream (guaranteed to not be NULL) to the
152 // set a delegate for the returned stream (except for test code).
158 // Called by |session_| when the stream attempt has finished
160 void OnRequestCompleteSuccess(base::WeakPtr<SpdyStream>* stream);
162 // Called by |session_| when the stream attempt has finished with a
512 SpdyStream* stream; member in struct:net::SpdySession::ActiveStreamInfo
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkImageEncoder.h 55 * stream 'stream', at quality level 'quality' (which can be in
58 bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality);
69 * stream 'stream', at quality level 'quality' (which can be in
74 virtual bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) = 0;
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 72 private void readObject(java.io.ObjectInputStream stream)
74 stream.defaultReadObject();
75 Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, ArgumentsMatcher>) stream
91 private void writeObject(java.io.ObjectOutputStream stream)
93 stream.defaultWriteObject();
100 stream.writeObject(map);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPInputStream.java 28 * Reads up to <code>len</code> bytes of data from the input stream into
46 * Reads the next byte of data from the input stream. The value byte is
48 * <code>255</code>. If no byte is available because the end of the stream
50 * blocks until input data is available, the end of the stream is detected,
56 * stream is reached.
71 * stream.
  /external/oprofile/libutil++/
cverb.h 3 * verbose output stream
22 * verbose object, all output through this stream are made only
23 * if a verbose object with a true state is injected in the stream.
48 * the condition test the fails bit for the returned stream while the later
52 /// The returned stream is either a null stream or cout.
  /external/skia/include/core/
SkImageEncoder.h 55 * stream 'stream', at quality level 'quality' (which can be in
58 bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality);
69 * stream 'stream', at quality level 'quality' (which can be in
74 virtual bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) = 0;
  /external/srec/portable/src/
PFile.c 359 size_t pfread(void* buffer, size_t size, size_t count, PFile* stream)
363 rc = PFileRead(stream, buffer, size, &count);
369 size_t pfwrite(const void* buffer, size_t size, size_t count, PFile* stream)
373 rc = PFileWrite(stream, buffer, size, &count);
379 int pfclose(PFile* stream)
383 rc = PFileDestroy(stream);
389 void prewind(PFile* stream)
391 PFileSeek(stream, 0, SEEK_SET);
394 int pfseek(PFile* stream, long offset, int origin)
398 rc = PFileSeek(stream, offset, origin)
    [all...]
  /frameworks/base/obex/javax/obex/
BaseStream.java 61 * @param inStream <code>true</code> if the stream is input stream or is
62 * output stream
70 * Called when the output or input stream is closed.
71 * @param inStream <code>true</code> if the input stream is closed;
72 * <code>false</code> if the output stream is closed
  /frameworks/support/v4/java/android/support/v4/media/
TransportController.java 53 * Retrieve the total duration of the media stream, in milliseconds.
58 * Retrieve the current playback location in the media stream, in milliseconds.
63 * Move to a new location in the media stream.
69 * Return whether the player is currently playing its stream.
74 * Retrieve amount, in percentage (0-100), that the media stream has been buffered
75 * on to the local device. Return 100 if the stream is always local.
  /hardware/libhardware_legacy/audio/
AudioPolicyCompatClient.cpp 88 status_t AudioPolicyCompatClient::setStreamOutput(AudioSystem::stream_type stream,
91 return mServiceOps->set_stream_output(mService, (audio_stream_type_t)stream,
122 AudioSystem::stream_type stream,
127 return mServiceOps->set_stream_volume(mService, (audio_stream_type_t)stream,
132 AudioSystem::stream_type stream)
136 (audio_stream_type_t)stream);
audio_policy_hal.cpp 137 audio_stream_type_t stream,
147 return lap->apm->getOutput((AudioSystem::stream_type)stream,
154 audio_stream_type_t stream, int session)
157 return lap->apm->startOutput(output, (AudioSystem::stream_type)stream,
162 audio_stream_type_t stream, int session)
165 return lap->apm->stopOutput(output, (AudioSystem::stream_type)stream,
206 audio_stream_type_t stream, int index_min,
210 lap->apm->initStreamVolume((AudioSystem::stream_type)stream, index_min,
215 audio_stream_type_t stream,
219 return lap->apm->setStreamVolumeIndex((AudioSystem::stream_type)stream,
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
audio_policy_hal.cpp 137 audio_stream_type_t stream,
146 return qap->apm->getOutput((AudioSystem::stream_type)stream,
152 audio_stream_type_t stream, int session)
155 return qap->apm->startOutput(output, (AudioSystem::stream_type)stream,
160 audio_stream_type_t stream, int session)
163 return qap->apm->stopOutput(output, (AudioSystem::stream_type)stream,
204 audio_stream_type_t stream, int index_min,
208 qap->apm->initStreamVolume((AudioSystem::stream_type)stream, index_min,
213 audio_stream_type_t stream,
217 return qap->apm->setStreamVolumeIndex((AudioSystem::stream_type)stream,
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.cons/
dtor.pass.cpp 35 void f1(std::ios_base::event ev, std::ios_base& stream, int index)
42 assert(stream.getloc().name() == "C");
48 void f2(std::ios_base::event ev, std::ios_base& stream, int index)
55 assert(stream.getloc().name() == "C");
61 void f3(std::ios_base::event ev, std::ios_base& stream, int index)
68 assert(stream.getloc().name() == "C");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
wrap_stringstream.hpp 51 wrapped_stream& stream();
66 targ.stream() << t;
74 basic_wrap_stringstream<CharT>::stream() function in class:boost::basic_wrap_stringstream
123 targ.stream() << man;
133 targ.stream() << man;
143 targ.stream() << man;

Completed in 1102 milliseconds

<<21222324252627282930>>