HomeSort by relevance Sort by last modified time
    Searched refs:OS (Results 76 - 100 of 1561) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp 23 raw_ostream &OS; // raw_ostream to print on
28 : ModulePass(ID), OS(o) {}
34 llvm_2_9::WriteBitcodeToFile(&M, OS);
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp 23 raw_ostream &OS; // raw_ostream to print on
28 : ModulePass(ID), OS(o) {}
34 llvm_2_9_func::WriteBitcodeToFile(&M, OS);
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriterPass.cpp 23 raw_ostream &OS; // raw_ostream to print on
28 : ModulePass(ID), OS(o) {}
34 llvm_3_2::WriteBitcodeToFile(&M, OS);
  /external/llvm/include/llvm/IR/
Comdat.h 45 void print(raw_ostream &OS, bool IsForDebug = false) const;
59 inline raw_ostream &operator<<(raw_ostream &OS, const Comdat &C) {
60 C.print(OS);
61 return OS;
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 42 /// Write the profile to \c OS
43 void write(raw_fd_ostream &OS);
44 /// Write the profile in text format to \c OS
45 void writeText(raw_fd_ostream &OS);
46 /// Write \c Record in text format to \c OS
48 InstrProfSymtab &Symtab, raw_fd_ostream &OS);
56 std::pair<uint64_t, uint64_t> writeImpl(raw_ostream &OS);
  /external/llvm/include/llvm/TableGen/
