Searched refs:Stream (Results 1 - 25 of 63) sorted by relevance

123

/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/json/
H A Dstream.rb6 class Stream < Psych::Visitors::JSONTree class in class:Psych.JSON
10 class Emitter < Psych::Stream::Emitter # :nodoc:
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Support/
H A DYAMLParserTest.cpp28 yaml::Stream Stream(Input, SM);
30 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
31 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
37 yaml::Stream Stream(Input, SM);
38 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
142 yaml::Stream Stream(StringInArray, SM);
144 = dyn_cast<yaml::SequenceNode>(Stream
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml7 match Stream.peek stream with
12 Stream.junk stream;
28 with Stream.Error s ->
30 Stream.junk stream;
H A Dtoy.ml15 let stream = Lexer.lex (Stream.of_channel stdin) in
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml9 match Stream.peek stream with
14 Stream.junk stream;
33 with Stream.Error s | Codegen.Error s ->
35 Stream.junk stream;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DFormattedStream.h80 /// As a side effect, the given Stream is set to be Unbuffered.
85 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false) argument
87 setStream(Stream, Delete);
99 void setStream(raw_ostream &Stream, bool Delete = false) { argument
102 TheStream = &Stream;
H A Dcircular_raw_ostream.h72 /// flushBuffer - Dump the contents of the buffer to Stream.
100 /// As a side effect, if BuffSize is nonzero, the given Stream is
109 circular_raw_ostream(raw_ostream &Stream, const char *Header, argument
121 setStream(Stream, Owns);
145 void setStream(raw_ostream &Stream, bool Owns = REFERENCE_ONLY) { argument
147 TheStream = &Stream;
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dstream.rb3 # Psych::Stream is a streaming YAML emitter. It will not buffer your YAML,
8 # stream = Psych::Stream.new($stdout)
15 # Psych::Stream#start will take a block and ensure that Psych::Stream#finish
18 # stream = Psych::Stream.new($stdout)
23 class Stream < Psych::Visitors::YAMLTree class in class:Psych
H A Dstreaming.rb5 # Psych::Stream for an example.
12 def start encoding = Nodes::Stream::UTF8
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp152 unsigned AbbrevToUse, BitstreamWriter &Stream) {
163 Stream.EmitRecord(Code, Vals, AbbrevToUse);
168 BitstreamWriter &Stream) {
172 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) { argument
194 Stream.EnterSubblock(bitc::TYPE_BLOCK_ID_NEW, 4 /*count from # abbrevs */);
204 unsigned PtrAbbrev = Stream.EmitAbbrev(Abbv);
213 unsigned FunctionAbbrev = Stream
151 WriteStringRecord(unsigned Code, StringRef Str, unsigned AbbrevToUse, BitstreamWriter &Stream) argument
167 WriteAttributeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
395 WriteModuleInfo(const Module *M, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
563 WriteMDNode(const MDNode *N, const ValueEnumerator &VE, BitstreamWriter &Stream, SmallVector<uint64_t, 64> &Record) argument
582 WriteModuleMetadata(const Module *M, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
648 WriteFunctionLocalMetadata(const Function &F, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
668 WriteMetadataAttachment(const Function &F, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
701 WriteModuleMetadataStore(const Module *M, BitstreamWriter &Stream) argument
760 WriteConstants(unsigned FirstVal, unsigned LastVal, const ValueEnumerator &VE, BitstreamWriter &Stream, bool isGlobal) argument
1007 WriteModuleConstants(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1042 WriteInstruction(const Instruction &I, unsigned InstID, ValueEnumerator &VE, BitstreamWriter &Stream, SmallVector<unsigned, 64> &Vals) argument
1385 WriteValueSymbolTable(const ValueSymbolTable &VST, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1443 WriteFunction(const Function &F, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1515 WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1682 WriteUseList(const Value *V, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1708 WriteFunctionUseList(const Function *F, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1733 WriteModuleUseLists(const Module *M, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1773 WriteModule(const Module *M, BitstreamWriter &Stream) argument
[all...]
/macosx-10.9.5/tidy-15.12/tidy/console/
H A Dtab2space.c28 } Stream; typedef in typeref:struct:__anon14116
76 static Stream *NewStream(FILE *fp)
78 Stream *in;
80 in = (Stream *)MemAlloc(sizeof(Stream));
82 memset(in, 0, sizeof(Stream));
87 static void FreeStream(Stream *in)
95 static void AddByte(Stream *in, uint c)
123 static int ReadChar(Stream *in)
206 static Stream *ReadFil
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml10 match Stream.peek stream with
15 Stream.junk stream;
43 with Stream.Error s | Codegen.Error s ->
45 Stream.junk stream;
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml10 match Stream.peek stream with
15 Stream.junk stream;
43 with Stream.Error s | Codegen.Error s ->
45 Stream.junk stream;
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml10 match Stream.peek stream with
15 Stream.junk stream;
43 with Stream.Error s | Codegen.Error s ->
45 Stream.junk stream;
H A Dparser.ml77 raise (Stream.Error "expected 'in' after for")
80 raise (Stream.Error "expected '=' after for")
83 | [< >] -> raise (Stream.Error "unknown token when expecting an expression.")
99 match Stream.peek stream with
108 Stream.junk stream;
115 match Stream.peek stream with
173 then raise (Stream.Error "invalid number of operands for operator")
180 raise (Stream.Error "expected function name in prototype")
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml10 match Stream.peek stream with
15 Stream.junk stream;
43 with Stream.Error s | Codegen.Error s ->
45 Stream.junk stream;
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/nodes/
H A Dstream.rb6 # child node for a Psych::Nodes::Stream node is Psych::Nodes::Document.
7 class Stream < Psych::Nodes::Node class in class:Psych.Nodes
27 # Create a new Psych::Nodes::Stream node with an +encoding+ that
28 # defaults to Psych::Nodes::Stream::UTF8.
/macosx-10.9.5/ruby-104/ruby/test/psych/
H A Dtest_emitter.rb34 @emitter.start_stream Psych::Nodes::Stream::UTF8
49 @emitter.start_stream Psych::Nodes::Stream::UTF8
65 @emitter.start_stream Psych::Nodes::Stream::UTF8
82 @emitter.start_stream Psych::Nodes::Stream::UTF8
H A Dtest_stream.rb51 stream = Psych::Stream.new(io)
65 stream = Psych::Stream.new(io)
77 stream = Psych::Stream.new(io)
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp322 static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) { argument
324 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
325 unsigned BlockID = Stream.ReadSubBlockID();
335 if (Stream.ReadBlockInfoBlock())
337 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
343 if (Stream.EnterSubBlock(BlockID, &NumWords))
349 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
358 << " BlockCodeSize=" << Stream.GetAbbrevIDWidth() << ">\n";
365 if (Stream.AtEndOfStream())
368 uint64_t RecordStartBit = Stream
[all...]
/macosx-10.9.5/CPANInternal-140/XML-SAX/SAX/PurePerl/Reader/
H A DURI.pm11 ## NOTE: This is *not* a subclass of Reader. It just returns Stream or String
21 return XML::SAX::PurePerl::Reader::Stream->new($fh);
27 return XML::SAX::PurePerl::Reader::Stream->new($fh);
48 return XML::SAX::PurePerl::Reader::Stream->new($fh);
/macosx-10.9.5/llvmCore-3425.0.33/utils/yaml-bench/
H A DYAMLBench.cpp111 static void dumpStream(yaml::Stream &stream) {
148 llvm::yaml::Stream stream(JSONText, SM);
156 llvm::raw_string_ostream Stream(JSONText);
157 Stream << "[\n";
160 Stream << " {\n"
165 Stream.flush();
166 if (JSONText.size() < MemoryBytes) Stream << ",";
167 Stream << "\n";
169 Stream << "]\n";
170 Stream
[all...]
/macosx-10.9.5/ruby-104/ruby/test/psych/visitors/
H A Dtest_emitter.rb16 s = Nodes::Stream.new
33 s = Nodes::Stream.new
39 s = Nodes::Stream.new
53 s = Nodes::Stream.new
69 s = Nodes::Stream.new
83 s = Nodes::Stream.new
98 s = Nodes::Stream.new
114 s = Nodes::Stream.new
129 s = Nodes::Stream.new
/macosx-10.9.5/OpenAL-52.1/Source/OpenAL/
H A DoalOSX.cpp553 ALbyte *Stream; local
561 Stream=memory;
562 if (Stream)
564 memcpy(&FileHdr,Stream,sizeof(WAVFileHdr_Struct));
565 Stream+=sizeof(WAVFileHdr_Struct);
568 while ((FileHdr.Size!=0)&&(memcpy(&ChunkHdr,Stream,sizeof(WAVChunkHdr_Struct))))
570 Stream+=sizeof(WAVChunkHdr_Struct);
575 memcpy(&FmtHdr,Stream,sizeof(WAVFmtHdr_Struct));
588 Stream+=ChunkHdr.Size;
592 memcpy(&FmtExHdr,Stream,sizeo
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp437 if (Stream.EnterSubBlock(bitc::PARAMATTR_BLOCK_ID))
449 unsigned Code = Stream.ReadCode();
451 if (Stream.ReadBlockEnd())
458 Stream.ReadSubBlockID();
459 if (Stream.SkipBlock())
465 Stream.ReadAbbrevRecord();
471 switch (Stream.ReadRecord(Code, Record)) {
499 if (Stream.EnterSubBlock(bitc::TYPE_BLOCK_ID_NEW))
516 unsigned Code = Stream.ReadCode();
520 if (Stream
[all...]

Completed in 114 milliseconds

123