Searched refs:stream (Results 226 - 250 of 923) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/v8/
H A DScriptHeapSnapshot.cpp78 void ScriptHeapSnapshot::writeJSON(ScriptHeapSnapshot::OutputStream* stream) argument
80 OutputStreamAdapter outputStream(stream);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DScrollableLayerAndroid.h66 friend void android::serializeLayer(LayerAndroid* layer, SkWStream* stream);
67 friend LayerAndroid* android::deserializeLayer(int version, SkStream* stream);
/external/zlib/src/contrib/minizip/
H A Dioapi.h136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DBuildResults.java380 * Read the build results data from the given stream.
382 void readData(DataInputStream stream) throws IOException { argument
383 long timeBuild = stream.readLong();
385 byte kind = stream.readByte();
402 this.name = stream.readUTF();
406 int length = stream.readInt();
412 int dimId = stream.readInt();
415 this.average[i] = stream.readLong();
416 this.count[i] = stream.readLong();
417 this.stddev[i] = stream
544 write(DataOutputStream stream) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt004lexer.py24 stream = antlr3.StringStream('ffofoofooo')
25 lexer = self.getLexer(stream)
56 stream = antlr3.StringStream('2')
57 lexer = self.getLexer(stream)
H A Dt008lexer.py24 stream = antlr3.StringStream('ffaf')
25 lexer = self.getLexer(stream)
50 stream = antlr3.StringStream('fafb')
51 lexer = self.getLexer(stream)
H A Dt009lexer.py24 stream = antlr3.StringStream('085')
25 lexer = self.getLexer(stream)
50 stream = antlr3.StringStream('2a')
51 lexer = self.getLexer(stream)
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStoreSpi.java109 public void engineStore(OutputStream stream, char[] password) argument
111 if (!(stream instanceof ByteArrayOutputStream)) {
112 throw new IOException("Incorrect stream");
114 if (((ByteArrayOutputStream) stream).size() == 0) {
115 throw new IOException("Incorrect stream size ");
121 public void engineLoad(InputStream stream, char[] password) argument
/external/astl/include/
H A Dstdio_filebuf.h46 stdio_filebuf(std::FILE* stream);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaDigestCalculatorProviderBuilder.java47 final DigestOutputStream stream;
53 stream = new DigestOutputStream(dig);
69 return stream;
74 return stream.getDigest();
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoy.ml17 let stream = Lexer.lex (Stream.of_channel stdin) in
20 Toplevel.main_loop stream;
/external/qemu/distrib/sdl-1.2.15/test/
H A Dloopwave.c35 void SDLCALL fillerup(void *unused, Uint8 *stream, int len) argument
46 SDL_memcpy(stream, waveptr, waveleft);
47 stream += waveleft;
53 SDL_memcpy(stream, waveptr, len);
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledWorld.java52 public TiledWorld(InputStream stream) { argument
55 parseInput(stream);
73 protected boolean parseInput(InputStream stream) { argument
75 AssetManager.AssetInputStream byteStream = (AssetManager.AssetInputStream) stream;
/external/skia/include/animator/
H A DSkAnimatorView.h25 bool decodeStream(SkStream* stream);
/external/skia/include/utils/mac/
H A DSkCGUtils.h47 bool SkPDFDocumentToBitmap(SkStream* stream, SkBitmap* output);
50 * Return a provider that wraps the specified stream. It will become an
51 * owner of the stream, so the caller must still manage its ownership.
53 * To hand-off ownership of the stream to the provider, the caller must do
56 * SkStream* stream = new ...;
57 * CGDataProviderRef provider = SkStreamToDataProvider(stream);
58 * stream->unref();
60 * Now when the provider is finally deleted, it will delete the stream.
/external/skia/src/images/
H A DSkImageRef_GlobalPool.cpp27 SkImageRef_GlobalPool::SkImageRef_GlobalPool(SkStream* stream, argument
30 : SkImageRef(stream, config, sampleSize) {
47 bool SkImageRef_GlobalPool::onDecode(SkImageDecoder* codec, SkStream* stream, argument
50 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDigestCalculatorProvider.java20 final DigestOutputStream stream = new DigestOutputStream(dig);
31 return stream;
36 return stream.getDigest();
/external/chromium/third_party/libjingle/overrides/talk/base/
H A Dlogging.h38 // LOG(sev) logs the given stream at severity "sev", which must be a
145 std::ostream& stream() { return print_stream_; } function in class:talk_base::LogMessage
165 // Stream: Any non-blocking stream interface. LogMessage takes ownership of
166 // the stream. Multiple streams may be specified by using AddLogToStream.
168 // will discard any previously set streams and install the specified stream.
169 // GetLogToStream gets the severity for the specified stream, of if none
170 // is specified, the minimum stream severity.
171 // RemoveLogToStream removes the specified stream, without destroying it.
172 static void LogToStream(StreamInterface* stream, int min_sev);
173 static int GetLogToStream(StreamInterface* stream
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlogging.h38 // LOG(sev) logs the given stream at severity "sev", which must be a
142 std::ostream& stream() { return print_stream_; } function in class:talk_base::LogMessage
162 // Stream: Any non-blocking stream interface. LogMessage takes ownership of
163 // the stream. Multiple streams may be specified by using AddLogToStream.
165 // will discard any previously set streams and install the specified stream.
166 // GetLogToStream gets the severity for the specified stream, of if none
167 // is specified, the minimum stream severity.
168 // RemoveLogToStream removes the specified stream, without destroying it.
169 static void LogToStream(StreamInterface* stream, int min_sev);
170 static int GetLogToStream(StreamInterface* stream
[all...]
/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/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DClassLoaderResourceLoader.java68 InputStream stream = classLoader.getResourceAsStream(path);
69 return stream == null ? null : buffer(new InputStreamReader(stream, getCharacterSet()));
H A DClassResourceLoader.java72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name);
73 return stream == null ? null : buffer(new InputStreamReader(stream, getCharacterSet()));
/external/junit/src/org/junit/experimental/results/
H A DPrintableResult.java52 ByteArrayOutputStream stream = new ByteArrayOutputStream();
53 new TextListener(new PrintStream(stream)).testRunFinished(result);
54 return stream.toString();
/external/skia/include/pdf/
H A DSkPDFCatalog.h39 /** Inform the catalog of the object's position in the final stream.
43 * @param offset The byte offset in the output stream of this object.
49 * @param stream The writable output stream to send the output to.
51 void emitObjectNumber(SkWStream* stream, SkPDFObject* obj);
65 * @param stream The writable output stream to send the output to.
69 int32_t emitXrefTable(SkWStream* stream, bool firstPage);
89 void emitSubstituteResources(SkWStream* stream, bool firstPage);
H A DSkPDFTypes.h56 void emit(SkWStream* stream, SkPDFCatalog* catalog, bool indirect);
60 * @param stream The writable output stream to send the output to.
62 void emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog);
90 * @param stream The writable output stream to send the output to.
92 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
109 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
130 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
150 virtual void emitObject(SkWStream* stream, SkPDFCatalo
[all...]

Completed in 1691 milliseconds

1234567891011>>