/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontPlatformData.h | 34 #if OS(WINDOWS) 36 #elif OS(LINUX) || OS(FREEBSD)
|
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
MipsReginfo.cpp | 43 MipsReginfo::emitMipsReginfoSectionCG(MCStreamer &OS, 48 if (OS.hasRawTextSupport()) 53 OS.SwitchSection(TLOFELF.getReginfoSection()); 57 OS.EmitIntValue(0, 4); // ri_gprmask 58 OS.EmitIntValue(0, 4); // ri_cpr[0]mask 59 OS.EmitIntValue(0, 4); // ri_cpr[1]mask 60 OS.EmitIntValue(0, 4); // ri_cpr[2]mask 61 OS.EmitIntValue(0, 4); // ri_cpr[3]mask 62 OS.EmitIntValue(0, 4); // ri_gp_value 66 OS.EmitIntValue(1, 1); // kin [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 << "Inst:(" << *getInst() << ")"; 31 OS << "UNDEFINED"; 32 OS << ">"; 42 void MCInst::print(raw_ostream &OS, const MCAsmInfo *MAI) const [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/utils/TableGen/ |
TableGenBackends.h | 19 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ ) 40 // that involved a class and an invocation like `FooEmitter(RK).run(OS)`. 63 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false); 64 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS); 65 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS); 66 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS); 67 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS); 68 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS); 69 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS); 70 void EmitDisassembler(RecordKeeper &RK, raw_ostream &OS); [all...] |
OptParserEmitter.cpp | 92 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { 93 OS << '"'; 94 OS.write_escaped(Str); 95 OS << '"'; 96 return OS; 103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) { 109 emitSourceFileHeader("Option Parsing Definitions", OS); 130 OS << "/////////\n"; 131 OS << "// Prefixes\n\n"; 132 OS << "#ifdef PREFIX\n" [all...] |
InstrInfoEmitter.cpp | 42 void run(raw_ostream &OS); 45 void emitEnums(raw_ostream &OS); 52 raw_ostream &OS); 55 void EmitOperandInfo(raw_ostream &OS, OperandInfoMapTy &OperandInfoIDs); 61 unsigned Num, raw_ostream &OS) { 62 OS << "static const uint16_t ImplicitList" << Num << "[] = { "; 64 OS << getQualifiedName(Uses[i]) << ", "; 65 OS << "0 };\n"; 157 void InstrInfoEmitter::EmitOperandInfo(raw_ostream &OS, 163 OS << "\n" [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...] |
IntrinsicEmitter.cpp | 35 void run(raw_ostream &OS); 37 void EmitPrefix(raw_ostream &OS); 40 raw_ostream &OS); 43 raw_ostream &OS); 45 raw_ostream &OS); 47 raw_ostream &OS); 49 raw_ostream &OS); 51 raw_ostream &OS); 53 raw_ostream &OS); 55 raw_ostream &OS); [all...] |
RegisterInfoEmitter.cpp | 61 void EmitRegClasses(raw_ostream &OS, CodeGenTarget &Target); 63 void EmitRegUnitPressure(raw_ostream &OS, const CodeGenRegBank &RegBank, 65 void emitComposeSubRegIndices(raw_ostream &OS, CodeGenRegBank &RegBank, 71 void RegisterInfoEmitter::runEnums(raw_ostream &OS, 80 emitSourceFileHeader("Target Register Enum Values", OS); 82 OS << "\n#ifdef GET_REGINFO_ENUM\n"; 83 OS << "#undef GET_REGINFO_ENUM\n"; 85 OS << "namespace llvm {\n\n"; 87 OS << "class MCRegisterClass;\n" 92 OS << "namespace " << Namespace << " {\n" [all...] |
/external/clang/utils/TableGen/ |
ClangAttrEmitter.cpp | 115 virtual void writeAccessors(raw_ostream &OS) const = 0; 116 virtual void writeAccessorDefinitions(raw_ostream &OS) const {} 117 virtual void writeCloneArgs(raw_ostream &OS) const = 0; 118 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0; 119 virtual void writeTemplateInstantiation(raw_ostream &OS) const {} 120 virtual void writeCtorBody(raw_ostream &OS) const {} 121 virtual void writeCtorInitializers(raw_ostream &OS) const = 0; 122 virtual void writeCtorParameters(raw_ostream &OS) const = 0; 123 virtual void writeDeclarations(raw_ostream &OS) const = 0; 124 virtual void writePCHReadArgs(raw_ostream &OS) const = 0 [all...] |
TableGenBackends.h | 28 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS); 29 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS, 32 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS); 33 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS); 34 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS); 35 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS); 36 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS); 37 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS); 38 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS); 39 void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS); [all...] |
OptParserEmitter.cpp | 92 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { 93 OS << '"'; 94 OS.write_escaped(Str); 95 OS << '"'; 96 return OS; 103 void EmitOptParser(RecordKeeper &Records, raw_ostream &OS, bool GenDefs) { 110 emitSourceFileHeader("Option Parsing Definitions", OS); 112 emitSourceFileHeader("Option Parsing Table", OS); 132 OS << "#ifndef PREFIX\n"; 133 OS << "#error \"Define PREFIX prior to including this file!\"\n" [all...] |
ClangCommentHTMLTagsEmitter.cpp | 23 void EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { 33 emitSourceFileHeader("HTML tag name matcher", OS); 35 OS << "bool isHTMLTagName(StringRef Name) {\n"; 36 StringMatcher("Name", Matches, OS).Emit(); 37 OS << " return false;\n" 42 raw_ostream &OS) { 57 emitSourceFileHeader("HTML tag properties", OS); 59 OS << "bool isHTMLEndTagOptional(StringRef Name) {\n"; 60 StringMatcher("Name", MatchesEndTagOptional, OS).Emit(); 61 OS << " return false;\n [all...] |
/external/llvm/lib/Support/ |
BranchProbability.cpp | 21 void BranchProbability::print(raw_ostream &OS) const { 22 OS << N << " / " << D << " = " << format("%g%%", ((double)N / D) * 100.0); 31 raw_ostream &operator<<(raw_ostream &OS, const BranchProbability &Prob) { 32 Prob.print(OS); 33 return OS;
|
Twine.cpp | 27 raw_svector_ostream OS(Out); 28 print(OS); 58 void Twine::printOneChild(raw_ostream &OS, Child Ptr, 64 Ptr.twine->print(OS); 67 OS << Ptr.cString; 70 OS << *Ptr.stdString; 73 OS << *Ptr.stringRef; 76 OS << Ptr.character; 79 OS << Ptr.decUI; 82 OS << Ptr.decI [all...] |
raw_os_ostream.cpp | 27 OS.write(Ptr, Size); 30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); }
|
/external/webkit/Source/WebCore/platform/chromium/ |
DragImageRef.h | 32 #if OS(DARWIN) 40 #if OS(DARWIN)
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64MCExpr.cpp | 30 void AArch64MCExpr::PrintImpl(raw_ostream &OS) const { 33 case VK_AARCH64_GOT: OS << ":got:"; break; 34 case VK_AARCH64_GOT_LO12: OS << ":got_lo12:"; break; 35 case VK_AARCH64_LO12: OS << ":lo12:"; break; 36 case VK_AARCH64_ABS_G0: OS << ":abs_g0:"; break; 37 case VK_AARCH64_ABS_G0_NC: OS << ":abs_g0_nc:"; break; 38 case VK_AARCH64_ABS_G1: OS << ":abs_g1:"; break; 39 case VK_AARCH64_ABS_G1_NC: OS << ":abs_g1_nc:"; break; 40 case VK_AARCH64_ABS_G2: OS << ":abs_g2:"; break; 41 case VK_AARCH64_ABS_G2_NC: OS << ":abs_g2_nc:"; break [all...] |
/external/clang/lib/AST/ |
TypePrinter.cpp | 89 void print(const Type *ty, Qualifiers qs, raw_ostream &OS, 91 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder); 94 void spaceBeforePlaceHolder(raw_ostream &OS); 95 void printTypeSpec(const NamedDecl *D, raw_ostream &OS); 97 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS); 98 void printBefore(QualType T, raw_ostream &OS); 99 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS); 100 void printAfter(QualType T, raw_ostream &OS); 101 void AppendScope(DeclContext *DC, raw_ostream &OS); 102 void printTag(TagDecl *T, raw_ostream &OS); [all...] |
StmtPrinter.cpp | 35 raw_ostream &OS; 41 StmtPrinter(raw_ostream &os, PrinterHelper* helper, 44 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {} 56 OS << ";\n"; 78 OS << "<null expr>"; 83 OS << " "; 84 return OS; 88 if (Helper && Helper->handledStmt(S,OS)) 97 OS << "<<unknown expr type>>" [all...] |
/external/llvm/lib/TableGen/ |
TableGenBackend.cpp | 23 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, 25 size_t Pos = (size_t)OS.tell(); 28 OS << Prefix; 30 for (size_t i = (size_t)OS.tell() - Pos; i < e; ++i) 31 OS << Fill; 32 OS << Suffix << '\n'; 35 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { 36 printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\"); 37 printLine(OS, "|*", ' ', "*|"); 47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix) [all...] |