HomeSort by relevance Sort by last modified time
    Searched refs:Stream (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/clang/test/Sema/
parentheses.cpp 20 class Stream {
23 Stream &operator<<(int);
24 Stream &operator<<(const char*);
27 void f(Stream& s, bool b) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 39 * Simple storage class for stream information.
41 static class Stream implements Serializable {
43 * Human-readable name for the stream.
53 * URI of the stream
57 public Stream(String name, String code, String uri) {
67 } else if (o == null || !(o instanceof Stream)) {
70 Stream stream = (Stream) o; local
71 return name.equals(stream.name
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 6 let rec main_loop stream =
7 match Stream.peek stream with
12 Stream.junk stream;
13 main_loop stream
19 ignore(Parser.parse_definition stream);
22 ignore(Parser.parse_extern stream);
26 ignore(Parser.parse_toplevel stream);
28 with Stream.Error s -
    [all...]
toy.ml 15 let stream = Lexer.lex (Stream.of_channel stdin) in
18 Toplevel.main_loop stream;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 8 let rec main_loop stream =
9 match Stream.peek stream with
14 Stream.junk stream;
15 main_loop stream
21 let e = Parser.parse_definition stream in
25 let e = Parser.parse_extern stream in
30 let e = Parser.parse_toplevel stream in
33 with Stream.Error s | Codegen.Error s -
    [all...]
  /external/llvm/include/llvm/Support/
FormattedStream.h 27 /// DELETE_STREAM - Tell the destructor to delete the held stream.
32 /// stream.
37 /// TheStream - The real stream we output to. We set it to be
60 /// current_pos - Return the current position within the stream,
76 /// put into ErrorInfo, and the stream should be immediately
79 /// As a side effect, the given Stream is set to be Unbuffered.
84 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false)
86 setStream(Stream, Delete);
98 void setStream(raw_ostream &Stream, bool Delete = false) {
101 TheStream = &Stream;
    [all...]
circular_raw_ostream.h 24 /// underlying stream if specified with a buffer of zero.
28 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
29 /// stream and is responsible for cleanup, memory management
34 /// REFERENCE_ONLY - Tell this stream it should not manage the
35 /// held stream.
40 /// TheStream - The real stream we output to. We set it to be
46 /// stream?
72 /// flushBuffer - Dump the contents of the buffer to Stream.
86 /// current_pos - Return the current position within the stream,
97 /// circular-buffered stream, handing it an underlying stream t
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 114 unsigned AbbrevToUse, BitstreamWriter &Stream) {
125 Stream.EmitRecord(Code, Vals, AbbrevToUse);
130 BitstreamWriter &Stream) {
134 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3);
155 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
159 Stream.ExitBlock();
163 BitstreamWriter &Stream) {
165 Stream.EnterSubblock(bitc::TYPE_SYMTAB_BLOCK_ID_OLD, 3);
174 unsigned V7Abbrev = Stream.EmitAbbrev(Abbv);
202 Stream.EmitRecord(bitc::VST_CODE_ENTRY, NameVals, is7Bit ? V7Abbrev : 0)
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 142 unsigned AbbrevToUse, BitstreamWriter &Stream) {
153 Stream.EmitRecord(Code, Vals, AbbrevToUse);
158 BitstreamWriter &Stream) {
162 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3);
183 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
187 Stream.ExitBlock();
191 static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
194 Stream.EnterSubblock(bitc::TYPE_BLOCK_ID_NEW, 4 /*count from # abbrevs */);
203 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
213 unsigned FunctionAbbrev = Stream.EmitAbbrev(Abbv)
    [all...]
  /external/clang/lib/Serialization/
GeneratePCH.cpp 36 SemaPtr(0), StatCalls(0), Stream(Buffer), Writer(Stream) {
ASTWriter.cpp 616 llvm::BitstreamWriter &Stream,
620 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
627 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
631 llvm::BitstreamWriter &Stream,
637 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
640 static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
642 #define RECORD(X) EmitRecordID(X, #X, Stream, Record)
748 Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3);
750 #define BLOCK(X) EmitBlockID(X ## _ID, #X, Stream, Record)
751 #define RECORD(X) EmitRecordID(X, #X, Stream, Record
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]
parser.ml 28 | [< 'Token.Ident id; stream >] ->
30 | [< e=parse_expr; stream >] ->
34 end stream
47 parse_ident id stream
60 stream >] ->
66 stream >] ->
71 end stream
77 raise (Stream.Error "expected 'in' after for")
78 end stream
80 raise (Stream.Error "expected '=' after for"
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 9 let rec main_loop the_fpm the_execution_engine stream =
10 match Stream.peek stream with
15 Stream.junk stream;
16 main_loop the_fpm the_execution_engine stream
22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
43 with Stream.Error s | Codegen.Error s -
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Logger.java 32 public static class Stream extends PrintStream {
36 public Stream(String name) {
102 public static Stream getStream(String name) {
105 return new Stream(name);
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 75 /// CurStreamType - If we can sniff the flavor of this stream, we can produce
324 static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
326 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
327 unsigned BlockID = Stream.ReadSubBlockID();
334 // BLOCKINFO is a special part of the stream.
337 if (Stream.ReadBlockInfoBlock())
339 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
345 if (Stream.EnterSubBlock(BlockID, &NumWords))
351 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
360 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n"
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 51 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
70 # define putc(C, Stream) putc_unlocked (C, Stream)
78 # define getc(Stream) getc_unlocked (Stream)
86 # define fputc(C, Stream) fputc_unlocked (C, Stream)
91 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 51 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
70 # define putc(C, Stream) putc_unlocked (C, Stream)
78 # define getc(Stream) getc_unlocked (Stream)
86 # define fputc(C, Stream) fputc_unlocked (C, Stream)
91 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
system.h 51 #define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
70 # define putc(C, Stream) putc_unlocked (C, Stream)
78 # define getc(Stream) getc_unlocked (Stream)
86 # define fputc(C, Stream) fputc_unlocked (C, Stream)
91 # define clearerr(Stream) clearerr_unlocked (Stream)
    [all...]
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 114 llvm::BitstreamWriter Stream(Buffer);
116 llvm::WriteBitcodeToStream(module, Stream);
  /external/clang/lib/AST/
Mangle.cpp 95 llvm::raw_svector_ostream Stream(Buffer);
97 mangleObjCMethodName(Method, Stream);
101 Stream << II->getName();
108 mangleName(ND, Stream);
111 Stream.flush();
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 420 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
432 unsigned Code = Stream.ReadCode();
434 if (Stream.ReadBlockEnd())
441 Stream.ReadSubBlockID();
442 if (Stream.SkipBlock())
448 Stream.ReadAbbrevRecord();
454 switch (Stream.ReadRecord(Code, Record)) {
522 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
539 unsigned Code = Stream.ReadCode();
543 if (Stream.ReadBlockEnd()
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 395 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
407 unsigned Code = Stream.ReadCode();
409 if (Stream.ReadBlockEnd())
416 Stream.ReadSubBlockID();
417 if (Stream.SkipBlock())
423 Stream.ReadAbbrevRecord();
429 switch (Stream.ReadRecord(Code, Record)) {
497 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
514 unsigned Code = Stream.ReadCode();
518 if (Stream.ReadBlockEnd()
    [all...]

Completed in 1477 milliseconds

1 2 3