Searched defs:stream (Results 151 - 175 of 1084) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextEncoder.cpp80 bool stream = false; local
81 options.get("stream", stream);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCStatsRequestImpl.cpp46 , m_stream(selector ? selector->component()->stream() : 0)
65 MediaStreamDescriptor* RTCStatsRequestImpl::stream() function in class:WebCore::RTCStatsRequestImpl
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebUserMediaClientMock.cpp120 WebMediaStream stream; local
121 stream.initialize(audioTracks, videoTracks);
123 stream.setExtraData(new MockExtraData());
125 m_delegate->postTask(new UserMediaRequestTask(this, request, stream));
/external/chromium_org/third_party/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = 0;
43 stream->read = 0;
44 stream->close = 0;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpserver_unittest.cc52 void OnConnectionClosed(HttpServer*, int, StreamInterface* stream) { argument
54 delete stream;
H A Dlogging_unittest.cc32 #include "talk/base/stream.h"
43 StringStream stream(str);
44 LogMessage::AddLogToStream(&stream, LS_INFO);
45 EXPECT_EQ(LS_INFO, LogMessage::GetLogToStream(&stream));
52 LogMessage::RemoveLogToStream(&stream);
53 EXPECT_EQ(LogMessage::NO_LOGGING, LogMessage::GetLogToStream(&stream));
58 // Test using multiple log streams. The INFO stream should get the INFO message,
59 // the VERBOSE stream should get the INFO and the VERBOSE.
130 FileStream stream; local
131 EXPECT_TRUE(stream
[all...]
H A Dproxydetect_unittest.cc69 FileStream* stream = FakeFileSystem::OpenFile(name, mode); local
70 return stream;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Drtpdump_unittest.cc78 talk_base::MemoryStream stream; local
79 RtpDumpWriter writer(&stream);
82 // Write a RTP packet to the stream, which is a valid RTP dump. Next, we will
85 stream.Rewind();
86 reader.reset(new RtpDumpReader(&stream));
90 stream.Rewind();
93 stream.WriteAll(new_line, strlen(new_line), NULL, NULL));
94 stream.Rewind();
95 reader.reset(new RtpDumpReader(&stream));
99 stream
119 talk_base::MemoryStream stream; local
157 talk_base::MemoryStream stream; local
179 talk_base::MemoryStream stream; local
208 talk_base::MemoryStream stream; local
234 talk_base::MemoryStream stream; local
245 talk_base::MemoryStream stream; local
256 talk_base::MemoryStream stream; local
278 talk_base::MemoryStream stream; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dssrcmuxfilter.cc73 bool SsrcMuxFilter::AddStream(const StreamParams& stream) { argument
74 if (GetStreamBySsrc(streams_, stream.first_ssrc(), NULL)) {
78 streams_.push_back(stream);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFStream.cpp21 SkPDFStream::SkPDFStream(SkStream* stream) : fState(kUnused_State) { argument
22 setData(stream);
34 // Don't uncompress an already compressed stream, but we could.
53 void SkPDFStream::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
56 return emitIndirectObject(stream, catalog);
59 return fSubstitute->emitObject(stream, catalog, indirect);
62 this->INHERITED::emitObject(stream, catalog, false);
63 stream->writeText(" stream\n");
64 stream
84 SkMemoryStream* stream = new SkMemoryStream; local
89 setData(SkStream* stream) argument
106 SkMemoryStream* stream = new SkMemoryStream; local
[all...]
H A DSkPDFStream.h22 A stream object in a PDF. Note, all streams must be indirect objects (via
29 /** Create a PDF stream. A Length entry is automatically added to the
30 * stream dictionary. The stream may be retained (stream->ref() may be
32 * @param data The data part of the stream.
36 explicit SkPDFStream(SkStream* stream);
37 /** Create a PDF stream with the same content and dictionary entries
44 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
50 kUnused_State, //!< The stream has
65 setSubstitute(SkPDFStream* stream) argument
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkXMLPullParser.cpp25 SkXMLPullParser::SkXMLPullParser(SkStream* stream) : fStream(NULL) argument
30 this->setStream(stream);
38 SkStream* SkXMLPullParser::setStream(SkStream* stream) argument
40 if (fStream && !stream)
43 SkRefCnt_SafeAssign(fStream, stream);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrint.java42 PrintStream stream; field in class:FingerPrint
47 this.stream = ps;
52 * Create and save fingerprints as image and print their reference in the current stream.
75 this.stream.print("The following fingerprints show results for the most representative tests of the ");
77 this.stream.print("current build.<br>\n");
79 this.stream.print(this.component);
80 this.stream.print(" component.<br>\n");
82 this.stream.print("<table border=\"0\">\n");
83 this.stream.print("<tr><td valign=\"top\">Select which kind of scale you want to use:</td>\n");
84 this.stream
[all...]
H A DScenarioStatusTable.java28 private PrintStream stream; field in class:ScenarioStatusTable
35 public ScenarioStatusTable(String name, PrintStream stream) { argument
37 this.stream = stream;
41 * Prints the HTML representation of scenario status table into the given stream.
51 this.stream.print("<table border=\"1\">\n");
52 this.stream.print("<tr>\n");
53 this.stream.print("<td><h4>All ");
54 this.stream.print(computeSize(scenarios));
55 this.stream
[all...]
/external/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = 0;
43 stream->read = 0;
44 stream->close = 0;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DArrayListMultimap.java145 private void writeObject(ObjectOutputStream stream) throws IOException { argument
146 stream.defaultWriteObject();
147 stream.writeInt(expectedValuesPerKey);
148 Serialization.writeMultimap(this, stream);
152 private void readObject(ObjectInputStream stream) argument
154 stream.defaultReadObject();
155 expectedValuesPerKey = stream.readInt();
156 int distinctKeys = Serialization.readCount(stream);
159 Serialization.populateMultimap(this, stream, distinctKeys);
H A DHashBiMap.java97 private void writeObject(ObjectOutputStream stream) throws IOException { argument
98 stream.defaultWriteObject();
99 Serialization.writeMap(this, stream);
103 private void readObject(ObjectInputStream stream) argument
105 stream.defaultReadObject();
106 int size = Serialization.readCount(stream);
109 Serialization.populateMap(this, stream, size);
H A DTreeMultimap.java177 private void writeObject(ObjectOutputStream stream) throws IOException { argument
178 stream.defaultWriteObject();
179 stream.writeObject(keyComparator());
180 stream.writeObject(valueComparator());
181 Serialization.writeMultimap(this, stream);
186 private void readObject(ObjectInputStream stream) argument
188 stream.defaultReadObject();
189 keyComparator = checkNotNull((Comparator<? super K>) stream.readObject());
190 valueComparator = checkNotNull((Comparator<? super V>) stream.readObject());
192 Serialization.populateMultimap(this, stream);
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DRawHeightMap.java65 private InputStream stream; field in class:RawHeightMap
104 public RawHeightMap(InputStream stream, int size, int format, boolean swapxy) throws Exception { argument
105 setup(stream, size, format, swapxy);
123 private void setup(InputStream stream, int size, int format, boolean swapxy) throws Exception { argument
125 if (null == stream || size <= 0) {
126 throw new Exception("Must supply valid stream and "
131 this.stream = stream;
148 if (null == stream || size <= 0) {
149 throw new RuntimeException("Must supply valid stream an
242 setHeightStream(InputStream stream) argument
[all...]
/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.cpp77 HRESULT CInOutTempBuffer::WriteToStream(ISequentialOutStream *stream) argument
87 RINOK(WriteStream(stream, _buf, _bufPos));
103 RINOK(WriteStream(stream, _buf, processed));
/external/lzma/CS/7zip/Common/
H A DInBuffer.cs21 public void Init(System.IO.Stream stream) argument
23 m_Stream = stream;
H A DOutBuffer.cs19 public void SetStream(System.IO.Stream stream) { m_Stream = stream; } argument
/external/marisa-trie/lib/marisa/
H A Dreader.cc23 Reader::Reader(std::istream *stream) argument
24 : file_(NULL), fd_(-1), stream_(stream), needs_fclose_(false) {}
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dreader.cc23 Reader::Reader(std::istream *stream) argument
24 : file_(NULL), fd_(-1), stream_(stream), needs_fclose_(false) {}
/external/openfst/src/include/fst/
H A Dlog.h44 std::ostream &stream() { return std::cerr; } function in class:LogMessage
50 #define LOG(type) LogMessage(#type).stream()

Completed in 570 milliseconds

1234567891011>>