/external/chromium_org/third_party/freetype/src/sfnt/ |
ttsbit.c | 59 /* Blits a bitmap from an input stream into a given target. Supports */ 110 /* from the source byte stream. */ 113 /* last `loaded' bits from the input stream. The bits are shifted to */ 235 /* stream :: The input stream. */ 242 FT_Stream stream ) 265 /* stream :: The input stream. */ 274 FT_Stream stream, 279 FT_Memory memory = stream->memory [all...] |
/external/icu4c/test/iotest/ |
stream.cpp | 175 log_err("Error converting string for large stream buffer testing.\n"); 189 static int32_t getBitStatus(const iostream& stream) { 190 return (stream.good()<<IOSTREAM_GOOD_SHIFT) 191 | (stream.bad()<<IOSTREAM_BAD_SHIFT) 192 | (stream.eof()<<IOSTREAM_EOF_SHIFT) 193 | (stream.fail()<<IOSTREAM_FAIL_SHIFT); 197 printBits(const iostream& stream) 199 int32_t status = getBitStatus(stream); 280 /* The test cases needs to be converted to the default codepage. However, the stream operator needs char* so U_STRING_* is called. */ 319 addTest(root, &TestStream, "stream/TestStream") [all...] |
/external/protobuf/src/google/protobuf/ |
message_unittest.cc | 76 stringstream stream; local 83 EXPECT_TRUE(message.SerializeToOstream(&stream)); 91 // GCC gives some sort of error if we try to just do stream.str() == str1. 92 string temp = stream.str(); 154 stringstream stream(data); 155 EXPECT_TRUE(message.ParseFromIstream(&stream)); 156 EXPECT_TRUE(stream.eof()); 164 io::ArrayInputStream stream(data_with_junk.data(), data_with_junk.size()); 166 EXPECT_TRUE(message.ParseFromBoundedZeroCopyStream(&stream, data.size())); 173 io::ArrayInputStream stream(data.data(), data.size()) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/arts/ |
SDL_artsaudio.c | 154 /* Play a stream so aRts doesn't crash */ 195 stream = 0; 243 written = SDL_NAME(arts_write)(stream, mixbuf, mixlen); 270 if ( stream ) { 271 SDL_NAME(arts_close_stream)(stream); 272 stream = 0; 328 stream = SDL_NAME(arts_play_stream)(spec->freq, bits, spec->channels, "SDL"); 342 SDL_NAME(arts_stream_set)(stream, ARTS_P_PACKET_SETTINGS, frag_spec); 344 SDL_NAME(arts_stream_set)(stream, ARTS_P_PACKET_SIZE, frag_spec&0xffff); 345 SDL_NAME(arts_stream_set)(stream, ARTS_P_PACKET_COUNT, frag_spec>>16) [all...] |
/external/tinyalsa/include/tinyalsa/ |
asoundlib.h | 50 * pcm_write for a playback stream will not 51 * attempt to restart the stream in the case 54 * stream is considered to be stopped, and a 56 * restart the stream. 81 /* Configuration for a stream */ 102 * write into the kernel buffer. Only used if the stream is opened in mmap mode 138 /* Open and close a stream */ 178 * For an input stream, frames available are frames ready for the 180 * For an output stream, frames available are the number of empty frames available 209 /* Change avail_min after the stream has been opened with no need to stop the stream [all...] |
/external/v8/src/ |
log-utils.cc | 31 #include "string-stream.h" 50 static void AddIsolateIdIfNeeded(StringStream* stream) { 53 stream->Add("isolate-%p-", isolate); 97 StringStream stream(&allocator); 98 AddIsolateIdIfNeeded(&stream); 111 stream.Add("%.0f", FmtElm(time)); 116 stream.Put('%'); 120 stream.Put('%'); 121 stream.Put(*p); 125 stream.Put(*p) [all...] |
/frameworks/av/libvideoeditor/vss/3gpwriter/inc/ |
M4MP4W_Writer.h | 97 * @return M4ERR_BAD_CONTEXT: An audio (resp.video) stream has already been added 124 * @param streamID (IN) Stream ID of the track. 128 * @return M4ERR_BAD_STREAM_ID:Unknown stream ID 143 * @param streamID (IN) Stream ID of the track. 147 * @return M4ERR_BAD_STREAM_ID: Unknown stream ID 182 * @return M4ERR_BAD_STREAM_ID: Bad stream ID in the option value 199 * @return M4ERR_BAD_STREAM_ID: Bad stream ID in the option value 211 * the state of a specific stream. By using 0 as streamID the returned 212 * state is not stream specific. 215 * @param context (IN/OUT) streamID of the stream to retrieve th [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 126 self.stream.writeln(result.separator2) 131 self.stream.writeln("Ran %d test%s in %.3fs (%s module%s skipped)" % 135 self.stream.writeln("Unavailable resources: %s" % ", ".join(requested)) 137 self.stream.writeln("Ran %d test%s in %.3fs" % 139 self.stream.writeln() 141 self.stream.write("FAILED (") 144 self.stream.write("failures=%d" % failed) 146 if failed: self.stream.write(", ") 147 self.stream.write("errors=%d" % errored) 148 self.stream.writeln(")" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
__init__.py | 126 self.stream.writeln(result.separator2) 131 self.stream.writeln("Ran %d test%s in %.3fs (%s module%s skipped)" % 135 self.stream.writeln("Unavailable resources: %s" % ", ".join(requested)) 137 self.stream.writeln("Ran %d test%s in %.3fs" % 139 self.stream.writeln() 141 self.stream.write("FAILED (") 144 self.stream.write("failures=%d" % failed) 146 if failed: self.stream.write(", ") 147 self.stream.write("errors=%d" % errored) 148 self.stream.writeln(")" [all...] |
/external/llvm/docs/tutorial/ |
OCamlLangImpl4.rst | 162 Toplevel.main_loop the_fpm the_execution_engine stream; 275 let e = Parser.parse_toplevel stream in 484 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream 487 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] -> 490 lex_ident buffer stream 493 | [< ' ('0' .. '9' as c); stream >] -> 496 lex_number buffer stream 499 | [< ' ('#'); stream >] -> 500 lex_comment stream [all...] |
OCamlLangImpl3.rst | 581 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream 584 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] -> 587 lex_ident buffer stream 590 | [< ' ('0' .. '9' as c); stream >] -> 593 lex_number buffer stream 596 | [< ' ('#'); stream >] -> 597 lex_comment stream 600 | [< 'c; stream >] -> 601 [< 'Token.Kwd c; lex stream >] [all...] |
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 154 /// void clearerr(FILE *stream); 208 /// int fclose(FILE *stream); 212 /// int feof(FILE *stream); 214 /// int ferror(FILE *stream); 216 /// int fflush(FILE *stream); 224 /// int fgetc(FILE *stream); 226 /// int fgetpos(FILE *stream, fpos_t *pos); 228 /// char *fgets(char *s, int n, FILE *stream); 230 /// int fileno(FILE *stream); 232 /// int fiprintf(FILE *stream, const char *format, ...) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamsignaling_unittest.cc | 188 MediaStreamInterface* stream = collection->at(i); local 189 AudioTrackVector audio_tracks = stream->GetAudioTracks(); 193 EXPECT_EQ(options.streams[stream_index].sync_label, stream->label()); 197 VideoTrackVector video_tracks = stream->GetVideoTracks(); 201 EXPECT_EQ(options.streams[stream_index].sync_label, stream->label()); 246 // New remote stream have been discovered. 251 // Remote stream is no longer available. 259 virtual void OnAddLocalAudioTrack(MediaStreamInterface* stream, 262 AddTrack(&local_audio_tracks_, stream, audio_track, ssrc); 265 virtual void OnAddLocalVideoTrack(MediaStreamInterface* stream, [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
CodedOutputStream.java | 133 /** Write a {@code double} field, including tag, to the stream. */ 140 /** Write a {@code float} field, including tag, to the stream. */ 147 /** Write a {@code uint64} field, including tag, to the stream. */ 154 /** Write an {@code int64} field, including tag, to the stream. */ 161 /** Write an {@code int32} field, including tag, to the stream. */ 168 /** Write a {@code fixed64} field, including tag, to the stream. */ 175 /** Write a {@code fixed32} field, including tag, to the stream. */ 182 /** Write a {@code bool} field, including tag, to the stream. */ 189 /** Write a {@code string} field, including tag, to the stream. */ 196 /** Write a {@code group} field, including tag, to the stream. * [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
logging.cc | 51 #include "talk/base/stream.h" 109 // of destructors at program exit. Let the person who sets the stream trigger 230 void LogMessage::LogToStream(StreamInterface* stream, int min_sev) { 237 // Install the new stream, if specified 238 if (stream) { 239 AddLogToStream(stream, min_sev); 243 int LogMessage::GetLogToStream(StreamInterface* stream) { 247 if (!stream || stream == it->first) { 254 void LogMessage::AddLogToStream(StreamInterface* stream, int min_sev) 333 scoped_ptr<FileStream> stream; local [all...] |
/frameworks/base/media/java/android/media/ |
AudioSystem.java | 35 /* The audio stream for phone calls */ 37 /* The audio stream for system sounds */ 39 /* The audio stream for the phone ring and message alerts */ 41 /* The audio stream for music playback */ 43 /* The audio stream for alarms */ 45 /* The audio stream for notifications */ 47 /* @hide The audio stream for phone calls when connected on bluetooth */ 49 /* @hide The audio stream for enforced system sounds in certain countries (e.g camera in Japan) */ 51 /* @hide The audio stream for DTMF tones */ 53 /* @hide The audio stream for text to speech (TTS) * [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
CodedOutputByteBufferNano.java | 86 /** Write a {@code double} field, including tag, to the stream. */ 93 /** Write a {@code float} field, including tag, to the stream. */ 100 /** Write a {@code uint64} field, including tag, to the stream. */ 107 /** Write an {@code int64} field, including tag, to the stream. */ 114 /** Write an {@code int32} field, including tag, to the stream. */ 121 /** Write a {@code fixed64} field, including tag, to the stream. */ 128 /** Write a {@code fixed32} field, including tag, to the stream. */ 135 /** Write a {@code bool} field, including tag, to the stream. */ 142 /** Write a {@code string} field, including tag, to the stream. */ 149 /** Write a {@code group} field, including tag, to the stream. * [all...] |
/external/tinyxml/ |
tinyxml.cpp | 35 void TiXmlBase::PutString( const TIXML_STRING& str, TIXML_OSTREAM* stream ) 39 (*stream) << buffer; 817 void TiXmlElement::StreamOut( TIXML_OSTREAM * stream ) const 819 (*stream) << "<" << value; 824 (*stream) << " "; 825 attrib->StreamOut( stream ); 833 (*stream) << ">"; 837 node->StreamOut( stream ); 839 (*stream) << "</" << value << ">"; 843 (*stream) << " />"; [all...] |
/external/bison/darwin-lib/ |
stdio.h | 472 /* Close STREAM and its underlying file descriptor. */ 477 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 478 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream)); 480 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream)); 511 /* Flush all pending data on STREAM according to POSIX rules. Both 513 Note! LOSS OF DATA can occur if fflush is applied on an input stream 514 that is _not_seekable_ or on an update stream that is _not_seekable_ 540 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 541 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream)); 543 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream)); [all...] |
/external/bison/lib/ |
stdio.in.h | 160 /* Close STREAM and its underlying file descriptor. */ 165 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 166 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream)); 168 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream)); 199 /* Flush all pending data on STREAM according to POSIX rules. Both 201 Note! LOSS OF DATA can occur if fflush is applied on an input stream 202 that is _not_seekable_ or on an update stream that is _not_seekable_ 228 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 229 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream)); 231 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream)); [all...] |
/external/bison/linux-lib/ |
stdio.h | 472 /* Close STREAM and its underlying file descriptor. */ 477 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 478 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream)); 480 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream)); 511 /* Flush all pending data on STREAM according to POSIX rules. Both 513 Note! LOSS OF DATA can occur if fflush is applied on an input stream 514 that is _not_seekable_ or on an update stream that is _not_seekable_ 540 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1))); 541 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream)); 543 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream)); [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cffload.c | 201 /* read an offset from the index's stream current position */ 207 FT_Stream stream = idx->stream; local 228 FT_Stream stream, 232 FT_Memory memory = stream->memory; 238 idx->stream = stream; 304 if ( idx->stream ) 306 FT_Stream stream = idx->stream; local 323 FT_Stream stream = idx->stream; local 481 FT_Stream stream = idx->stream; local 573 FT_Stream stream = idx->stream; local [all...] |
/external/freetype/src/cff/ |
cffload.c | 200 /* read an offset from the index's stream current position */ 206 FT_Stream stream = idx->stream; local 227 FT_Stream stream, 231 FT_Memory memory = stream->memory; 237 idx->stream = stream; 303 if ( idx->stream ) 305 FT_Stream stream = idx->stream; local 322 FT_Stream stream = idx->stream; local 481 FT_Stream stream = idx->stream; local 573 FT_Stream stream = idx->stream; local [all...] |
/cts/tools/signature-tools/src/signature/io/html/ |
TemplateStore.java | 38 InputStream stream = TemplateStore.class.getClassLoader() local 40 InputStreamReader reader = new InputStreamReader(stream);
|
/dalvik/dx/src/com/android/dx/command/ |
DxConsole.java | 29 * Standard output stream. Links to {@code System.out} by default. 34 * Error output stream. Links to {@code System.err} by default.
|