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

<<41424344454647484950>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
MediaStreamComponent.h 50 MediaStreamDescriptor* stream() const { return m_stream; } function in class:WebCore::MediaStreamComponent
51 void setStream(MediaStreamDescriptor* stream) { ASSERT(!m_stream && stream); m_stream = stream; }
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStreamSource.cpp 26 SVGPathByteStreamSource::SVGPathByteStreamSource(SVGPathByteStream* stream)
28 ASSERT(stream);
29 m_streamCurrent = stream->begin();
30 m_streamEnd = stream->end();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnectionObserver.h 51 // Triggered when media is received on a new stream from remote peer.
52 virtual void OnAddStream(MediaStreamInterface* stream) OVERRIDE;
54 // Triggered when a remote peer close a stream.
55 virtual void OnRemoveStream(MediaStreamInterface* stream) OVERRIDE;
RTCPeerConnectionObserver.mm 61 void RTCPeerConnectionObserver::OnAddStream(MediaStreamInterface* stream) {
63 [[RTCMediaStream alloc] initWithMediaStream:stream];
67 void RTCPeerConnectionObserver::OnRemoveStream(MediaStreamInterface* stream) {
69 [[RTCMediaStream alloc] initWithMediaStream:stream];
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCPeerConnectionDelegate.h 47 // Triggered when media is received on a new stream from remote peer.
49 addedStream:(RTCMediaStream *)stream;
51 // Triggered when a remote peer close a stream.
53 removedStream:(RTCMediaStream *)stream;
  /external/chromium_org/third_party/libjingle/source/talk/base/
multipart_unittest.cc 43 static const char kTestStreamContent[] = "This is a test stream.";
53 // The multipart stream contains only --boundary--\r\n
81 talk_base::scoped_ptr<talk_base::MemoryStream> stream(
84 EXPECT_TRUE(stream->GetSize(&stream_size));
86 multipart.GetPartSize("", "form-data; name=\"stream\"", "stream");
91 "form-data; name=\"stream\"",
92 "stream"));
109 // Read the multipart stream into StringStream
profiler.cc 46 std::ostream& operator<<(std::ostream& stream, const FormattedTime& time) {
48 stream << (time.time() * 1000.0) << "ms";
50 stream << time.time() << 's';
52 return stream;
123 msg.stream() << "=== Profile report ";
125 msg.stream() << "(prefix: '" << event_prefix << "') ";
127 msg.stream() << "===";
132 LogMessage(file, line, severity_to_use).stream()
141 LogMessage(file, line, severity_to_use).stream()
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediamessages.h 70 // Gets a stream, returning true if found.
72 const StreamSelector& selector, StreamParams* stream);
74 const StreamSelector& selector, StreamParams* stream);
76 const StreamSelector& selector, StreamParams* stream);
77 // Adds a stream.
78 void AddAudioStream(const StreamParams& stream);
79 void AddVideoStream(const StreamParams& stream);
80 void AddDataStream(const StreamParams& stream);
81 // Removes a stream, returning true if found and removed.
ssrcmuxfilter.cc 73 bool SsrcMuxFilter::AddStream(const StreamParams& stream) {
74 if (GetStreamBySsrc(streams_, stream.first_ssrc(), NULL)) {
75 LOG(LS_WARNING) << "Stream already added to filter";
78 streams_.push_back(stream);
  /external/chromium_org/third_party/lzma_sdk/
Bcj2.h 16 where FullOutputSize is full size of output stream of x86_2 filter.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 21 debug_assert(!"unexpected primitive type in stream output"); \
  /external/chromium_org/third_party/skia/include/animator/
SkAnimatorView.h 25 bool decodeStream(SkStream* stream);
  /external/chromium_org/third_party/skia/include/images/
SkForceLinking.h 12 * a stream.
  /external/chromium_org/third_party/skia/src/images/
SkImageRef_GlobalPool.cpp 27 SkImageRef_GlobalPool::SkImageRef_GlobalPool(SkStream* stream,
30 : SkImageRef(stream, config, sampleSize, &gGlobalPoolMutex) {
47 bool SkImageRef_GlobalPool::onDecode(SkImageDecoder* codec, SkStream* stream,
50 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFTypes.h 57 void emit(SkWStream* stream, SkPDFCatalog* catalog, bool indirect);
61 * @param stream The writable output stream to send the output to.
63 void emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog);
97 * @param stream The writable output stream to send the output to.
99 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
120 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
145 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
169 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_linux.cpp 28 bool find_name_and_attributes(SkStream* stream, SkString* name,
283 SkStream* stream, bool isFixedPitch)
285 stream->ref();
286 fStream = stream;
340 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path));
341 if (stream.get()) {
342 return find_name_and_attributes(stream, name, style, isFixedPitch);
498 SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) {
499 if (NULL == stream || stream->getLength() <= 0)
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 66 void LInstruction::PrintTo(StringStream* stream) {
67 stream->Add("%s ", this->Mnemonic());
69 PrintOutputOperandTo(stream);
71 PrintDataTo(stream);
74 stream->Add(" ");
75 environment()->PrintTo(stream);
79 stream->Add(" ");
80 pointer_map()->PrintTo(stream);
85 void LInstruction::PrintDataTo(StringStream* stream) {
86 stream->Add("= ")
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ArrayListMultimap.java 145 private void writeObject(ObjectOutputStream stream) throws IOException {
146 stream.defaultWriteObject();
147 stream.writeInt(expectedValuesPerKey);
148 Serialization.writeMultimap(this, stream);
152 private void readObject(ObjectInputStream stream)
154 stream.defaultReadObject();
155 expectedValuesPerKey = stream.readInt();
156 int distinctKeys = Serialization.readCount(stream);
159 Serialization.populateMultimap(this, stream, distinctKeys);
HashMultimap.java 123 private void writeObject(ObjectOutputStream stream) throws IOException {
124 stream.defaultWriteObject();
125 stream.writeInt(expectedValuesPerKey);
126 Serialization.writeMultimap(this, stream);
130 private void readObject(ObjectInputStream stream)
132 stream.defaultReadObject();
133 expectedValuesPerKey = stream.readInt();
134 int distinctKeys = Serialization.readCount(stream);
137 Serialization.populateMultimap(this, stream, distinctKeys);
  /external/icu4c/extra/uconv/unicode/
uwmsg.h 23 /* Format a message and print it's output to a given file stream */
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioStream.java 46 * from the input stream is uncompressed.
80 * Reads samples from the stream. The format of the data
101 * Reads samples from the stream.
147 return DataType.Stream;
170 * @return Whether the stream is open or not. Reading from a closed
171 * stream will always return eof.
178 * Closes the stream, releasing all data relating to it. Reading
179 * from the stream will return eof.
199 logger.log(Level.WARNING,"Cannot use setTime on a stream that is not seekable. You must load the file with the streamCache option set to true");
  /external/libvorbis/doc/vorbisfile/
crosslap.html 25 a single stream</a>.
49 of a stream, nor does it remove any samples. Gapless encoding
67 the current PCM position (either in the old stream, or at the position
69 half-short-block of audio data to be read from the new stream or
73 the old stream/position to perform lapping into the new
74 stream/position. However, automagic crosslapping works properly even
75 if the old stream/position is at EOF. In this case, the synthetic
83 channels. Any extra channels from the old stream are ignored; playback
84 of these channels simply ends. Extra channels in the new stream are
return.html 50 <dd>The file/data is apparently an Ogg Vorbis stream, but contains a corrupted or undecipherable header.</dd>
53 <dd>The bitstream format revision of the given stream is not supported.</dd>
56 <dd>The given link exists in the Vorbis data stream, but is not decipherable due to garbacge or corruption.</dd>
59 <dd>The given stream is not seekable</dd>
  /external/llvm/test/Transforms/InstCombine/
osx-names.ll 16 define void @test1(%struct.__sFILE* %stream) nounwind {
19 %call = tail call i32 (%struct.__sFILE*, i8*, ...)* @fprintf(%struct.__sFILE* %stream, i8* getelementptr inbounds ([13 x i8]* @.str, i32 0, i32 0)) nounwind
23 define void @test2(%struct.__sFILE* %stream, i8* %str) nounwind ssp {
26 %call = tail call i32 (%struct.__sFILE*, i8*, ...)* @fprintf(%struct.__sFILE* %stream, i8* getelementptr inbounds ([3 x i8]* @.str2, i32 0, i32 0), i8* %str) nounwind
  /external/lzma/C/
Bcj2.h 16 where FullOutputSize is full size of output stream of x86_2 filter.

Completed in 646 milliseconds

<<41424344454647484950>>