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

<<11121314151617181920>>

  /ndk/sources/host-tools/sed-4.2.1/doc/
config.texi 3 * sed: (sed). Stream EDitor.
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 1 /* POSIX compatible FILE stream write function.
30 which flushes the buffer of a FILE stream. */
42 if (ferror (stream)) \
49 if (FAILED && GetLastError () == ERROR_NO_DATA && ferror (stream)) \
51 int fd = fileno (stream); \
82 fprintf (FILE *stream, const char *format, ...)
88 retval = vfprintf (stream, format, args);
105 vfprintf (FILE *stream, const char *format, va_list args)
108 CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, args), ret == EOF)
119 fputc (int c, FILE *stream)
136 FILE *stream = stdout; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
48 if not stream:
49 stream = tty
55 passwd = fallback_getpass(prompt, stream)
57 if not stream:
58 stream = sys.stderr
71 passwd = _raw_input(prompt, stream, input=input
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getpass.py 3 getpass(prompt[, stream]) - Prompt for a password, with echo turned off.
26 def unix_getpass(prompt='Password: ', stream=None):
30 prompt: Written on stream to ask for the input. Default: 'Password: '
31 stream: A writable file object to display the prompt. Defaults to
48 if not stream:
49 stream = tty
55 passwd = fallback_getpass(prompt, stream)
57 if not stream:
58 stream = sys.stderr
71 passwd = _raw_input(prompt, stream, input=input
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 56 FILE *stream) {
57 return fread(ptr, size, nmemb, stream);
62 FILE *stream) {
63 return fwrite(ptr, size, nmemb, stream);
413 "Stream frame rate (rate/scale)");
1267 struct stream_state *stream; local
1970 struct stream_state *stream = NULL; local
    [all...]
  /external/chromium_org/content/common/
socket_stream_messages.h 19 // Open new Socket Stream for the |socket_url| identified by |socket_id|
22 // Once Socket Stream connection is established, the browser will send
25 // Socket Stream belongs.
31 // Request to send data on the Socket Stream.
45 // Request to close the Socket Stream.
47 // Stream is completely closed.
55 // The Socket Stream is connected. The SocketStreamHandle should keep track
62 // |data| is received on the Socket Stream.
68 // SocketStreamHostMsg_SendData has been sent on the Socket Stream.
73 // The Socket Stream is closed
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
overlay.js 29 token: function(stream, state) {
30 if (stream.start == state.basePos) {
31 state.baseCur = base.token(stream, state.base);
32 state.basePos = stream.pos;
34 if (stream.start == state.overlayPos) {
35 stream.pos = stream.start;
36 state.overlayCur = overlay.token(stream, state.overlay);
37 state.overlayPos = stream.pos;
39 stream.pos = Math.min(state.basePos, state.overlayPos)
    [all...]
php.js 8 return function(stream, state) {
9 if (stream.match(delim)) state.tokenize = null;
10 else stream.skipToEnd();
27 "$": function(stream) {
28 stream.eatWhile(/[\w\$_]/);
31 "<": function(stream, state) {
32 if (stream.match(/<</)) {
33 stream.eatWhile(/[\w\.]/);
34 state.tokenize = heredoc(stream.current().slice(3));
35 return state.tokenize(stream, state)
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
InfoSink.h 44 TPersistStringStream stream; local
45 stream << t;
46 sink.append(stream.str());
73 TPersistStringStream stream; local
75 stream.precision(1);
76 stream << std::showpoint << std::fixed << f;
78 stream.unsetf(std::ios::fixed);
79 stream.unsetf(std::ios::scientific);
80 stream.precision(8);
81 stream << f
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.h 31 Void BitstreamCloseEnc(BitstreamEncVideo *stream);
32 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value);
33 PV_STATUS BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value);
34 PV_STATUS BitstreamSaveWord(BitstreamEncVideo *stream);
35 PV_STATUS BitstreamSavePartial(BitstreamEncVideo *stream, Int *fraction);
36 Int BitstreamGetPos(BitstreamEncVideo *stream);
37 void BitstreamEncReset(BitstreamEncVideo *stream);
39 Int BitstreamShortHeaderByteAlignStuffing(BitstreamEncVideo *stream);
40 Int BitstreamMpeg4ByteAlignStuffing(BitstreamEncVideo *stream);
49 Void BitstreamSetOverrunBuffer(BitstreamEncVideo *stream, UChar *overrunBuffer, Int oBSize, VideoEncData *video)
    [all...]
  /libcore/luni/src/main/java/java/io/
PushbackInputStream.java 27 * read from the underlying input stream.
44 * stream as source. The size of the pushback buffer is set to the default
48 * {@code PushbackInputStream}. All read operations on such a stream will
52 * the source input stream.
62 * input stream. The size of the pushback buffer is set to {@code size}.
65 * {@code PushbackInputStream}. All read operations on such a stream will
69 * the source input stream.
93 * Closes this stream. This implementation closes the source stream
97 * if an error occurs while closing this stream
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t019lexer.py 13 stream = antlr3.StringStream(open(inputPath).read())
14 lexer = self.getLexer(stream)
t001lexer.py 24 stream = antlr3.StringStream('0')
25 lexer = self.getLexer(stream)
35 stream = antlr3.StringStream('0')
36 lexer = self.getLexer(stream)
44 stream = antlr3.StringStream('1')
45 lexer = self.getLexer(stream)
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
numeric_lex.h 39 std::istringstream stream(str);
42 stream.setf(numeric_base_int(str), std::ios::basefield);
44 stream >> (*value);
45 return !stream.fail();
51 std::istringstream stream(str);
54 stream.imbue(std::locale::classic());
56 stream >> (*value);
57 return !stream.fail();
  /external/chromium_org/third_party/skia/include/utils/mac/
SkCGUtils.h 48 bool SkPDFDocumentToBitmap(SkStream* stream, SkBitmap* output);
51 * Return a provider that wraps the specified stream. It will become an
52 * owner of the stream, so the caller must still manage its ownership.
54 * To hand-off ownership of the stream to the provider, the caller must do
57 * SkStream* stream = new ...;
58 * CGDataProviderRef provider = SkStreamToDataProvider(stream);
59 * stream->unref();
61 * Now when the provider is finally deleted, it will delete the stream.
  /external/lzma/CPP/Common/
StdInStream.h 17 CStdInStream(FILE *stream): _streamIsOpen(false), _stream(stream) {};
  /external/skia/include/utils/mac/
SkCGUtils.h 48 bool SkPDFDocumentToBitmap(SkStream* stream, SkBitmap* output);
51 * Return a provider that wraps the specified stream. It will become an
52 * owner of the stream, so the caller must still manage its ownership.
54 * To hand-off ownership of the stream to the provider, the caller must do
57 * SkStream* stream = new ...;
58 * CGDataProviderRef provider = SkStreamToDataProvider(stream);
59 * stream->unref();
61 * Now when the provider is finally deleted, it will delete the stream.
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
arith_routines.c 16 * terminate and return byte stream;
17 * returns the number of bytes in the stream
24 /* point to the right place in the stream buffer */
25 stream_ptr = streamdata->stream + streamdata->stream_index;
37 stream_ptr = streamdata->stream + streamdata->stream_index;
51 stream_ptr = streamdata->stream + streamdata->stream_index;
58 /* calculate stream length */
59 return (int)(stream_ptr - streamdata->stream);
  /external/zlib/src/contrib/iostream/
test.cpp 6 // Construct a stream object with this filebuffer. Anything sent
7 // to this stream will go to standard out.
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
CloseShieldInputStream.java 22 * Proxy stream that prevents the underlying input stream from being closed.
24 * This class is typically used in cases where an input stream needs to be
25 * passed to a component that wants to explicitly close the stream even if
34 * Creates a proxy that shields the given input stream from being
37 * @param in underlying input stream
44 * Replaces the underlying input stream with a {@link ClosedInputStream}
45 * sentinel. The original input stream will remain open, but this proxy
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_rdi.c 138 pme->stream[MM_CAMERA_RDI].id = pme->cam->ops->add_stream(pme->cam->camera_handle,pme->ch_id,
142 if (!pme->stream[MM_CAMERA_RDI].id) {
147 CDBG("%s :Add RDI stream is successfull stream ID = %d",__func__,pme->stream[MM_CAMERA_RDI].id);
149 mm_app_set_rdi_fmt(cam_id,&pme->stream[MM_CAMERA_RDI].str_config.fmt);
150 pme->stream[MM_CAMERA_RDI].str_config.need_stream_on = 1;
151 pme->stream[MM_CAMERA_RDI].str_config.num_of_bufs = 7;
153 if (MM_CAMERA_OK != (rc = pme->cam->ops->config_stream(pme->cam->camera_handle,pme->ch_id,pme->stream[MM_CAMERA_RDI].id,
154 &pme->stream[MM_CAMERA_RDI].str_config)))
196 int stream[2]; local
251 int stream[2]; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastreamhandler.cc 177 MediaStreamHandler::MediaStreamHandler(MediaStreamInterface* stream,
180 : stream_(stream),
217 MediaStreamInterface* MediaStreamHandler::stream() { function in class:webrtc::MediaStreamHandler
232 MediaStreamInterface* stream,
235 : MediaStreamHandler(stream, audio_provider, video_provider) {
260 MediaStreamInterface* stream,
263 : MediaStreamHandler(stream, audio_provider, video_provider) {
313 MediaStreamInterface* stream) {
314 DeleteStreamHandler(&remote_streams_handlers_, stream);
318 MediaStreamInterface* stream,
    [all...]
  /external/chromium_org/net/tools/quic/
quic_client_session.cc 31 DLOG(INFO) << "Encryption not active so no outgoing stream created.";
35 DLOG(INFO) << "Failed to create a new outgoing stream. "
40 DLOG(INFO) << "Failed to create a new outgoing stream. "
44 QuicReliableClientStream* stream local
46 ActivateStream(stream);
47 return stream;
  /external/chromium_org/third_party/skia/src/core/
SkFontStream.h 19 * if the stream is a normal sfnt (ttf). If there is an error or
22 * Note: the stream is rewound initially, but is returned at an arbitrary
30 * Note: the stream is rewound initially, but is returned at an arbitrary
38 * Note: the stream is rewound initially, but is returned at an arbitrary
44 static size_t GetTableSize(SkStream* stream, int ttcIndex, SkFontTableTag tag) {
45 return GetTableData(stream, ttcIndex, tag, 0, ~0U, NULL);
  /external/libsepol/src/
debug.c 49 FILE *stream = NULL; local
55 stream = stderr;
59 stream = stdout;
63 fprintf(stream, "%s.%s: ",
68 vfprintf(stream, fmt, ap);
71 fprintf(stream, "\n");

Completed in 422 milliseconds

<<11121314151617181920>>