/external/clang/include/clang/Basic/ |
MacroBuilder.h | 25 raw_ostream &Out; 27 MacroBuilder(raw_ostream &Output) : Out(Output) {} 31 Out << "#define " << Name << ' ' << Value << '\n'; 37 Out << "#undef " << Name << '\n'; 42 Out << Str << '\n';
|
/external/llvm/lib/Target/CppBackend/ |
CPPBackend.cpp | 93 formatted_raw_ostream &Out; 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); 128 inline void out() { if (indent_level >0) indent_level--; } function in class:__anon21989::CppWriter 165 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) { 166 Out << '\n'; 169 Out.indent(indent_level); 170 return Out; 220 Out << "ConstantFP::get(mod->getContext(), "; 221 Out << "APFloat(" [all...] |
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 39 ASTPrinter(raw_ostream *Out = NULL, bool Dump = false, 41 : Out(Out ? *Out : llvm::outs()), Dump(Dump), 57 bool ShowColors = Out.has_colors(); 59 Out.changeColor(raw_ostream::BLUE); 60 Out << (Dump ? "Dumping " : "Printing ") << getName(D) << ":\n"; 62 Out.resetColor(); 64 Out << "\n"; 83 DC->dumpLookups(Out); [all...] |
/external/llvm/tools/yaml2obj/ |
yaml2obj.h | 19 int yaml2coff(llvm::raw_ostream &Out, llvm::MemoryBuffer *Buf); 20 int yaml2elf(llvm::raw_ostream &Out, llvm::MemoryBuffer *Buf);
|
/external/clang/lib/AST/ |
DeclPrinter.cpp | 11 // AST back out to C/Objective-C/C++/Objective-C++ code. 29 raw_ostream &Out; 41 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy, 43 : Out(Out), Policy(Policy), Indentation(Indentation), 93 void Decl::print(raw_ostream &Out, unsigned Indentation, 95 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation); 98 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy, 100 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation); 137 raw_ostream &Out, const PrintingPolicy &Policy [all...] |
Mangle.cpp | 40 raw_ostream &Out) { 43 Out << "__" << Outer << "_block_invoke"; 45 Out << "__" << Outer << "_block_invoke_" << discriminator+1; 52 raw_ostream &Out) { 56 mangleName(ID, Out); 58 Out << ID->getIdentifier()->getName(); 62 Out << "_block_invoke"; 64 Out << "_block_invoke_" << discriminator+1; 71 llvm::raw_svector_ostream Out(Buffer); 72 mangleCXXCtor(CD, CT, Out); [all...] |
InheritViz.cpp | 30 /// InheritanceHierarchyWriter - Helper class that writes out a 38 raw_ostream &Out; 43 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) 44 : Context(Context), Out(Out) { } 47 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n"; 49 Out << "}\n"; 53 /// WriteNode - Write out the description of node in the inheritance 57 /// WriteNodeReference - Write out a reference to the given node, 76 Out << " "; [all...] |
ItaniumMangle.cpp | 144 raw_ostream &Out); 197 raw_ostream &Out; 254 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(0), 262 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type), 266 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type), 271 if (Out.str()[0] == '\01') 275 char *result = abi::__cxa_demangle(Out.str().str().c_str(), 0, 0, &status); 280 raw_ostream &getStream() { return Out; } 458 Out << '\01'; // LLVM IR Marker for __asm("foo") 460 Out << ALA->getLabel() [all...] |
MicrosoftMangle.cpp | 43 raw_ostream &Out; 68 : Context(C), Out(Out_), 76 : Context(C), Out(Out_), 82 raw_ostream &getStream() const { return Out; } 148 virtual void mangleName(const NamedDecl *D, raw_ostream &Out); 161 raw_ostream &Out); 236 Out << '\01' << ALA->getLabel(); 241 Out << Prefix; 304 case AS_private: Out << '0'; break; 305 case AS_protected: Out << '1'; break [all...] |
StmtViz.cpp | 39 llvm::raw_string_ostream Out(OutSStr); 42 Out << Node->getStmtClassName(); 44 Out << "<NULL>"; 46 std::string OutStr = Out.str();
|
APValue.cpp | 343 void APValue::printPretty(raw_ostream &Out, ASTContext &Ctx, QualType Ty) const{ 346 Out << "<uninitialized>"; 350 Out << (getInt().getBoolValue() ? "true" : "false"); 352 Out << getInt(); 355 Out << GetApproxValue(getFloat()); 358 Out << '{'; 360 getVectorElt(0).printPretty(Out, Ctx, ElemTy); 362 Out << ", "; 363 getVectorElt(i).printPretty(Out, Ctx, ElemTy); 365 Out << '}'; [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.replace/ |
test1.pass.cpp | 15 // regex_replace(OutputIterator out, 32 typedef output_iterator<char*> Out; 35 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)), 44 typedef output_iterator<char*> Out; 47 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)), 57 typedef output_iterator<char*> Out; 60 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)) [all...] |
test2.pass.cpp | 15 // regex_replace(OutputIterator out, 32 typedef output_iterator<char*> Out; 35 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)), 44 typedef output_iterator<char*> Out; 47 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)), 57 typedef output_iterator<char*> Out; 60 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)) [all...] |
/external/llvm/lib/IR/ |
AsmWriter.cpp | 72 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { 74 default: Out << "cc" << cc; break; 75 case CallingConv::Fast: Out << "fastcc"; break; 76 case CallingConv::Cold: Out << "coldcc"; break; 77 case CallingConv::X86_StdCall: Out << "x86_stdcallcc"; break; 78 case CallingConv::X86_FastCall: Out << "x86_fastcallcc"; break; 79 case CallingConv::X86_ThisCall: Out << "x86_thiscallcc"; break; 80 case CallingConv::Intel_OCL_BI: Out << "intel_ocl_bicc"; break; 81 case CallingConv::ARM_APCS: Out << "arm_apcscc"; break; 82 case CallingConv::ARM_AAPCS: Out << "arm_aapcscc"; break [all...] |
PrintModulePass.cpp | 26 raw_ostream *Out; // raw_ostream to print on 30 PrintModulePass() : ModulePass(ID), Out(&dbgs()), 33 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {} 36 if (DeleteStream) delete Out; 40 (*Out) << Banner << M; 51 raw_ostream *Out; // raw_ostream to print on 55 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()), 58 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {} 61 if (DeleteStream) delete Out; 68 (*Out) << Banner << static_cast<Value&>(F) [all...] |
/external/llvm/tools/obj2yaml/ |
obj2yaml.h | 20 llvm::error_code coff2yaml(llvm::raw_ostream &Out, llvm::MemoryBuffer *TheObj);
|
/external/llvm/lib/Target/Mips/ |
Mips16HardFloat.cpp | 45 void Out(StringRef AsmString) { 146 // Figure out if we need float point based on the function parameters. 147 // We need to move variables in and/or out of floating point 185 IAH.Out(MI + "$$4,$$f12"); 188 IAH.Out(MI +"$$4,$$f12"); 189 IAH.Out(MI + "$$5,$$f14"); 192 IAH.Out(MI + "$$4,$$f12"); 194 IAH.Out(MI + "$$6,$$f14"); 195 IAH.Out(MI + "$$7,$$f15"); 197 IAH.Out(MI + "$$7,$$f14") [all...] |
/external/llvm/tools/llvm-mc/ |
llvm-mc.cpp | 189 // Figure out the target triple. 213 tool_output_file *Out = 217 delete Out; 221 return Out; 242 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) { 261 Out->os() << "identifier: " << Lexer.getTok().getString(); 264 Out->os() << "int: " << Lexer.getTok().getString(); 267 Out->os() << "real: " << Lexer.getTok().getString(); 270 Out->os() << "string: " << Lexer.getTok().getString(); 273 case AsmToken::Amp: Out->os() << "Amp"; break [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
TraceDebugEventListener.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 39 /** <summary>Print out (most of) the events... Useful for debugging, testing...</summary> */ 48 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)) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
TraceDebugEventListener.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 40 /** <summary>Print out (most of) the events... Useful for debugging, testing...</summary> */ 52 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 ) ) [all...] |
Tracer.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 59 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/ |
VersionTuple.cpp | 22 llvm::raw_string_ostream Out(Result); 23 Out << *this; 28 raw_ostream& clang::operator<<(raw_ostream &Out, 30 Out << V.getMajor(); 32 Out << '.' << *Minor; 34 Out << '.' << *Subminor; 35 return Out;
|
/external/llvm/utils/FileUpdate/ |
FileUpdate.cpp | 55 OwningPtr<MemoryBuffer> Out; 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/ |
CIndexUSRs.cpp | 34 llvm::raw_svector_ostream Out; 45 Out(Buf), 51 Out << "c:"; 55 return Out.str(); 62 Out << x; 63 return Out; 145 Out.flush(); 147 D->printName(Out); 148 Out.flush(); 169 Out << (isa<ObjCIvarDecl>(D) ? "@" : "@FI@") [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
resample_fractional.c | 44 void WebRtcSpl_Resample48khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, 66 Out[0] = tmp; 77 Out[1] = tmp; 81 Out += 2; 90 void WebRtcSpl_Resample32khzTo24khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, 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, [all...] |