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

<<11121314151617181920>>

  /external/chromium_org/content/renderer/media/
media_stream_center.h 38 const WebKit::WebMediaStream& stream,
42 const WebKit::WebMediaStream& stream,
46 const WebKit::WebMediaStream& stream);
49 WebKit::WebMediaStream& stream);
52 const WebKit::WebMediaStream& stream,
56 const WebKit::WebMediaStream& stream,
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathUtilities.cpp 162 bool buildPathFromByteStream(SVGPathByteStream* stream, Path& result)
164 ASSERT(stream);
165 if (stream->isEmpty())
170 OwnPtr<SVGPathByteStreamSource> source = SVGPathByteStreamSource::create(stream);
177 bool buildSVGPathSegListFromByteStream(SVGPathByteStream* stream, SVGPathElement* element, SVGPathSegList& result, PathParsingMode parsingMode)
179 ASSERT(stream);
180 if (stream->isEmpty())
185 OwnPtr<SVGPathByteStreamSource> source = SVGPathByteStreamSource::create(stream);
192 bool buildStringFromByteStream(SVGPathByteStream* stream, String& result, PathParsingMode parsingMode)
194 ASSERT(stream);
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
pattern.h 76 xmlFreeStreamCtxt (xmlStreamCtxtPtr stream);
78 xmlStreamPushNode (xmlStreamCtxtPtr stream,
83 xmlStreamPush (xmlStreamCtxtPtr stream,
87 xmlStreamPushAttr (xmlStreamCtxtPtr stream,
91 xmlStreamPop (xmlStreamCtxtPtr stream);
93 xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream);
  /external/chromium_org/third_party/re2/util/
logging.h 28 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x
42 #define VLOG(x) if((x)>0){}else LOG_INFO.stream()
52 #define LOG(severity) LOG_ ## severity.stream()
57 stream() << file << ":" << line << ": ";
60 stream() << "\n";
71 ostream& stream() { return str_; } function in class:LogMessage
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDocument.cpp 85 bool SkPDFDocument::emitPDF(SkWStream* stream) {
197 emitHeader(stream);
198 fDocCatalog->emitObject(stream, fCatalog.get(), true);
199 fPages[0]->emitObject(stream, fCatalog.get(), true);
200 fPages[0]->emitPage(stream, fCatalog.get());
202 (*fFirstPageResources)[i]->emit(stream, fCatalog.get(), true);
204 fCatalog->emitSubstituteResources(stream, true);
208 // fCatalog->emitXrefTable(stream, true);
212 fPageTree[i]->emitObject(stream, fCatalog.get(), true);
216 fPages[i]->emitPage(stream, fCatalog.get())
    [all...]
SkPDFImageStream.cpp 23 SkPDFImageStream::SkPDFImageStream(SkStream* stream,
27 : SkPDFStream(stream),
52 SkMemoryStream* stream = SkNEW_ARGS(SkMemoryStream, (data)); local
53 setData(stream);
54 stream->unref();
69 // Compression has not been requested when the stream was first created.
  /external/libxml2/include/libxml/
pattern.h 76 xmlFreeStreamCtxt (xmlStreamCtxtPtr stream);
78 xmlStreamPushNode (xmlStreamCtxtPtr stream,
83 xmlStreamPush (xmlStreamCtxtPtr stream,
87 xmlStreamPushAttr (xmlStreamCtxtPtr stream,
91 xmlStreamPop (xmlStreamCtxtPtr stream);
93 xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream);
  /external/regex-re2/util/
logging.h 23 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x
37 #define VLOG(x) if((x)>0){}else LOG_INFO.stream()
47 #define LOG(severity) LOG_ ## severity.stream()
52 stream() << file << ":" << line << ": ";
55 stream() << "\n";
66 ostream& stream() { return str_; } function in class:LogMessage
  /external/skia/src/pdf/
SkPDFDocument.cpp 85 bool SkPDFDocument::emitPDF(SkWStream* stream) {
197 emitHeader(stream);
198 fDocCatalog->emitObject(stream, fCatalog.get(), true);
199 fPages[0]->emitObject(stream, fCatalog.get(), true);
200 fPages[0]->emitPage(stream, fCatalog.get());
202 (*fFirstPageResources)[i]->emit(stream, fCatalog.get(), true);
204 fCatalog->emitSubstituteResources(stream, true);
208 // fCatalog->emitXrefTable(stream, true);
212 fPageTree[i]->emitObject(stream, fCatalog.get(), true);
216 fPages[i]->emitPage(stream, fCatalog.get())
    [all...]
SkPDFImageStream.cpp 23 SkPDFImageStream::SkPDFImageStream(SkStream* stream,
27 : SkPDFStream(stream),
52 SkMemoryStream* stream = SkNEW_ARGS(SkMemoryStream, (data)); local
53 setData(stream);
54 stream->unref();
69 // Compression has not been requested when the stream was first created.
  /external/srec/portable/src/
PFileWrap.c 291 size_t pfread ( void *buffer, size_t size, size_t count, PFile *stream )
295 rc = PFileRead ( stream, buffer, size, &count );
304 size_t pfwrite ( const void *buffer, size_t size, size_t count, PFile *stream )
308 rc = PFileWrite ( stream, buffer, size, &count );
316 int pfclose ( PFile *stream )
319 fclose ( (FILE *)stream );
326 void prewind (PFile *stream)
329 PFileSeek ( stream, 0, SEEK_SET );
334 int pfseek ( PFile *stream, long offset, int origin )
338 rc = PFileSeek ( stream, offset, origin )
    [all...]
  /libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 45 * {@code in}. Line numbers are counted for all data read from this stream.
48 * {@code LineNumberInputStream}. All operations on such a stream will fail.
51 * The non-null input stream to count line numbers.
60 * <p>Note that the source stream may just be a sequence of {@code "\r\n"} bytes
61 * which are converted into {@code '\n'} by this stream. Therefore,
71 * Returns the current line number for this stream. Numbering starts at 0.
80 * Sets a mark position in this stream. The parameter {@code readlimit}
82 * Sending {@code reset()} will reposition this stream back to the marked
87 * This implementation sets a mark in the filtered stream.
90 * the number of bytes that can be read from this stream befor
    [all...]
  /external/skia/include/core/
SkStream.h 42 * Attempts to open the specified file, and return a stream to it (using
68 /** Returns true when all the bytes in the stream have been read.
93 * Reconstitute an SkData object that was written to the stream
99 /** Rewinds to the beginning of the stream. Returns true if the stream is known
104 /** Duplicates this stream. If this cannot be done, returns NULL.
105 * The returned stream will be positioned at the beginning of its data.
110 /** Returns true if this stream can report it's current position. */
112 /** Returns the current position in the stream. If this cannot be done, returns 0. */
115 /** Seeks to an absolute position in the stream. If this cannot be done, returns false
    [all...]
  /external/zlib/src/as400/
zlib.inc 11 * the package version string and the stream control structure.
81 D z_streamp S * Stream struct ptr
83 D z_off_t S 10i 0 Stream offsets
84 D z_off64_t S 20i 0 Stream offsets
90 * The GZIP encode/decode stream support structure.
280 D strm like(z_stream) Compression stream
283 D stream_size 10i 0 value Stream struct. size
286 D strm like(z_stream) Compression stream
290 D strm like(z_stream) Compression stream
293 D strm like(z_stream) Expansion stream
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vop.cpp 24 PV_STATUS EncodeShortHeader(BitstreamEncVideo *stream, Vop *currVop);
25 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop);
26 PV_STATUS EncodeGOVHeader(BitstreamEncVideo *stream, UInt seconds);
46 // BitstreamEncVideo *stream=video->bitstream1;
128 BitstreamEncVideo *stream = video->bitstream1; local
135 status = EncodeShortHeader(stream, currVop); /* Encode Short Header */
137 video->header_bits = BitstreamGetPos(stream); /* Header Bits */
147 status = EncodeGOVHeader(stream, time); /* Encode GOV Header */
149 status = EncodeVOPHeader(stream, currVol, currVop); /* Encode VOP Header */
151 video->header_bits = BitstreamGetPos(stream); /* Header Bits *
197 BitstreamEncVideo *stream = video->bitstream1; \/* different from frame-based *\/ local
314 BitstreamEncVideo *stream = currVol->stream; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 63 # I can't figure out how to explictly specify a stream keyword arg
65 # def __init__(self, *args, stream=sys.stdout): ...
67 self.stream = sys.stdout
68 if "stream" in kwds:
69 self.stream = kwds["stream"]
70 del kwds["stream"]
102 print >> self.stream, "Invalid timing data",
103 if self.files: print >> self.stream, self.files[-1],
104 print >> self.stream
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 63 # I can't figure out how to explictly specify a stream keyword arg
65 # def __init__(self, *args, stream=sys.stdout): ...
67 self.stream = sys.stdout
68 if "stream" in kwds:
69 self.stream = kwds["stream"]
70 del kwds["stream"]
102 print >> self.stream, "Invalid timing data",
103 if self.files: print >> self.stream, self.files[-1],
104 print >> self.stream
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3input.h 52 /// Master context structure for an ANTLR3 C runtime based input stream.
63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself
75 * when the stream dies.
79 /** String factory for this input stream
86 * was read by the functions installed as pointer in this input stream
93 * input source is a stream such as a socket or something then we may
116 /** List of mark() points in the input stream
132 /** Pointer to function that closes the input stream
137 /** Pointer to function that resets the input stream
141 /** Pointer to a function that reuses and resets an input stream b
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRInputStream.cs 35 using Stream = System.IO.Stream;
45 public ANTLRInputStream(Stream input)
49 public ANTLRInputStream(Stream input, int size)
53 public ANTLRInputStream(Stream input, Encoding encoding)
57 public ANTLRInputStream(Stream input, int size, Encoding encoding)
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding)
65 private static StreamReader GetStreamReader(Stream input, Encoding encoding) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRInputStream.cs 36 using Stream = System.IO.Stream;
47 public ANTLRInputStream( Stream input )
52 public ANTLRInputStream( Stream input, int size )
57 public ANTLRInputStream( Stream input, Encoding encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding )
72 private static StreamReader GetStreamReader(Stream input, Encoding encoding)
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEmptyStreamException.js 1 /** Ref to ID or expr but no tokens in ID stream or subtrees in expr stream */
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRReaderStream.m 113 - (void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)eventCode
125 len = [(NSInputStream *)stream read:buf maxLength:1024];
137 [stream close];
138 [stream removeFromRunLoop:[NSRunLoop currentRunLoop]
140 [stream release];
141 stream = nil; // stream is ivar, so reinit it
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
ContentSigner.java 12 * Returns a stream that will accept data for the purpose of calculating
21 * Returns a signature based on the current data written to the stream, since the
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestInputStream.java 15 InputStream stream,
18 super(stream);
  /external/chromium/net/spdy/
spdy_io_buffer.cc 14 IOBuffer* buffer, int size, int priority, SpdyStream* stream)
18 stream_(stream) {}

Completed in 335 milliseconds

<<11121314151617181920>>