Searched defs:OS (Results 1 - 25 of 245) sorted by relevance

12345678910

/external/dhcpcd/mk/
H A Dos.mk1 # Setup OS specific variables
6 OS= ${_OS}$(shell ${_OS_SH}) macro
7 include ${MK}/os-${OS}.mk
/external/llvm/lib/MC/
H A DMCValue.cpp17 void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const { argument
19 OS << getConstant();
23 getSymA()->print(OS);
26 OS << " - ";
27 getSymB()->print(OS);
31 OS << " + " << getConstant();
H A DMCInst.cpp18 void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const { argument
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, cons argument
51 dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI, const MCInstPrinter *Printer, StringRef Separator) const argument
[all...]
H A DMCInstPrinter.cpp27 void MCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { argument
31 void MCInstPrinter::printAnnotation(raw_ostream &OS, StringRef Annot) { argument
36 OS << " " << MAI.getCommentString() << " " << Annot;
/external/llvm/include/llvm/Support/
H A Draw_os_ostream.h26 std::ostream &OS; member in class:llvm::raw_os_ostream
36 raw_os_ostream(std::ostream &O) : OS(O) {}
H A DToolOutputFile.h42 /// OS - The contained stream. This is intentionally declared after
44 raw_fd_ostream OS; member in class:llvm::tool_output_file
53 raw_fd_ostream &os() { return OS; }
H A DConstantRange.h255 void print(raw_ostream &OS) const;
262 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { argument
263 CR.print(OS);
264 return OS;
H A DLEB128.h23 static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { argument
33 OS << char(Byte);
38 static inline void encodeULEB128(uint64_t Value, raw_ostream &OS, argument
45 OS << char(Byte);
51 OS << '\x80';
52 OS << '\x00';
/external/clang/lib/Rewrite/Frontend/
H A DRewriteTest.cpp19 void clang::DoRewriteTest(Preprocessor &PP, raw_ostream* OS) { argument
38 *OS << PP.getSpelling(*I);
/external/llvm/lib/Support/
H A DBranchProbability.cpp21 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) { argument
32 Prob.print(OS);
33 return OS;
/external/llvm/utils/TableGen/
H A DDisassemblerEmitter.cpp98 extern void EmitFixedLenDecoder(RecordKeeper &RK, raw_ostream &OS,
106 void EmitDisassembler(RecordKeeper &Records, raw_ostream &OS) { argument
108 emitSourceFileHeader(" * " + Target.getName() + " Disassembler", OS);
126 Tables.emit(OS);
133 EmitFixedLenDecoder(Records, OS, "ARM",
141 EmitFixedLenDecoder(Records, OS, Target.getName(),
/external/clang/include/clang/Frontend/
H A DTextDiagnostic.h38 raw_ostream &OS; member in class:clang::TextDiagnostic
41 TextDiagnostic(raw_ostream &OS,
54 static void printDiagnosticLevel(raw_ostream &OS,
66 /// \param OS Where the message is printed
74 static void printDiagnosticMessage(raw_ostream &OS,
H A DTextDiagnosticPrinter.h28 raw_ostream &OS; member in class:clang::TextDiagnosticPrinter
/external/clang/utils/TableGen/
H A DClangCommentCommandInfoEmitter.cpp22 void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) { argument
23 OS << "// This file is generated by TableGen. Do not edit.\n\n";
25 OS << "namespace {\n"
30 OS << " { "
48 OS << ",";
49 OS << "\n";
51 OS << "};\n"
63 OS << "const CommandInfo *CommandTraits::getBuiltinCommandInfo(\n"
65 StringMatcher("Name", Matches, OS).Emit();
66 OS << " retur
[all...]
H A DClangCommentHTMLTagsEmitter.cpp22 void EmitClangCommentHTMLTags(RecordKeeper &Records, raw_ostream &OS) { argument
32 OS << "// This file is generated by TableGen. Do not edit.\n\n";
34 OS << "bool isHTMLTagName(StringRef Name) {\n";
35 StringMatcher("Name", Matches, OS).Emit();
36 OS << " return false;\n"
41 raw_ostream &OS) {
56 OS << "// This file is generated by TableGen. Do not edit.\n\n";
58 OS << "bool isHTMLEndTagOptional(StringRef Name) {\n";
59 StringMatcher("Name", MatchesEndTagOptional, OS).Emit();
60 OS << " retur
40 EmitClangCommentHTMLTagsProperties(RecordKeeper &Records, raw_ostream &OS) argument
[all...]
/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h32 virtual void print(raw_ostream &OS) const = 0;
40 inline raw_ostream& operator<<(raw_ostream &OS, const MCParsedAsmOperand &MO) { argument
41 MO.print(OS);
42 return OS;
/external/llvm/include/llvm/TableGen/
H A DStringMatcher.h37 raw_ostream &OS; member in class:llvm::StringMatcher
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
/external/llvm/lib/Analysis/
H A DPostDominators.cpp43 void PostDominatorTree::print(raw_ostream &OS, const Module *) const { argument
44 DT->print(OS);
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriterPass.cpp20 raw_ostream &OS; // raw_ostream to print on member in class:__anon8639::WriteBitcodePass
24 : ModulePass(ID), OS(o) {}
29 WriteBitcodeToFile(&M, OS);
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp19 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill, argument
21 uint64_t Pos = OS.tell();
22 OS << Prefix;
23 for (unsigned i = OS.tell() - Pos, e = 80 - Suffix.size(); i != e; ++i)
24 OS << Fill;
25 OS << Suffix << '\n';
28 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
29 printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
30 printLine(OS, "|*", ' ', "*|");
31 printLine(OS, "|* "
[all...]
/external/llvm/lib/Target/X86/InstPrinter/
H A DX86InstComments.cpp29 void llvm::EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS, argument
526 OS << (DestName ? DestName : "mem") << " = ";
543 OS << ',';
545 OS << "zero";
553 OS << (SrcName ? SrcName : "mem") << '[';
559 OS << ',';
562 OS << ShuffleMask[i] % ShuffleMask.size();
565 OS << ']';
568 //MI->print(OS, 0);
569 OS << "\
[all...]
/external/clang/lib/Serialization/
H A DGeneratePCH.cpp32 raw_ostream *OS)
34 isysroot(isysroot.str()), Out(OS),
28 PCHGenerator(const Preprocessor &PP, StringRef OutputFile, clang::Module *Module, StringRef isysroot, raw_ostream *OS) argument
/external/compiler-rt/make/
H A Dconfig.mk4 OS := $(shell uname) macro
/external/llvm/include/llvm/MC/
H A DMCLabel.h45 /// print - Print the value to the stream \arg OS.
46 void print(raw_ostream &OS) const;
52 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { argument
53 Label.print(OS);
54 return OS;
/external/llvm/lib/Analysis/IPA/
H A DFindUsedTypes.cpp95 void FindUsedTypes::print(raw_ostream &OS, const Module *M) const { argument
96 OS << "Types in use by this module:\n";
99 OS << " " << **I << '\n';

Completed in 487 milliseconds

12345678910