Searched refs:stream (Results 151 - 175 of 923) sorted by relevance

1234567891011>>

/external/srec/portable/src/
H A DPFileWrap.c291 size_t pfread ( void *buffer, size_t size, size_t count, PFile *stream )
295 rc = PFileRead ( stream, buffer, size, &count );
304 size_t pfwrite ( const void *buffer, size_t size, size_t count, PFile *stream )
308 rc = PFileWrite ( stream, buffer, size, &count );
316 int pfclose ( PFile *stream )
319 fclose ( (FILE *)stream );
326 void prewind (PFile *stream) argument
329 PFileSeek ( stream, 0, SEEK_SET );
334 int pfseek ( PFile *stream, long offset, int origin ) argument
338 rc = PFileSeek ( stream, offse
436 pfprintf( PFile *stream, const LCHAR *format, ... ) argument
453 pvfprintf( PFile *stream, const LCHAR *format, va_list argptr ) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dlogutils.py128 def _default_handlers(stream):
132 stream: See the configure_logging() docstring.
150 handler = logging.StreamHandler(stream)
158 def configure_logging(logging_level=None, logger=None, stream=None,
175 stream: A file-like object to which to log used in creating the default
176 handlers. The stream must define an "encoding" data attribute,
180 stream parameter is not used.
183 # If the stream does not define an "encoding" data attribute, the
189 # self.stream.write(fs % msg.encode(self.stream
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRFileStream.as20 var stream:FileStream = new FileStream();
23 stream.open(file, FileMode.READ);
24 data = stream.readMultiByte(file.size, encoding);
28 stream.close();
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeException.h36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeException.h36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeException.h36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFailedPredicateException.h40 + (ANTLRFailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
H A DANTLRNoViableAltException.h36 + (ANTLRNoViableAltException *) newException:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
37 - (ANTLRNoViableAltException *) initWithDecision:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
H A DANTLRTreeException.h36 + (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py30 stream = antlr3.StringStream(unicode(open(inputPath).read(), 'utf-8'))
31 lexer = self.getLexer(stream)
60 stream = antlr3.StringStream(input)
61 lexer = self.getLexer(stream)
84 stream = antlr3.StringStream(input)
85 lexer = self.getLexer(stream)
108 stream = antlr3.StringStream(input)
109 lexer = self.getLexer(stream)
168 ## stream = antlr3.StringStream(input)
169 ## lexer = Lexer(stream)
[all...]
H A Dt002lexer.py24 stream = antlr3.StringStream('01')
25 lexer = self.getLexer(stream)
38 stream = antlr3.StringStream('2')
39 lexer = self.getLexer(stream)
H A Dt003lexer.py24 stream = antlr3.StringStream('0fooze1')
25 lexer = self.getLexer(stream)
41 stream = antlr3.StringStream('2')
42 lexer = self.getLexer(stream)
H A Dt006lexer.py24 stream = antlr3.StringStream('fofaaooa')
25 lexer = self.getLexer(stream)
44 stream = antlr3.StringStream('fofoaooaoa2')
45 lexer = self.getLexer(stream)
H A Dt007lexer.py24 stream = antlr3.StringStream('fofababbooabb')
25 lexer = self.getLexer(stream)
44 stream = antlr3.StringStream('foaboao')
45 lexer = self.getLexer(stream)
/external/dropbear/libtommath/
H A Dbn_mp_fwrite.c18 int mp_fwrite(mp_int *a, int radix, FILE *stream) argument
38 if (fputc(buf[x], stream) == EOF) {
/external/guava/guava/src/com/google/common/collect/
H A DEnumHashBiMap.java100 private void writeObject(ObjectOutputStream stream) throws IOException { argument
101 stream.defaultWriteObject();
102 stream.writeObject(keyType);
103 Serialization.writeMap(this, stream);
108 private void readObject(ObjectInputStream stream) argument
110 stream.defaultReadObject();
111 keyType = (Class<K>) stream.readObject();
114 Serialization.populateMap(this, stream);
/external/okhttp/src/main/java/libcore/net/spdy/
H A DSpdyServer.java50 @Override public void receive(final SpdyStream stream) throws IOException { argument
51 List<String> requestHeaders = stream.getRequestHeaders();
69 serveFile(stream, file);
71 send404(stream, path);
75 private void send404(SpdyStream stream, String path) throws IOException { argument
81 OutputStream out = stream.reply(responseHeaders);
87 private void serveFile(SpdyStream stream, File file) throws IOException { argument
90 OutputStream out = stream.reply(Arrays.asList(
/external/okhttp/src/test/java/libcore/net/spdy/
H A DSpdyConnectionTest.java46 SpdyStream stream = connection.newStream(Arrays.asList("b", "banana"), true, true);
47 List<String> responseHeaders = stream.getResponseHeaders();
49 BufferedReader reader = new BufferedReader(new InputStreamReader(stream.getInputStream()));
52 OutputStream out = stream.getOutputStream();
79 @Override public void receive(SpdyStream stream) throws IOException {
80 assertEquals(Arrays.asList("a", "android"), stream.getRequestHeaders());
81 assertEquals(-1, stream.getRstStatusCode());
82 stream.reply(Arrays.asList("b", "banana"));
/external/skia/include/images/
H A DSkBitmapRegionDecoder.h19 SkBitmapRegionDecoder(SkImageDecoder *decoder, SkStream *stream, argument
22 fStream = stream;
H A DSkJpegUtility.h34 /* Our source struct for directing jpeg to our stream object.
37 skjpeg_source_mgr(SkStream* stream, SkImageDecoder* decoder, bool ownStream);
52 /* Our destination struct for directing decompressed pixels to our stream
56 skjpeg_destination_mgr(SkWStream* stream);
/external/skia/src/pdf/
H A DSkPDFTypes.cpp23 void SkPDFObject::emit(SkWStream* stream, SkPDFCatalog* catalog, argument
26 return realObject->emitObject(stream, catalog, indirect);
37 void SkPDFObject::emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog) { argument
38 catalog->emitObjectNumber(stream, this);
39 stream->writeText(" obj\n");
40 emit(stream, catalog, false);
41 stream->writeText("\nendobj\n");
70 void SkPDFObjRef::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
73 catalog->emitObjectNumber(stream, fObj.get());
74 stream
85 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
96 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
117 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
127 Append(SkScalar value, SkWStream* stream) argument
195 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
281 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
314 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
392 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
[all...]
/external/oprofile/include/
H A Dsstream48 stream(NULL), stream_len(0)
56 stream(NULL), stream_len(0)
61 stream = new char_type[stream_len];
62 str.copy(stream, stream_len);
70 delete[] stream;
77 return string(stream, pptr()-pbase());
85 delete[] stream;
87 stream = new char_type[stream_len];
88 str.copy(stream, stream_len);
111 memcpy(new_stream, stream, old_stream_le
[all...]
/external/qemu/
H A Darm-dis.c1590 arm_decode_shift (long given, fprintf_function func, void *stream, argument
1593 func (stream, "%s", arm_regnames[given & 0xf]);
1606 func (stream, ", rrx");
1614 func (stream, ", %s #%d", arm_shift[shift], amount);
1616 func (stream, ", #%d", amount);
1619 func (stream, ", %s %s", arm_shift[(given & 0x60) >> 5],
1622 func (stream, ", %s", arm_regnames[(given & 0xf00) >> 8]);
1635 void *stream = info->stream; local
1690 func (stream, "
2129 void *stream = info->stream; local
2224 void *stream = info->stream; local
2678 void *stream = info->stream; local
3038 void *stream = info->stream; local
3314 void *stream = info->stream; local
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-dump.c35 #define DUMP(format) dump (stream, indent, format)
36 #define DUMP1(format, arg1) dump (stream, indent, format, arg1)
37 #define DUMP2(format, arg1, arg2) dump (stream, indent, format, arg1, arg2)
38 #define DUMP3(format, arg1, arg2, arg3) dump (stream, indent, format, arg1, arg2, arg3)
40 #define DUMP_FINT(strct,fld) dump (stream, indent, "<" #fld ">%d</" #fld ">\n", (strct)->fld)
41 #define DUMP_FUINT(strct,fld) dump (stream, indent, "<" #fld ">%u</" #fld ">\n", (strct)->fld)
42 #define DUMP_FGLYPH(strct,fld) dump (stream, indent, "<" #fld ">%#06x</" #fld ">\n", (strct)->fld)
43 #define DUMP_FGLYPH(strct,fld) dump (stream, indent, "<" #fld ">%#06x</" #fld ">\n", (strct)->fld)
44 #define DUMP_USHORT_ARRAY(strct,fld,cnt) Dump_UShort_Array ((strct)->fld, cnt, #fld, stream, indent);
46 #define DEF_DUMP(type) static void Dump_ ## type (HB_ ## type *type, FILE *stream, in
52 do_indent(FILE *stream, int indent) argument
58 dump(FILE *stream, int indent, const char *format, ...) argument
70 Dump_UShort_Array(HB_UShort *array, int count, const char *name, FILE *stream, int indent) argument
83 Print_Tag(HB_UInt tag, FILE *stream) argument
286 Dump_GSUB_Lookup_Single(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
331 Dump_GSUB_Lookup_Ligature(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
370 Dump_GSUB_Lookup_Context(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
436 Dump_GSUB_Lookup_Chain(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
458 Dump_Device(HB_Device *Device, FILE *stream, int indent, HB_Type hb_type) argument
511 Dump_ValueRecord(HB_ValueRecord *ValueRecord, FILE *stream, int indent, HB_Type hb_type, HB_UShort value_format) argument
542 Dump_GPOS_Lookup_Single(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
566 Dump_PairValueRecord(HB_PairValueRecord *PairValueRecord, FILE *stream, int indent, HB_Type hb_type, HB_UShort ValueFormat1, HB_UShort ValueFormat2) argument
574 Dump_PairSet(HB_PairSet *PairSet, FILE *stream, int indent, HB_Type hb_type, HB_UShort ValueFormat1, HB_UShort ValueFormat2) argument
588 Dump_GPOS_Lookup_Pair(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
616 Dump_GPOS_Lookup_Markbase(HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type) argument
744 HB_Dump_GSUB_Table(HB_GSUB gsub, FILE *stream) argument
757 HB_Dump_GPOS_Table(HB_GPOS gpos, FILE *stream) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/TestRewriteRuleTokenStream/
H A DTestRewriteRuleTokenStream.h34 ANTLRRewriteRuleTokenStream *stream; variable

Completed in 1180 milliseconds

1234567891011>>