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

1234567891011>>

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Ddefault_logger.h47 stringstream stream; local
48 stream << n;
50 stream >> result;
/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/doc/
H A DSkDocument_PDF.cpp14 SkDocument_PDF(SkWStream* stream, void (*doneProc)(SkWStream*,bool), argument
17 : SkDocument(stream, doneProc)
64 virtual bool onClose(SkWStream* stream) SK_OVERRIDE {
68 bool success = fDoc->emitPDF(stream);
89 SkDocument* SkDocument::CreatePDF(SkWStream* stream, void (*done)(SkWStream*,bool), argument
92 return stream ? SkNEW_ARGS(SkDocument_PDF, (stream, done, enc, dpi)) : NULL;
95 static void delete_wstream(SkWStream* stream, bool aborted) { argument
96 SkDELETE(stream);
102 SkFILEWStream* stream local
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkDecodingImageGenerator.cpp60 SkDecodingImageGenerator::SkDecodingImageGenerator(SkStreamRewindable* stream) argument
62 , fStream(stream)
197 bool SkDecodingImageGenerator::Install(SkStreamRewindable* stream, argument
200 SkASSERT(stream != NULL);
202 if ((stream == NULL) || !stream->unique()) {
203 SkSafeUnref(stream);
206 SkImageGenerator* gen(SkNEW_ARGS(SkDecodingImageGenerator, (stream)));
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(const SkImageInfo& info, SkStreamRewindable* stream, argument
24 SkASSERT(stream);
25 stream->ref();
26 fStream = stream;
34 this, this->info().fColorType, (int)stream->getLength());
82 bool SkImageRef::onDecode(SkImageDecoder* codec, SkStreamRewindable* stream, argument
85 return codec->decode(stream, bitmap, config, mode);
103 SkDEBUGF(("Failed to rewind SkImageRef stream!"));
184 SkDEBUGF(("Failed to rewind SkImageRef stream!"));
H A DSkImageRef_GlobalPool.cpp28 SkStreamRewindable* stream,
30 : SkImageRef(info, stream, sampleSize, &gGlobalPoolMutex) {
47 bool SkImageRef_GlobalPool::onDecode(SkImageDecoder* codec, SkStreamRewindable* stream, argument
50 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
27 SkImageRef_GlobalPool(const SkImageInfo& info, SkStreamRewindable* stream, int sampleSize) argument
H A DSkJpegUtility.cpp98 skjpeg_source_mgr::skjpeg_source_mgr(SkStream* stream, SkImageDecoder* decoder) argument
99 : fStream(SkRef(stream))
154 skjpeg_destination_mgr::skjpeg_destination_mgr(SkWStream* stream) argument
155 : fStream(stream) {
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_linux.cpp31 bool find_name_and_attributes(SkStream* stream, SkString* name,
78 /** The stream SkTypeface implementation for the custom font manager. */
81 SkTypeface_Stream(Style style, bool sysFont, SkStream* stream, argument
84 , fStream(SkRef(stream))
262 SkAutoTUnref<SkStream> stream(new SkMemoryStream(data));
263 return this->createFromStream(stream, ttcIndex);
266 virtual SkTypeface* onCreateFromStream(SkStream* stream, int ttcIndex) SK_OVERRIDE {
267 if (NULL == stream || stream->getLength() <= 0) {
268 SkDELETE(stream);
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkFrontBufferedStream.cpp35 // Current offset into the stream. Always >= 0.
43 // NULL stream.
51 // Buffer up to size bytes from the stream, and copy to dst if non-
56 // Read up to size bytes directly from the stream and into dst if non-
64 SkStreamRewindable* SkFrontBufferedStream::Create(SkStream* stream, size_t bufferSize) { argument
65 if (NULL == stream) {
68 return SkNEW_ARGS(FrontBufferedStream, (stream, bufferSize));
71 FrontBufferedStream::FrontBufferedStream(SkStream* stream, size_t bufferSize) argument
72 : fStream(SkRef(stream))
80 // Even if the underlying stream i
[all...]
/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);

Completed in 1617 milliseconds

1234567891011>>