/external/skia/gm/ |
cmykjpeg.cpp | 36 SkFILEStream stream(filename.c_str()); 37 if (!stream.isValid()) { 42 SkImageDecoder* codec = SkImageDecoder::Factory(&stream); 44 stream.rewind(); 46 codec->decode(&stream, &fBitmap, prefConfig,
|
factory.cpp | 32 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(filename.c_str())); 33 if (NULL != stream.get()) { 34 stream->rewind(); 35 size_t length = stream->getLength(); 37 stream->read(buffer, length);
|
/external/skia/src/ports/ |
SkFontHost_fontconfig.cpp | 19 bool find_name_and_attributes(SkStream* stream, SkString* name, 136 SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) { 137 if (!stream) { 140 const size_t length = stream->getLength(); 151 if (!find_name_and_attributes(stream, NULL, &style, &isFixedWidth)) { 155 SkTypeface* face = SkNEW_ARGS(FontConfigTypeface, (style, isFixedWidth, stream)); 160 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path)); 161 return stream.get() ? CreateTypefaceFromStream(stream) : NULL; 169 SkStream* stream = this->getLocalStream() local [all...] |
SkImageDecoder_CG.cpp | 31 static CGDataProviderRef SkStreamToDataProvider(SkStream* stream) { 33 size_t len = stream->getLength(); 35 stream->read(data, len); 40 static CGImageSourceRef SkStreamToCGImageSource(SkStream* stream) { 41 CGDataProviderRef data = SkStreamToDataProvider(stream); 49 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode); 65 bool SkImageDecoder_CG::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) { 66 CGImageSourceRef imageSrc = SkStreamToCGImageSource(stream); 130 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { 131 SkImageDecoder* decoder = image_decoder_from_stream(stream); 149 SkWStream* stream = reinterpret_cast<SkWStream*>(info); local [all...] |
/external/skia/src/utils/ios/ |
SkImageDecoder_iOS.mm | 19 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode); 24 bool SkImageDecoder_iOS::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) { 26 NSData* data = NSData_dataWithStream(stream); 57 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { 61 SkMovie* SkMovie::DecodeStream(SkStream* stream) {
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4DA_Types.h | 39 * @brief Type used to describe a stream (audio or video data flow). 78 * @brief Base structure to describe a stream. 83 M4_StreamType m_streamType; /**< Stream type */ 84 M4OSA_UInt32 m_streamId; /**< Stream Id (unique number definning 85 the stream) */ 86 M4OSA_Int32 m_duration; /**< Duration of the stream in milli 97 M4OSA_Bool m_bStreamIsOK; /**< Flag to know if stream has no errors after 111 * @brief Extended structure to describe a video stream. 116 M4_StreamHandler m_basicProperties; /**< Audio-Video stream common parameters */ 117 M4OSA_UInt32 m_videoWidth; /**< Width of the video in the stream */ [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3StreamInterface.h | 32 * An interface for managing a single stream of input and/or output data from 38 * Get the stream's ID 43 * Get the stream's dimensions and format 50 * Start the stream configuration process. Returns a handle to the stream's 53 * Until finishConfiguration() is called, no other methods on the stream may 64 * Check if the stream is mid-configuration (start has been called, but not 70 * Completes the stream configuration process. During this call, the stream 71 * may call the device's register_stream_buffers() method. The stream [all...] |
/external/chromium_org/third_party/skia/src/ports/ |
SkImageDecoder_CG.cpp | 31 static CGDataProviderRef SkStreamToDataProvider(SkStream* stream) { 33 size_t len = stream->getLength(); 35 stream->read(data, len); 40 static CGImageSourceRef SkStreamToCGImageSource(SkStream* stream) { 41 CGDataProviderRef data = SkStreamToDataProvider(stream); 49 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode); 65 bool SkImageDecoder_CG::onDecode(SkStream* stream, SkBitmap* bm, Mode mode) { 66 CGImageSourceRef imageSrc = SkStreamToCGImageSource(stream); 130 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { 131 SkImageDecoder* decoder = image_decoder_from_stream(stream); 149 SkWStream* stream = reinterpret_cast<SkWStream*>(info); local [all...] |
/external/libvorbis/doc/ |
a1-encapsulation-ogg.tex | 4 \section{Embedding Vorbis into an Ogg stream} \label{vorbis:over:ogg} 33 The Ogg stream may be chained, i.e., contain multiple, contigous logical streams (links). 36 The Ogg stream must be unmultiplexed (only one stream, a Vorbis audio stream, per link) 42 Vorbis with other media types into a multi-stream Ogg file. At the 46 existing alone within a degenerate Ogg stream. A compliant 'Vorbis 48 specific support of Vorbis within a degenrate Ogg stream (naturally, 67 Ogg encapsulation of a Vorbis packet stream is straightforward. 73 uniquely identifies a stream as Vorbis audio, is placed alone in th [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
bitstream_io.cpp | 54 BitstreamEncVideo *stream; local 55 stream = (BitstreamEncVideo *) M4VENC_MALLOC(sizeof(BitstreamEncVideo)); 56 if (stream == NULL) 60 stream->bufferSize = bufferSize; 61 stream->bitstreamBuffer = (UChar *) M4VENC_MALLOC(stream->bufferSize * sizeof(UChar)); 62 if (stream->bitstreamBuffer == NULL) 64 M4VENC_FREE(stream); 65 stream = NULL; 68 M4VENC_MEMSET(stream->bitstreamBuffer, 0, stream->bufferSize*sizeof(UChar)) [all...] |
/external/chromium_org/net/spdy/ |
spdy_stream.h | 41 // The most general type of stream; there are no restrictions on 44 // A stream where the client sends a request with possibly a body, 47 // A server-initiated stream where the server just sends a response 66 // The SpdyStream is used by the SpdySession to represent each stream known 70 // a SpdyNetworkTransaction) will maintain a reference to the stream. When 72 // until such a time as a client object requests a stream for the path. 75 // Delegate handles protocol specific behavior of spdy stream. 81 // for push streams. Must not cause the stream to be closed. 100 // must not have closed the stream. Otherwise, if 103 // closed the stream, e.g. if the headers indicated an erro [all...] |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tree.Tests.pas | 653 Stream: ITreeNodeStream; 661 Stream := CreateCommonTreeNodeStream(T); 662 CheckEquals(GetStringOfEntireStreamContentsWithNodeTypesOnly(Stream),' 101 102 103 104'); 663 CheckEquals(Stream.ToString, ' 101 2 102 2 103 3 104 3'); 669 Stream: ITreeNodeStream; 674 Stream := CreateCommonTreeNodeStream(T); 675 CheckEquals(GetStringOfEntireStreamContentsWithNodeTypesOnly(Stream),' 101 102'); 676 CheckEquals(Stream.ToString, ' 101 2 102 3'); 682 Stream: ITreeNodeStream; 707 Stream := CreateUnBufferedTreeNodeStream(T) [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
vlc_decode.cpp | 103 PV_STATUS DecodeUserData(BitstreamDecVideo *stream) 108 BitstreamReadBits32HC(stream); 109 BitstreamShowBits32(stream, 24, &code); 114 BitstreamReadBits16(stream, 8); 115 BitstreamShowBits32(stream, 24, &code); 116 status = BitstreamCheckEndBuffer(stream); 135 BitstreamDecVideo *stream = video->bitstream; local 164 status = PV_VlcDecMV(stream, &vlc_code_mag); 174 status = PV_VlcDecMV(stream, &vlc_code_mag); 191 status = PV_VlcDecMV(stream, &vlc_code_mag) [all...] |
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
gl2_enc.cpp | 21 IOStream *stream = ctx->m_stream; local 25 ptr = stream->alloc(packetSize); 36 IOStream *stream = ctx->m_stream; local 40 ptr = stream->alloc(packetSize); 52 IOStream *stream = ctx->m_stream; local 57 ptr = stream->alloc(packetSize); 71 IOStream *stream = ctx->m_stream; local 75 ptr = stream->alloc(packetSize); 87 IOStream *stream = ctx->m_stream; local 91 ptr = stream->alloc(packetSize) 103 IOStream *stream = ctx->m_stream; local 119 IOStream *stream = ctx->m_stream; local 135 IOStream *stream = ctx->m_stream; local 153 IOStream *stream = ctx->m_stream; local 168 IOStream *stream = ctx->m_stream; local 184 IOStream *stream = ctx->m_stream; local 200 IOStream *stream = ctx->m_stream; local 218 IOStream *stream = ctx->m_stream; local 240 IOStream *stream = ctx->m_stream; local 261 IOStream *stream = ctx->m_stream; local 280 IOStream *stream = ctx->m_stream; local 295 IOStream *stream = ctx->m_stream; local 313 IOStream *stream = ctx->m_stream; local 328 IOStream *stream = ctx->m_stream; local 343 IOStream *stream = ctx->m_stream; local 361 IOStream *stream = ctx->m_stream; local 376 IOStream *stream = ctx->m_stream; local 401 IOStream *stream = ctx->m_stream; local 427 IOStream *stream = ctx->m_stream; local 449 IOStream *stream = ctx->m_stream; local 471 IOStream *stream = ctx->m_stream; local 489 IOStream *stream = ctx->m_stream; local 508 IOStream *stream = ctx->m_stream; local 523 IOStream *stream = ctx->m_stream; local 541 IOStream *stream = ctx->m_stream; local 559 IOStream *stream = ctx->m_stream; local 574 IOStream *stream = ctx->m_stream; local 592 IOStream *stream = ctx->m_stream; local 607 IOStream *stream = ctx->m_stream; local 625 IOStream *stream = ctx->m_stream; local 640 IOStream *stream = ctx->m_stream; local 655 IOStream *stream = ctx->m_stream; local 671 IOStream *stream = ctx->m_stream; local 687 IOStream *stream = ctx->m_stream; local 702 IOStream *stream = ctx->m_stream; local 717 IOStream *stream = ctx->m_stream; local 734 IOStream *stream = ctx->m_stream; local 749 IOStream *stream = ctx->m_stream; local 764 IOStream *stream = ctx->m_stream; local 778 IOStream *stream = ctx->m_stream; local 792 IOStream *stream = ctx->m_stream; local 810 IOStream *stream = ctx->m_stream; local 829 IOStream *stream = ctx->m_stream; local 844 IOStream *stream = ctx->m_stream; local 862 IOStream *stream = ctx->m_stream; local 877 IOStream *stream = ctx->m_stream; local 895 IOStream *stream = ctx->m_stream; local 913 IOStream *stream = ctx->m_stream; local 931 IOStream *stream = ctx->m_stream; local 960 IOStream *stream = ctx->m_stream; local 989 IOStream *stream = ctx->m_stream; local 1011 IOStream *stream = ctx->m_stream; local 1033 IOStream *stream = ctx->m_stream; local 1051 IOStream *stream = ctx->m_stream; local 1070 IOStream *stream = ctx->m_stream; local 1088 IOStream *stream = ctx->m_stream; local 1106 IOStream *stream = ctx->m_stream; local 1126 IOStream *stream = ctx->m_stream; local 1144 IOStream *stream = ctx->m_stream; local 1163 IOStream *stream = ctx->m_stream; local 1185 IOStream *stream = ctx->m_stream; local 1204 IOStream *stream = ctx->m_stream; local 1223 IOStream *stream = ctx->m_stream; local 1245 IOStream *stream = ctx->m_stream; local 1267 IOStream *stream = ctx->m_stream; local 1289 IOStream *stream = ctx->m_stream; local 1308 IOStream *stream = ctx->m_stream; local 1327 IOStream *stream = ctx->m_stream; local 1346 IOStream *stream = ctx->m_stream; local 1365 IOStream *stream = ctx->m_stream; local 1387 IOStream *stream = ctx->m_stream; local 1406 IOStream *stream = ctx->m_stream; local 1425 IOStream *stream = ctx->m_stream; local 1441 IOStream *stream = ctx->m_stream; local 1460 IOStream *stream = ctx->m_stream; local 1479 IOStream *stream = ctx->m_stream; local 1498 IOStream *stream = ctx->m_stream; local 1517 IOStream *stream = ctx->m_stream; local 1536 IOStream *stream = ctx->m_stream; local 1555 IOStream *stream = ctx->m_stream; local 1574 IOStream *stream = ctx->m_stream; local 1589 IOStream *stream = ctx->m_stream; local 1604 IOStream *stream = ctx->m_stream; local 1620 IOStream *stream = ctx->m_stream; local 1636 IOStream *stream = ctx->m_stream; local 1659 IOStream *stream = ctx->m_stream; local 1673 IOStream *stream = ctx->m_stream; local 1691 IOStream *stream = ctx->m_stream; local 1707 IOStream *stream = ctx->m_stream; local 1725 IOStream *stream = ctx->m_stream; local 1742 IOStream *stream = ctx->m_stream; local 1760 IOStream *stream = ctx->m_stream; local 1775 IOStream *stream = ctx->m_stream; local 1791 IOStream *stream = ctx->m_stream; local 1808 IOStream *stream = ctx->m_stream; local 1826 IOStream *stream = ctx->m_stream; local 1852 IOStream *stream = ctx->m_stream; local 1869 IOStream *stream = ctx->m_stream; local 1888 IOStream *stream = ctx->m_stream; local 1905 IOStream *stream = ctx->m_stream; local 1924 IOStream *stream = ctx->m_stream; local 1950 IOStream *stream = ctx->m_stream; local 1966 IOStream *stream = ctx->m_stream; local 1985 IOStream *stream = ctx->m_stream; local 2001 IOStream *stream = ctx->m_stream; local 2020 IOStream *stream = ctx->m_stream; local 2037 IOStream *stream = ctx->m_stream; local 2056 IOStream *stream = ctx->m_stream; local 2073 IOStream *stream = ctx->m_stream; local 2092 IOStream *stream = ctx->m_stream; local 2110 IOStream *stream = ctx->m_stream; local 2129 IOStream *stream = ctx->m_stream; local 2147 IOStream *stream = ctx->m_stream; local 2166 IOStream *stream = ctx->m_stream; local 2185 IOStream *stream = ctx->m_stream; local 2204 IOStream *stream = ctx->m_stream; local 2223 IOStream *stream = ctx->m_stream; local 2242 IOStream *stream = ctx->m_stream; local 2262 IOStream *stream = ctx->m_stream; local 2282 IOStream *stream = ctx->m_stream; local 2302 IOStream *stream = ctx->m_stream; local 2317 IOStream *stream = ctx->m_stream; local 2332 IOStream *stream = ctx->m_stream; local 2348 IOStream *stream = ctx->m_stream; local 2366 IOStream *stream = ctx->m_stream; local 2383 IOStream *stream = ctx->m_stream; local 2401 IOStream *stream = ctx->m_stream; local 2419 IOStream *stream = ctx->m_stream; local 2437 IOStream *stream = ctx->m_stream; local 2456 IOStream *stream = ctx->m_stream; local 2474 IOStream *stream = ctx->m_stream; local 2492 IOStream *stream = ctx->m_stream; local 2508 IOStream *stream = ctx->m_stream; local 2524 IOStream *stream = ctx->m_stream; local 2543 IOStream *stream = ctx->m_stream; local 2570 IOStream *stream = ctx->m_stream; local 2598 IOStream *stream = ctx->m_stream; local 2621 IOStream *stream = ctx->m_stream; local 2647 IOStream *stream = ctx->m_stream; local 2675 IOStream *stream = ctx->m_stream; local 2695 IOStream *stream = ctx->m_stream; local 2710 IOStream *stream = ctx->m_stream; local 2728 IOStream *stream = ctx->m_stream; local 2746 IOStream *stream = ctx->m_stream; local 2765 IOStream *stream = ctx->m_stream; local 2784 IOStream *stream = ctx->m_stream; local 2807 IOStream *stream = ctx->m_stream; local 2827 IOStream *stream = ctx->m_stream; local 2845 IOStream *stream = ctx->m_stream; local 2866 IOStream *stream = ctx->m_stream; local 2884 IOStream *stream = ctx->m_stream; local 2903 IOStream *stream = ctx->m_stream; local [all...] |
/external/chromium_org/third_party/freetype/src/base/ |
ftrfork.c | 51 FT_Stream stream, 65 error = FT_Stream_Seek( stream, rfork_offset ); 69 error = FT_Stream_Read( stream, (FT_Byte *)head, 16 ); 91 error = FT_Stream_Seek( stream, map_pos ); 97 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 ); 126 error = FT_Stream_Seek( stream, map_pos + type_list ); 150 FT_Stream stream, 166 error = FT_Stream_Seek( stream, map_offset ); 192 error = FT_Stream_Seek( stream, rpos ); 258 FT_Stream stream, [all...] |
/external/valgrind/main/coregrind/m_initimg/ |
simple_huffman.c | 12 * - Slow bit stream implementation 28 * - Partition the input data stream into blocks, where each block has 93 static void _Huffman_InitBitstream( huff_bitstream_t *stream, 96 stream->BytePtr = buf; 97 stream->BitPos = 0; 105 static UInt _Huffman_ReadBits( huff_bitstream_t *stream, 111 /* Get current stream state */ 112 buf = stream->BytePtr; 113 bit = stream->BitPos; 127 /* Store new stream state * 370 huff_bitstream_t stream; local 452 huff_bitstream_t stream; local [all...] |
/external/chromium_org/third_party/freetype/src/truetype/ |
ttpload.c | 56 /* stream :: The input stream. */ 63 FT_Stream stream ) 71 error = face->goto_table( face, TTAG_glyf, stream, &face->glyf_len ); 81 error = face->goto_table( face, TTAG_loca, stream, &table_len ); 127 FT_Long pos = FT_Stream_Pos( stream ); 144 dist = stream->size - pos; 253 FT_Stream stream = face->root.stream; local 274 /* stream :: A handle to the input stream. * 561 FT_Stream stream = face->root.stream; local [all...] |
/external/freetype/src/truetype/ |
ttpload.c | 56 /* stream :: The input stream. */ 63 FT_Stream stream ) 71 error = face->goto_table( face, TTAG_glyf, stream, &face->glyf_len ); 81 error = face->goto_table( face, TTAG_loca, stream, &table_len ); 127 FT_Long pos = FT_Stream_Pos( stream ); 144 dist = stream->size - pos; 253 FT_Stream stream = face->root.stream; local 274 /* stream :: A handle to the input stream. * 561 FT_Stream stream = face->root.stream; local [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 223 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \ 226 ARM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL); \ 227 ASM_OUTPUT_LABEL (STREAM, NAME); \ 242 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \ 246 asm_fprintf (STREAM, "\t.word\t%LL%d\n", VALUE); \ 254 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \ 258 asm_fprintf (STREAM, "\tb\t%LL%d\n", VALUE); \ 266 asm_fprintf (STREAM, "\t.byte\t(%LL%d-%LL%d)/2\n", \ 270 asm_fprintf (STREAM, "\t.2byte\t(%LL%d-%LL%d)/2\n", \ 274 asm_fprintf (STREAM, "\t.word\t%LL%d-%LL%d\n", [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 223 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \ 226 ARM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL); \ 227 ASM_OUTPUT_LABEL (STREAM, NAME); \ 242 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \ 246 asm_fprintf (STREAM, "\t.word\t%LL%d\n", VALUE); \ 254 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \ 258 asm_fprintf (STREAM, "\tb\t%LL%d\n", VALUE); \ 266 asm_fprintf (STREAM, "\t.byte\t(%LL%d-%LL%d)/2\n", \ 270 asm_fprintf (STREAM, "\t.2byte\t(%LL%d-%LL%d)/2\n", \ 274 asm_fprintf (STREAM, "\t.word\t%LL%d-%LL%d\n", [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 223 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \ 226 ARM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL); \ 227 ASM_OUTPUT_LABEL (STREAM, NAME); \ 242 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \ 246 asm_fprintf (STREAM, "\t.word\t%LL%d\n", VALUE); \ 254 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \ 258 asm_fprintf (STREAM, "\tb\t%LL%d\n", VALUE); \ 266 asm_fprintf (STREAM, "\t.byte\t(%LL%d-%LL%d)/2\n", \ 270 asm_fprintf (STREAM, "\t.2byte\t(%LL%d-%LL%d)/2\n", \ 274 asm_fprintf (STREAM, "\t.word\t%LL%d-%LL%d\n", [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/ |
aout.h | 223 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \ 226 ARM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL); \ 227 ASM_OUTPUT_LABEL (STREAM, NAME); \ 242 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \ 246 asm_fprintf (STREAM, "\t.word\t%LL%d\n", VALUE); \ 254 #define ASM_OUTPUT_ADDR_DIFF_ELT(STREAM, BODY, VALUE, REL) \ 258 asm_fprintf (STREAM, "\tb\t%LL%d\n", VALUE); \ 266 asm_fprintf (STREAM, "\t.byte\t(%LL%d-%LL%d)/2\n", \ 270 asm_fprintf (STREAM, "\t.2byte\t(%LL%d-%LL%d)/2\n", \ 274 asm_fprintf (STREAM, "\t.word\t%LL%d-%LL%d\n", [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamhandler.h | 31 // connected to the appropriate remote video stream. 153 MediaStreamHandler(MediaStreamInterface* stream, 157 MediaStreamInterface* stream(); 177 LocalMediaStreamHandler(MediaStreamInterface* stream, 190 RemoteMediaStreamHandler(MediaStreamInterface* stream, 213 // Remove all TrackHandlers for tracks in |stream| and make sure 216 void RemoveRemoteStream(MediaStreamInterface* stream); 219 void AddRemoteAudioTrack(MediaStreamInterface* stream, 223 void AddRemoteVideoTrack(MediaStreamInterface* stream, 227 void RemoveRemoteTrack(MediaStreamInterface* stream, [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
ScenarioData.java | 240 PrintStream stream = null; local 242 stream = new PrintStream(new BufferedOutputStream(new FileOutputStream(outputFile))); 246 if (stream == null) { 247 stream = System.out; 249 stream.print(Utils.HTML_OPEN); 250 stream.print(Utils.HTML_DEFAULT_CSS); 252 stream.print("<title>" + scenarioResults.getName() + "(" + configBox + ")" + "</title></head>\n"); //$NON-NLS-1$ 253 stream.print("<h4>Scenario: " + scenarioResults.getName() + " (" + configBox + ")</h4><br>\n"); //$NON-NLS-1$ //$NON-NLS-2$ 257 stream.print("<table><tr><td><b>"+failureMessage+"</td></tr></table>\n"); 263 stream.print("<p><b>Note:</b><br>\n") 412 PrintStream stream = null; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/ |
SoundTrack.java | 52 protected boolean stream = false; field in class:SoundTrack 65 * @param stream true to make the audio data streamed 67 public SoundTrack(String path, boolean stream) { 69 this.stream = stream; 72 public SoundTrack(String path, boolean stream, float initialDuration) { 75 this.stream = stream; 78 public SoundTrack(String path, boolean stream, LoopMode loopMode) { 81 this.stream = stream [all...] |