Main.h 21 /// \brief Perform the action using Records, and write output to OS.
23 typedef bool TableGenMainFn(raw_ostream &OS, RecordKeeper &Records);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFTypeUnit.cpp 25 void DWARFTypeUnit::dump(raw_ostream &OS) {
26 OS << format("0x%08x", getOffset()) << ": Type Unit:"
37 TU->dump(OS, this, -1U);
39 OS << "<type unit can't be parsed!>\n\n";
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.h 22 raw_pwrite_stream &OS,
  /external/llvm/lib/Target/NVPTX/
NVPTXMCExpr.cpp 23 void NVPTXFloatMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const {
31 OS << "0f";
36 OS << "0d";
45 OS << std::string(NumHex - HexStr.length(), '0');
46 OS << utohexstr(API.getZExtValue());
55 void NVPTXGenericMCSymbolRefExpr::printImpl(raw_ostream &OS,
57 OS << "generic(";
58 SymExpr->print(OS, MAI);
59 OS << ")";
  /external/llvm/lib/Target/X86/InstPrinter/
X86InstComments.h 21 bool EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS,
  /external/llvm/tools/llvm-cov/
CoverageReport.h 27 void render(const FileCoverageSummary &File, raw_ostream &OS);
28 void render(const FunctionCoverageSummary &Function, raw_ostream &OS);
35 void renderFunctionReports(ArrayRef<std::string> Files, raw_ostream &OS);
37 void renderFileReports(raw_ostream &OS);
SourceCoverageView.cpp 23 raw_ostream &OS, StringRef Line, int64_t LineNumber,
38 colored_ostream(OS, Highlight ? *Highlight : raw_ostream::SAVEDCOLOR,
53 colored_ostream(OS, Highlight ? *Highlight : raw_ostream::SAVEDCOLOR,
56 OS << "\n";
67 void SourceCoverageView::renderIndent(raw_ostream &OS, unsigned Level) {
69 OS << " |";
73 raw_ostream &OS) {
75 renderIndent(OS, Level - 1);
76 OS.indent(2);
78 OS << "-"
    [all...]
  /external/valgrind/include/
pub_tool_vki.h 56 # error Unknown Plat/OS
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
strip-10.d 8 OS/ABI:[ \t]+UNIX - GNU
10 +[0-9]+: +[0-9a-f]+ +[0-9]+ +OBJECT +(UNIQUE|<OS specific>: 10) +DEFAULT +[1-9] foo
  /external/clang/lib/AST/
ASTDumper.cpp 96 raw_ostream &OS;
134 OS << "\n";
154 OS << '\n';
156 OS << Prefix << (isLastChild ? '`' : '|') << '-';
193 Dumper.OS.changeColor(Color.Color, Color.Bold);
197 Dumper.OS.resetColor();
202 ASTDumper(raw_ostream &OS, const CommandTraits *Traits,
204 : OS(OS), Traits(Traits), SM(SM), TopLevel(true), FirstChild(true),
208 ASTDumper(raw_ostream &OS, const CommandTraits *Traits
    [all...]
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCExpr.cpp 33 void SparcMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const {
35 bool closeParen = printVariantKind(OS, Kind);
38 Expr->print(OS, MAI);
41 OS << ')';
44 bool SparcMCExpr::printVariantKind(raw_ostream &OS, VariantKind Kind)
49 case VK_Sparc_LO: OS << "%lo("; break;
50 case VK_Sparc_HI: OS << "%hi("; break;
51 case VK_Sparc_H44: OS << "%h44("; break;
52 case VK_Sparc_M44: OS << "%m44("; break;
53 case VK_Sparc_L44: OS << "%l44("; break
    [all...]
  /external/llvm/utils/TableGen/
CodeGenMapTable.cpp 222 void emitBinSearch(raw_ostream &OS, unsigned TableSize);
223 void emitTablesWithFunc(raw_ostream &OS);
224 unsigned emitBinSearchTable(raw_ostream &OS);
227 void emitMapFuncBody(raw_ostream &OS, unsigned TableSize);
356 unsigned MapTableEmitter::emitBinSearchTable(raw_ostream &OS) {
366 OS << "static const uint16_t "<<InstrMapDesc.getName();
369 OS << "Table[]["<< NumCol+1 << "] = {\n";
387 OS << " { " << TargetName << "::" << CurInstr->getName();
388 OS << OutStr <<" },\n";
394 OS << " { " << TargetName << "::" << "INSTRUCTION_LIST_END, "
    [all...]
SubtargetEmitter.cpp 67 void Enumeration(raw_ostream &OS, const char *ClassName);
68 unsigned FeatureKeyValues(raw_ostream &OS);
69 unsigned CPUKeyValues(raw_ostream &OS);
78 void EmitStageAndOperandCycleData(raw_ostream &OS,
81 void EmitItineraries(raw_ostream &OS,
84 void EmitProcessorProp(raw_ostream &OS, const Record *R, const char *Name,
87 raw_ostream &OS);
96 void EmitSchedClassTables(SchedClassTables &SchedTables, raw_ostream &OS);
97 void EmitProcessorModels(raw_ostream &OS);
98 void EmitProcessorLookup(raw_ostream &OS);
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIARawSymbol.cpp 125 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name,
130 OS << "\n";
131 OS.indent(Indent);
132 OS << Name << ": " << Value;
136 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name,
146 OS << "\n";
147 OS.indent(Indent);
148 OS << Name << ": " << Result;
153 void DumpDIAValue(llvm::raw_ostream &OS, int Indent, StringRef Name,
160 OS << "\n"
    [all...]
  /external/clang/lib/Driver/
Job.cpp 81 void Command::printArg(raw_ostream &OS, const char *Arg, bool Quote) {
85 OS << Arg;
90 OS << '"';
93 OS << '\\';
94 OS << c;
96 OS << '"';
99 void Command::writeResponseFile(raw_ostream &OS) const {
103 OS << Arg << '\n';
112 OS << '"';
116 OS << '\\';
    [all...]
  /external/clang/lib/Basic/
SourceLocation.cpp 26 void PrettyStackTraceLoc::print(raw_ostream &OS) const {
28 Loc.print(OS, SM);
29 OS << ": ";
31 OS << Message << '\n';
38 void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{
40 OS << "<invalid loc>";
48 OS << "<invalid>";
52 OS << PLoc.getFilename() << ':' << PLoc.getLine()
57 SM.getExpansionLoc(*this).print(OS, SM);
59 OS << " <Spelling="
    [all...]
Module.cpp 233 static void printModuleId(raw_ostream &OS, const ModuleId &Id) {
236 OS << ".";
237 OS << Id[I].first;
321 void Module::print(raw_ostream &OS, unsigned Indent) const {
322 OS.indent(Indent);
324 OS << "framework ";
326 OS << "explicit ";
327 OS << "module " << Name;
330 OS.indent(Indent + 2);
332 OS << " [system]"
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 27 void PPCMCExpr::printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const {
31 case VK_PPC_LO: OS << "lo16"; break;
32 case VK_PPC_HI: OS << "hi16"; break;
33 case VK_PPC_HA: OS << "ha16"; break;
36 OS << '(';
37 getSubExpr()->print(OS, MAI);
38 OS << ')';
40 getSubExpr()->print(OS, MAI);
44 case VK_PPC_LO: OS << "@l"; break;
45 case VK_PPC_HI: OS << "@h"; break
    [all...]
  /external/llvm/tools/llvm-pdbdump/
LinePrinter.cpp 43 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0) {
66 OS << "\n";
67 OS.indent(CurrentIndent);
83 WithColor::WithColor(LinePrinter &P, PDB_ColorItem C) : OS(P.OS) {
87 WithColor::~WithColor() { OS.resetColor(); }
92 OS.resetColor();
95 OS.changeColor(raw_ostream::YELLOW, /*bold=*/true);
98 OS.changeColor(raw_ostream::MAGENTA, true);
102 OS.changeColor(raw_ostream::YELLOW, false)
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 97 llvm::raw_svector_ostream OS(Buf);
98 OS << extractUSRSuffix(clang_getCString(classUSR));
99 generateUSRForObjCIvar(name, OS);
100 return cxstring::createDup(OS.str());
107 llvm::raw_svector_ostream OS(Buf);
108 OS << extractUSRSuffix(clang_getCString(classUSR));
109 generateUSRForObjCMethod(name, isInstanceMethod, OS);
110 return cxstring::createDup(OS.str());
115 llvm::raw_svector_ostream OS(Buf);
116 generateUSRForObjCClass(name, OS);
    [all...]

Completed in 799 milliseconds

1 2 34 5 6 7 8 91011>>