Searched refs:Out (Results 1 - 25 of 188) sorted by relevance

12345678

/external/clang/include/clang/Basic/
H A DMacroBuilder.h24 raw_ostream &Out; member in class:clang::MacroBuilder
26 MacroBuilder(raw_ostream &Output) : Out(Output) {}
30 Out << "#define " << Name << ' ' << Value << '\n';
36 Out << "#undef " << Name << '\n';
41 Out << Str << '\n';
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp93 formatted_raw_ostream &Out; member in class:__anon8895::CppWriter
108 ModulePass(ID), Out(o), uniqueNum(0), is_inline(false), indent_level(0){}
126 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0);
165 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) { argument
166 Out << '\n';
169 Out.indent(indent_level);
170 return Out;
220 Out << "ConstantFP::get(mod->getContext(), ";
221 Out << "APFloat(";
230 Out << "BitsToDoubl
[all...]
/external/clang/lib/Frontend/
H A DASTConsumers.cpp39 ASTPrinter(raw_ostream *Out = NULL, bool Dump = false,
41 : Out(Out ? *Out : llvm::outs()), Dump(Dump),
49 D->dump(Out);
51 D->print(Out, /*Indentation=*/0, /*PrintInstantiation=*/true);
64 Out.changeColor(llvm::raw_ostream::BLUE) <<
66 Out.resetColor();
68 D->dump(Out);
70 D->print(Out, /*Indentatio
88 raw_ostream &Out; member in class:__anon90::ASTPrinter
111 raw_ostream &Out; member in class:__anon90::ASTDeclNodeLister
115 CreateASTPrinter(raw_ostream *Out, StringRef FilterString) argument
170 raw_ostream& Out; member in class:__anon92::DeclContextPrinter
[all...]
/external/clang/lib/AST/
H A DDeclPrinter.cpp28 raw_ostream &Out; member in class:__anon3485::DeclPrinter
40 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy, argument
42 : Out(Out), Policy(Policy), Indentation(Indentation),
89 void Decl::print(raw_ostream &Out, unsigned Indentation, argument
91 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
94 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, argument
96 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation);
131 raw_ostream &Out, const PrintingPolicy &Policy,
134 (*Begin)->print(Out, Polic
130 printGroup(Decl** Begin, unsigned NumDecls, raw_ostream &Out, const PrintingPolicy &Policy, unsigned Indentation) argument
[all...]
H A DInheritViz.cpp36 raw_ostream &Out; member in class:clang::InheritanceHierarchyWriter
41 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) argument
42 : Context(Context), Out(Out) { }
45 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n";
47 Out << "}\n";
74 Out << " ";
79 Out << " [ shape=\"box\", label=\"" << DOT::EscapeString(TypeName);
85 Out << "\\n(" << CanonType.getAsString() << ")";
89 Out << " \"];\
[all...]
H A DMangle.cpp42 raw_ostream &Out) {
45 Out << "__" << Outer << "_block_invoke";
47 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
70 raw_ostream &Out) {
74 mangleName(ID, Out);
76 Out << ID->getIdentifier()->getName();
80 Out << "_block_invoke";
82 Out << "_block_invoke_" << discriminator+1;
90 llvm::raw_svector_ostream Out(Buffer);
91 mangleCXXCtor(CD, CT, Out);
39 mangleFunctionBlock(MangleContext &Context, StringRef Outer, const BlockDecl *BD, raw_ostream &Out) argument
68 mangleGlobalBlock(const BlockDecl *BD, const NamedDecl *ID, raw_ostream &Out) argument
107 mangleBlock(const DeclContext *DC, const BlockDecl *BD, raw_ostream &Out) argument
133 mangleObjCMethodName(const ObjCMethodDecl *MD, raw_ostream &Out) argument
149 mangleBlock(const BlockDecl *BD, raw_ostream &Out, const NamedDecl *ID) argument
[all...]
H A DMicrosoftMangle.cpp34 raw_ostream &Out; member in class:__anon3514::MicrosoftCXXNameMangler
49 : Context(C), Out(Out_), UseNameBackReferences(true) { }
51 raw_ostream &getStream() const { return Out; }
113 virtual void mangleName(const NamedDecl *D, raw_ostream &Out);
198 Out << '\01' << ALA->getLabel();
203 Out << Prefix;
259 case AS_private: Out << '0'; break;
260 case AS_protected: Out << '1'; break;
261 case AS_public: Out << '2'; break;
265 Out << '
1617 mangleName(const NamedDecl *D, raw_ostream &Out) argument
1646 mangleCXXVTable(const CXXRecordDecl *RD, raw_ostream &Out) argument
1690 mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type, raw_ostream & Out) argument
1696 mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type, raw_ostream & Out) argument
[all...]
H A DItaniumMangle.cpp170 raw_ostream &Out; member in class:__anon3510::CXXNameMangler
227 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(0),
235 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
239 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
244 if (Out.str()[0] == '\01')
248 char *result = abi::__cxa_demangle(Out.str().str().c_str(), 0, 0, &status);
253 raw_ostream &getStream() { return Out; }
435 Out << '\01'; // LLVM IR Marker for __asm("foo")
437 Out << ALA->getLabel();
444 Out << Prefi
[all...]
H A DStmtViz.cpp39 llvm::raw_string_ostream Out(OutSStr);
42 Out << Node->getStmtClassName();
44 Out << "<NULL>";
46 std::string OutStr = Out.str();
H A DAPValue.cpp309 void APValue::printPretty(raw_ostream &Out, ASTContext &Ctx, QualType Ty) const{ argument
312 Out << "<uninitialized>";
316 Out << (getInt().getBoolValue() ? "true" : "false");
318 Out << getInt();
321 Out << GetApproxValue(getFloat());
324 Out << '{';
326 getVectorElt(0).printPretty(Out, Ctx, ElemTy);
328 Out << ", ";
329 getVectorElt(i).printPretty(Out, Ctx, ElemTy);
331 Out << '}';
[all...]
/external/llvm/utils/obj2yaml/
H A Dobj2yaml.h26 (llvm::raw_ostream &Out, const llvm::ArrayRef<uint8_t> arr);
30 (llvm::raw_ostream &Out, unsigned long long N);
33 llvm::error_code coff2yaml(llvm::raw_ostream &Out, llvm::MemoryBuffer *TheObj);
H A Dobj2yaml.cpp30 llvm::raw_ostream &writeHexStream(llvm::raw_ostream &Out, argument
33 Out << " !hex \"";
38 Out << hex[(*iter >> 4) & 0x0F] << hex[(*iter & 0x0F)];
40 Out << "\" # |";
42 Out << printable(*iter);
43 Out << "|" << endl;
45 return Out;
48 llvm::raw_ostream &writeHexNumber(llvm::raw_ostream &Out, unsigned long long N) { argument
50 Out << "0x";
51 Out
[all...]
H A Dcoff2yaml.cpp210 static llvm::raw_ostream &writeName(llvm::raw_ostream &Out, argument
214 Out << Name[i];
216 return Out;
221 static llvm::raw_ostream &writeBitMask(llvm::raw_ostream &Out, argument
225 Out << Arr[i].second << ", ";
226 return Out;
244 const llvm::object::coff_file_header *Header,llvm::raw_ostream &Out) {
246 Out << "header: !Header" << endl;
247 Out << " Machine: ";
248 Out << nameLooku
[all...]
/external/llvm/lib/VMCore/
H A DAsmWriter.cpp71 static void PrintEscapedString(StringRef Name, raw_ostream &Out) { argument
75 Out << C;
77 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
628 static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
668 static void writeAtomicRMWOperation(raw_ostream &Out, argument
671 default: Out << " <unknown operation " << Op << ">"; break;
672 case AtomicRMWInst::Xchg: Out << " xchg"; break;
673 case AtomicRMWInst::Add: Out << " add"; break;
674 case AtomicRMWInst::Sub: Out << " sub"; break;
675 case AtomicRMWInst::And: Out << " an
686 WriteOptimizationInfo(raw_ostream &Out, const User *U) argument
703 WriteConstantInternal(raw_ostream &Out, const Constant *CV, TypePrinting &TypePrinter, SlotTracker *Machine, const Module *Context) argument
983 WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1010 WriteAsOperandInternal(raw_ostream &Out, const Value *V, TypePrinting *TypePrinter, SlotTracker *Machine, const Module *Context) argument
1116 WriteAsOperand(raw_ostream &Out, const Value *V, bool PrintType, const Module *Context) argument
1144 formatted_raw_ostream &Out; member in class:__anon9171::AssemblyWriter
1258 Out); local
1350 PrintLinkage(GlobalValue::LinkageTypes LT, formatted_raw_ostream &Out) argument
1379 PrintVisibility(GlobalValue::VisibilityTypes Vis, formatted_raw_ostream &Out) argument
1388 PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM, formatted_raw_ostream &Out) argument
2039 WriteMDNodeComment(const MDNode *Node, formatted_raw_ostream &Out) argument
[all...]
H A DPrintModulePass.cpp27 raw_ostream *Out; // raw_ostream to print on member in class:__anon9176::PrintModulePass
31 PrintModulePass() : ModulePass(ID), Out(&dbgs()),
34 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
37 if (DeleteStream) delete Out;
41 (*Out) << Banner << M;
52 raw_ostream *Out; // raw_ostream to print on member in class:__anon9176::PrintFunctionPass
56 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
62 if (DeleteStream) delete Out;
69 (*Out) << Banne
[all...]
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp202 tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err, local
206 delete Out;
210 return Out;
224 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) { argument
243 Out->os() << "identifier: " << Lexer.getTok().getString();
246 Out->os() << "int: " << Lexer.getTok().getString();
249 Out->os() << "real: " << Lexer.getTok().getString();
252 Out->os() << "register: " << Lexer.getTok().getRegVal();
255 Out->os() << "string: " << Lexer.getTok().getString();
258 case AsmToken::Amp: Out
[all...]
H A DDisassembler.cpp57 SourceMgr &SM, raw_ostream &Out,
149 raw_ostream &Out) {
168 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer);
186 raw_ostream &Out = *(raw_ostream *)((void **)Arg)[1]; local
189 Out << "[" << regName << "/" << R << "]";
192 Out << "(sp)";
194 Out << "(pc)";
203 raw_ostream &Out) {
267 Out << '[';
271 Out << operandInde
55 PrintInsts(const MCDisassembler &DisAsm, const ByteArrayTy &Bytes, SourceMgr &SM, raw_ostream &Out, MCStreamer &Streamer) argument
143 disassemble(const Target &T, const std::string &Triple, MCSubtargetInfo &STI, MCStreamer &Streamer, MemoryBuffer &Buffer, SourceMgr &SM, raw_ostream &Out) argument
200 disassembleEnhanced(const std::string &TS, MemoryBuffer &Buffer, SourceMgr &SM, raw_ostream &Out) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs48 Console.Out.WriteLine("enterRule " + ruleName);
51 Console.Out.WriteLine("exitRule " + ruleName);
54 Console.Out.WriteLine("enterSubRule");
57 Console.Out.WriteLine("exitSubRule");
60 Console.Out.WriteLine("location " + line + ":" + pos);
69 Console.Out.WriteLine("consumeNode " + ID + " " + text + " " + type);
76 Console.Out.WriteLine("LT " + i + " " + ID + " " + text + " " + type);
85 Console.Out.WriteLine("nilNode " + adaptor.GetUniqueID(t));
92 Console.Out.WriteLine("create " + ID + ": " + text + ", " + type);
99 Console.Out
[all...]
H A DTracer.cs62 Console.Out.Write(" ");
64 Console.Out.WriteLine("> " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(1));
73 Console.Out.Write(" ");
75 Console.Out.WriteLine("< " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(1));
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTraceDebugEventListener.cs52 Console.Out.WriteLine( "enterRule " + ruleName );
56 Console.Out.WriteLine( "exitRule " + ruleName );
60 Console.Out.WriteLine( "enterSubRule" );
64 Console.Out.WriteLine( "exitSubRule" );
68 Console.Out.WriteLine( "location " + line + ":" + pos );
78 Console.Out.WriteLine( "consumeNode " + ID + " " + text + " " + type );
86 Console.Out.WriteLine( "LT " + i + " " + ID + " " + text + " " + type );
96 Console.Out.WriteLine( "nilNode " + adaptor.GetUniqueID( t ) );
104 Console.Out.WriteLine( "create " + ID + ": " + text + ", " + type );
112 Console.Out
[all...]
H A DTracer.cs59 Console.Out.Write( " " );
61 Console.Out.WriteLine( "> " + ruleName + " lookahead(1)=" + GetInputSymbol( 1 ) );
70 Console.Out.Write( " " );
72 Console.Out.WriteLine( "< " + ruleName + " lookahead(1)=" + GetInputSymbol( 1 ) );
/external/clang/lib/Basic/
H A DVersionTuple.cpp22 llvm::raw_string_ostream Out(Result);
23 Out << *this;
28 raw_ostream& clang::operator<<(raw_ostream &Out, argument
30 Out << V.getMajor();
32 Out << '.' << *Minor;
34 Out << '.' << *Subminor;
35 return Out;
/external/llvm/utils/FileUpdate/
H A DFileUpdate.cpp55 OwningPtr<MemoryBuffer> Out; local
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
61 Out->getBufferSize()) == 0) {
/external/clang/tools/libclang/
H A DCIndexUSRs.cpp35 llvm::raw_svector_ostream Out; member in class:__anon4842::USRGenerator
46 Out(Buf),
52 Out << "c:";
56 return Out.str();
63 Out << x;
64 return Out;
146 Out.flush();
148 D->printName(Out);
149 Out.flush();
176 Out << (is
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_fractional.c44 void WebRtcSpl_Resample48khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
66 Out[0] = tmp;
77 Out[1] = tmp;
81 Out += 2;
90 void WebRtcSpl_Resample32khzTo24khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
112 Out[0] = tmp;
123 Out[1] = tmp;
134 Out[2] = tmp;
138 Out += 3;
199 void WebRtcSpl_Resample44khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
[all...]

Completed in 382 milliseconds

12345678