/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontPlatformData.h | 34 #if OS(WINDOWS) 36 #elif OS(LINUX) || OS(FREEBSD)
|
/external/llvm/utils/TableGen/ |
TableGenBackend.cpp | 19 raw_ostream &OS) const { 20 OS << "//===- TableGen'erated file -------------------------------------*-"
|
OptParserEmitter.cpp | 65 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { 66 OS << '"'; 67 OS.write_escaped(Str); 68 OS << '"'; 69 return OS; 72 void OptParserEmitter::run(raw_ostream &OS) { 79 EmitSourceFileHeader("Option Parsing Definitions", OS); 81 EmitSourceFileHeader("Option Parsing Table", OS); 85 OS << "#ifndef OPTION\n"; 86 OS << "#error \"Define OPTION prior to including this file!\"\n" [all...] |
InstrEnumEmitter.cpp | 22 void InstrEnumEmitter::run(raw_ostream &OS) { 23 EmitSourceFileHeader("Target Instruction Enum Values", OS); 24 OS << "namespace llvm {\n\n"; 39 OS << "namespace " << Namespace << " {\n"; 40 OS << " enum {\n"; 42 OS << " " << NumberedInstructions[i]->TheDef->getName() 45 OS << " INSTRUCTION_LIST_END = " << NumberedInstructions.size() << "\n"; 46 OS << " };\n}\n"; 47 OS << "} // End llvm namespace \n";
|
IntrinsicEmitter.cpp | 26 void IntrinsicEmitter::run(raw_ostream &OS) { 27 EmitSourceFileHeader("Intrinsic Function Source Fragment", OS); 34 EmitPrefix(OS); 37 EmitEnumInfo(Ints, OS); 40 EmitIntrinsicToNameTable(Ints, OS); 43 EmitIntrinsicToOverloadTable(Ints, OS); 46 EmitFnNameRecognizer(Ints, OS); 49 EmitVerifier(Ints, OS); 52 EmitGenerator(Ints, OS); 55 EmitAttributes(Ints, OS); [all...] |
ClangAttrEmitter.cpp | 86 virtual void writeAccessors(raw_ostream &OS) const = 0; 87 virtual void writeAccessorDefinitions(raw_ostream &OS) const {} 88 virtual void writeCloneArgs(raw_ostream &OS) const = 0; 89 virtual void writeCtorBody(raw_ostream &OS) const {} 90 virtual void writeCtorInitializers(raw_ostream &OS) const = 0; 91 virtual void writeCtorParameters(raw_ostream &OS) const = 0; 92 virtual void writeDeclarations(raw_ostream &OS) const = 0; 93 virtual void writePCHReadArgs(raw_ostream &OS) const = 0; 94 virtual void writePCHReadDecls(raw_ostream &OS) const = 0; 95 virtual void writePCHWrite(raw_ostream &OS) const = 0 [all...] |
InstrInfoEmitter.cpp | 23 unsigned Num, raw_ostream &OS) { 24 OS << "static const unsigned ImplicitList" << Num << "[] = { "; 26 OS << getQualifiedName(Uses[i]) << ", "; 27 OS << "0 };\n"; 136 void InstrInfoEmitter::EmitOperandInfo(raw_ostream &OS, 142 OS << "\n"; 151 OS << "static const MCOperandInfo OperandInfo" << N << "[] = { "; 153 OS << "{ " << OperandInfo[i] << " }, "; 154 OS << "};\n"; 163 void InstrInfoEmitter::run(raw_ostream &OS) { [all...] |
ClangASTNodesEmitter.cpp | 26 raw_ostream &OS, 43 OS << "#ifndef " << NodeName << "\n"; 44 OS << "# define " << NodeName << "(Type, Base) " 46 OS << "#endif\n"; 49 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "(" 52 OS << NodeName << "(" << R->getName() << ", " 57 = EmitNode(Tree, OS, R); 71 OS << "#undef " << NodeName << "\n\n"; 77 OS << "LAST_" << macroName(Root.getName()) << "_RANGE("; 79 OS << macroName(Root.getName()) << "_RANGE(" [all...] |
DAGISelMatcherEmitter.cpp | 55 unsigned StartIdx, formatted_raw_ostream &OS); 57 void EmitPredicateFunctions(formatted_raw_ostream &OS); 59 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS); 62 formatted_raw_ostream &OS); 115 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { 117 OS << Val << ", "; 124 OS << (Val&127) << "|128,"; 128 OS << Val; 130 OS << "/*" << InVal << "*/"; 131 OS << ", "; [all...] |
RegisterInfoEmitter.cpp | 29 RegisterInfoEmitter::runEnums(raw_ostream &OS, 35 EmitSourceFileHeader("Target Register Enum Values", OS); 37 OS << "\n#ifdef GET_REGINFO_ENUM\n"; 38 OS << "#undef GET_REGINFO_ENUM\n"; 40 OS << "namespace llvm {\n\n"; 43 OS << "namespace " << Namespace << " {\n"; 44 OS << "enum {\n NoRegister,\n"; 47 OS << " " << Registers[i]->getName() << " = " << 51 OS << " NUM_TARGET_REGS \t// " << Registers.size()+1 << "\n"; 52 OS << "};\n" [all...] |
/external/llvm/lib/MC/ |
MCValue.cpp | 17 void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { 19 OS << getConstant(); 23 getSymA()->print(OS); 26 OS << " - "; 27 getSymB()->print(OS); 31 OS << " + " << getConstant();
|
MCSectionELF.cpp | 35 raw_ostream &OS) const { 38 OS << '\t' << getSectionName() << '\n'; 46 OS << "\t.section\t" << name; 48 OS << "\t.section\t\""; 51 OS << "\\\""; 53 OS << *b; 55 OS << "\\\\"; 57 OS << b[0] << b[1]; // Quoted character 61 OS << '"'; 68 OS << ",#alloc" [all...] |
MCInst.cpp | 18 void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const { 19 OS << "<MCOperand "; 21 OS << "INVALID"; 23 OS << "Reg:" << getReg(); 25 OS << "Imm:" << getImm(); 27 OS << "Expr:(" << *getExpr() << ")"; 29 OS << "UNDEFINED"; 30 OS << ">"; 38 void MCInst::print(raw_ostream &OS, const MCAsmInfo *MAI) const { 39 OS << "<MCInst " << getOpcode() [all...] |
MCSectionCOFF.cpp | 32 raw_ostream &OS) const { 36 OS << '\t' << getSectionName() << '\n'; 40 OS << "\t.section\t" << getSectionName() << ",\""; 42 OS << 'x'; 44 OS << 'w'; 46 OS << 'r'; 48 OS << 'n'; 49 OS << "\"\n"; 54 OS << "\t.linkonce one_only\n"; 57 OS << "\t.linkonce discard\n" [all...] |
MCLabel.cpp | 15 void MCLabel::print(raw_ostream &OS) const { 16 OS << '"' << getInstance() << '"';
|
/external/llvm/lib/Target/Mips/ |
MipsMCSymbolRefExpr.cpp | 23 void MipsMCSymbolRefExpr::PrintImpl(raw_ostream &OS) const { 27 case VK_Mips_GPREL: OS << "%gp_rel("; break; 28 case VK_Mips_GOT_CALL: OS << "%call16("; break; 29 case VK_Mips_GOT: OS << "%got("; break; 30 case VK_Mips_ABS_HI: OS << "%hi("; break; 31 case VK_Mips_ABS_LO: OS << "%lo("; break; 32 case VK_Mips_TLSGD: OS << "%tlsgd("; break; 33 case VK_Mips_GOTTPREL: OS << "%gottprel("; break; 34 case VK_Mips_TPREL_HI: OS << "%tprel_hi("; break; 35 case VK_Mips_TPREL_LO: OS << "%tprel_lo("; break [all...] |
/external/webkit/Source/WebCore/platform/chromium/ |
DragImageRef.h | 32 #if OS(DARWIN) 40 #if OS(DARWIN)
|
/external/llvm/include/llvm/MC/ |
MCLabel.h | 43 /// print - Print the value to the stream \arg OS. 44 void print(raw_ostream &OS) const; 50 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { 51 Label.print(OS); 52 return OS;
|
/external/llvm/include/llvm/MC/MCParser/ |
MCParsedAsmOperand.h | 32 virtual void print(raw_ostream &OS) const = 0; 40 inline raw_ostream& operator<<(raw_ostream &OS, const MCParsedAsmOperand &MO) { 41 MO.print(OS); 42 return OS;
|
/external/llvm/include/llvm/Assembly/ |
AssemblyAnnotationWriter.h | 36 formatted_raw_ostream &OS) {} 42 formatted_raw_ostream &OS) { 48 formatted_raw_ostream &OS) { 54 formatted_raw_ostream &OS) {} 58 virtual void printInfoComment(const Value &V, formatted_raw_ostream &OS) {}
|
/external/llvm/lib/Support/ |
Twine.cpp | 27 raw_svector_ostream OS(Out); 28 print(OS); 58 void Twine::printOneChild(raw_ostream &OS, const void *Ptr, 64 static_cast<const Twine*>(Ptr)->print(OS); 67 OS << static_cast<const char*>(Ptr); 70 OS << *static_cast<const std::string*>(Ptr); 73 OS << *static_cast<const StringRef*>(Ptr); 76 OS << (unsigned)(uintptr_t)Ptr; 79 OS << (int)(intptr_t)Ptr; 82 OS << *static_cast<const unsigned long*>(Ptr) [all...] |
BranchProbability.cpp | 27 raw_ostream &BranchProbability::print(raw_ostream &OS) const { 28 OS << N << " / " << D << " = " << ((double)N / D); 29 return OS; 39 raw_ostream &operator<<(raw_ostream &OS, const BranchProbability &Prob) { 40 Prob.print(OS); 41 return OS;
|
/external/clang/lib/AST/ |
StmtPrinter.cpp | 31 llvm::raw_ostream &OS; 38 StmtPrinter(llvm::raw_ostream &os, ASTContext &C, PrinterHelper* helper, 41 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper), 54 OS << ";\n"; 76 OS << "<null expr>"; 81 OS << " "; 82 return OS; 86 if (Helper && Helper->handledStmt(S,OS)) 95 OS << "<<unknown expr type>>" [all...] |
/external/clang/lib/Basic/ |
Version.cpp | 62 llvm::raw_string_ostream OS(buf); 66 OS << Path; 69 OS << ' '; 70 OS << Revision; 72 return OS.str(); 77 llvm::raw_string_ostream OS(buf); 79 OS << CLANG_VENDOR; 81 OS << "clang version " CLANG_VERSION_STRING " (" 86 OS << " (based on LLVM " << PACKAGE_VERSION << ")"; 89 return OS.str() [all...] |
/external/llvm/lib/CodeGen/ |
MachineFunctionPrinterPass.cpp | 28 raw_ostream &OS; 31 MachineFunctionPrinterPass(raw_ostream &os, const std::string &banner) 32 : MachineFunctionPass(ID), OS(os), Banner(banner) {} 42 OS << "# " << Banner << ":\n"; 43 MF.print(OS); 55 MachineFunctionPass *createMachineFunctionPrinterPass(raw_ostream &OS, 57 return new MachineFunctionPrinterPass(OS, Banner);
|