Searched defs:stream (Results 226 - 250 of 1084) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c45 FILE* stream; variable
120 fprintf(stream, "%s\n", symbols[i]);
122 fprintf(stream, "\n");
134 stream = fopen(filename, "wt");
136 if(stream)
166 fprintf(stream, "<%s> %p %u Create\n", buf, (void *) p, serial);
172 fprintf(stream, "<%s> %p %u AddRef %u\n", buf, (void *) p,
180 fprintf(stream, "<%s> %p %u %s %u\n", buf, (void *) p, serial,
188 fprintf(stream, "<%s> %p %u Destroy\n", buf, (void *) p, serial);
192 fflush(stream);
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc76 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(dat
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageEncoder_argb.cpp16 virtual bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) SK_OVERRIDE;
89 bool SkARGBImageEncoder::onEncode(SkWStream* stream, const SkBitmap& bitmap, int) { argument
110 stream->write(argb, argbStride);
H A DSkImageRef.cpp21 SkImageRef::SkImageRef(SkStream* stream, SkBitmap::Config config, argument
24 SkASSERT(stream);
25 stream->ref();
26 fStream = stream;
35 this, config, (int)stream->getLength());
82 bool SkImageRef::onDecode(SkImageDecoder* codec, SkStream* stream, argument
85 return codec->decode(stream, bitmap, config, mode);
H A DSkImageRef_GlobalPool.cpp27 SkImageRef_GlobalPool::SkImageRef_GlobalPool(SkStream* stream, argument
30 : SkImageRef(stream, config, sampleSize, &gGlobalPoolMutex) {
47 bool SkImageRef_GlobalPool::onDecode(SkImageDecoder* codec, SkStream* stream, argument
50 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
H A DSkJpegUtility.cpp106 skjpeg_source_mgr::skjpeg_source_mgr(SkStream* stream, SkImageDecoder* decoder) argument
107 : fStream(SkRef(stream))
162 skjpeg_destination_mgr::skjpeg_destination_mgr(SkWStream* stream) argument
163 : fStream(stream) {
/external/chromium_org/v8/src/
H A Dv8conversions.cc50 explicit StringCharacterStreamIterator(StringCharacterStream* stream);
65 StringCharacterStream* stream) : stream_(stream) {
99 StringCharacterStream stream(str, &op);
101 StringCharacterStreamIterator(&stream),
124 StringCharacterStream stream(str, &op);
126 StringCharacterStreamIterator(&stream),
64 StringCharacterStreamIterator( StringCharacterStream* stream) argument
/external/clang/test/Analysis/
H A Dstream.c11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
82 void pr8081(FILE *stream, long offset, int whence) { argument
83 fseek(stream, offset, whence);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp96 template<class T> class stream;
97 template<> class stream<char> { /* ... */ }; class
/external/easymock/src/org/easymock/internal/
H A DObjectMethodsFilter.java90 private void readObject(java.io.ObjectInputStream stream) throws IOException, ClassNotFoundException { argument
91 stream.defaultReadObject();
93 toStringMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
94 equalsMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
95 hashCodeMethod = ((MethodSerializationWrapper) stream.readObject()).getMethod();
103 private void writeObject(java.io.ObjectOutputStream stream) throws IOException { argument
104 stream.defaultWriteObject();
105 stream.writeObject(new MethodSerializationWrapper(toStringMethod));
106 stream.writeObject(new MethodSerializationWrapper(equalsMethod));
107 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/
H A DRawDataTable.java32 private PrintStream stream; field in class:RawDataTable
38 this.stream = ps;
52 * Print all build data to the current stream.
55 this.stream.print("<table border=\"1\">");
58 this.stream.print("</table>\n");
72 this.stream.print(buffer.toString());
79 this.stream.print("<tr><td><b>Build ID</b></td>");
81 this.stream.print("</tr>\n");
88 this.stream.print("<tr><td>");
89 this.stream
[all...]
/external/freetype/src/base/
H A Dftpatent.c28 _tt_check_patents_in_range( FT_Stream stream, argument
39 p = stream->cursor;
116 FT_Stream stream = face->stream; local
138 result = _tt_check_patents_in_range( stream, length_i );
149 FT_Stream stream = face->stream; local
234 result = _tt_check_patents_in_range( stream, num_ins );
/external/freetype/src/sfnt/
H A Dttbdf.c48 FT_Stream stream = FT_FACE(face)->stream; local
63 FT_Stream stream )
72 error = tt_face_goto_table( face, TTAG_BDF, stream, &length );
157 error = tt_face_load_bdf_props( face, FT_FACE( face )->stream );
H A Dttpost.c157 FT_Stream stream,
160 FT_Memory memory = stream->memory;
309 FT_Stream stream,
312 FT_Memory memory = stream->memory;
376 FT_Stream stream; local
383 /* get a stream for the face's resource */
384 stream = face->root.stream;
387 error = face->goto_table( face, TTAG_post, stream, &post_len );
401 error = load_format_20( face, stream, post_limi
156 load_format_20( TT_Face face, FT_Stream stream, FT_Long post_limit ) argument
308 load_format_25( TT_Face face, FT_Stream stream, FT_Long post_limit ) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java49 static int readCount(ObjectInputStream stream) throws IOException { argument
50 return stream.readInt();
54 * Stores the contents of a map in an output stream, as part of serialization.
61 static <K, V> void writeMap(Map<K, V> map, ObjectOutputStream stream) argument
63 stream.writeInt(map.size());
65 stream.writeObject(entry.getKey());
66 stream.writeObject(entry.getValue());
71 * Populates a map by reading an input stream, as part of deserialization.
74 static <K, V> void populateMap(Map<K, V> map, ObjectInputStream stream) argument
76 int size = stream
85 populateMap(Map<K, V> map, ObjectInputStream stream, int size) argument
104 writeMultiset( Multiset<E> multiset, ObjectOutputStream stream) argument
118 populateMultiset( Multiset<E> multiset, ObjectInputStream stream) argument
130 populateMultiset( Multiset<E> multiset, ObjectInputStream stream, int distinctElements) argument
151 writeMultimap( Multimap<K, V> multimap, ObjectOutputStream stream) argument
167 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream) argument
179 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys) argument
[all...]
/external/icu4c/io/
H A Dustream.cpp37 operator<<(STD_OSTREAM& stream, const UnicodeString& str) argument
58 stream << buffer;
65 /* stream.flush();*/
66 return stream;
70 operator>>(STD_ISTREAM& stream, UnicodeString& str) argument
73 if (stream.fail()) {
74 return stream;
97 ch = stream.get();
98 if (stream.eof()) {
101 stream
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java29 private final PrintStream stream; field in class:InstructionPrinter
31 public InstructionPrinter(PrintStream stream) { argument
32 this.stream = stream;
35 public static void print(CtMethod method, PrintStream stream) { argument
36 (new InstructionPrinter(stream)).print(method);
55 stream.println(pos + ": " + instructionString(iterator, pos, pool));
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
H A DSoundTrack.java52 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) { argument
69 this.stream = stream;
72 public SoundTrack(String path, boolean stream, float initialDuration) { argument
75 this.stream = stream;
78 public SoundTrack(String path, boolean stream, LoopMode loopMode) { argument
81 this.stream
84 SoundTrack(String path, boolean stream, float initialDuration, LoopMode loopMode) argument
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/audio/plugins/
H A DWAVLoader.java126 private AudioData load(InputStream inputStream, boolean stream) throws IOException{ argument
138 readStream = stream;
/external/llvm/utils/yaml-bench/
H A DYAMLBench.cpp111 static void dumpStream(yaml::Stream &stream) { argument
112 for (yaml::document_iterator di = stream.begin(), de = stream.end(); di != de;
148 llvm::yaml::Stream stream(JSONText, SM);
149 stream.skip();
187 yaml::Stream stream(Buf->getBuffer(), sm);
188 dumpStream(stream);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp35 CMyComPtr<ISequentialInStream> stream; local
36 HRESULT result = _updateCallback->GetStream(_fileIndices[_fileIndex], &stream);
40 _inStreamWithHashSpec->SetStream(stream);
42 if (stream)
46 stream.QueryInterface(IID_IStreamGetSize, &streamGetSize);
/external/lzma/CS/7zip/Compress/LZ/
H A DLzOutWindow.cs27 public void Init(System.IO.Stream stream, bool solid) argument
30 _stream = stream;
39 public bool Train(System.IO.Stream stream) argument
41 long len = stream.Length;
44 stream.Position = len - size;
51 int numReadBytes = stream.Read(_buffer, (int)_pos, (int)curSize);
/external/lzma/Java/SevenZip/Compression/LZ/
H A DOutWindow.java24 public void SetStream(java.io.OutputStream stream) throws IOException argument
27 _stream = stream;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java17 public final void SetStream(java.io.InputStream stream) argument
19 Stream = stream;
/external/marisa-trie/lib/marisa/
H A Dwriter.cc23 Writer::Writer(std::ostream *stream) argument
24 : file_(NULL), fd_(-1), stream_(stream), needs_fclose_(false) {}

Completed in 1502 milliseconds

1234567891011>>