/external/clang/utils/TableGen/ |
ClangCommentCommandInfoEmitter.cpp | 23 void EmitClangCommentCommandInfo(RecordKeeper &Records, raw_ostream &OS) { 25 "comments", OS); 27 OS << "namespace {\n" 32 OS << " { " 56 OS << ","; 57 OS << "\n"; 59 OS << "};\n" 71 OS << "const CommandInfo *CommandTraits::getBuiltinCommandInfo(\n" 73 StringMatcher("Name", Matches, OS).Emit(); 74 OS << " return NULL;\n [all...] |
ClangSACheckersEmitter.cpp | 97 void EmitClangSACheckers(RecordKeeper &Records, raw_ostream &OS) { 176 OS << "\n#ifdef GET_GROUPS\n"; 187 OS << "GROUP(" << "\""; 188 OS.write_escaped(R->getValueAsString("GroupName")) << "\""; 189 OS << ")\n"; 194 OS << "#endif // GET_GROUPS\n\n"; 196 OS << "\n#ifdef GET_PACKAGES\n"; 206 OS << "PACKAGE(" << "\""; 207 OS.write_escaped(getPackageFullName(&R)) << "\", "; 210 OS << groupToSortIndex[DI->getDef()] << ", " [all...] |
/external/llvm/lib/Target/R600/MCTargetDesc/ |
R600MCCodeEmitter.cpp | 54 /// \brief Encode the instruction and write it to the OS. 55 virtual void EncodeInstruction(const MCInst &MI, raw_ostream &OS, 64 raw_ostream &OS) const; 65 void EmitSrc(const MCInst &MI, unsigned OpIdx, raw_ostream &OS) const; 67 raw_ostream &OS) const; 68 void EmitDst(const MCInst &MI, raw_ostream &OS) const; 70 raw_ostream &OS) const; 71 void EmitFCInstr(const MCInst &MI, raw_ostream &OS) const; 73 void EmitNullBytes(unsigned int byteCount, raw_ostream &OS) const; 75 void EmitByte(unsigned int byte, raw_ostream &OS) const [all...] |
/external/llvm/lib/Target/MBlaze/MCTargetDesc/ |
MBlazeMCCodeEmitter.cpp | 61 void EmitByte(unsigned char C, unsigned &CurByte, raw_ostream &OS) const { 67 OS << (char)C; 71 void EmitRawByte(unsigned char C, unsigned &CurByte, raw_ostream &OS) const { 72 OS << (char)C; 77 raw_ostream &OS) const { 81 EmitByte(Val & 255, CurByte, OS); 86 void EmitIMM(const MCOperand &imm, unsigned &CurByte, raw_ostream &OS) const; 87 void EmitIMM(const MCInst &MI, unsigned &CurByte, raw_ostream &OS) const; 90 unsigned &CurByte, raw_ostream &OS, 93 void EncodeInstruction(const MCInst &MI, raw_ostream &OS, [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFFormValue.cpp | 315 DWARFFormValue::dump(raw_ostream &OS, const DWARFCompileUnit *cu) const { 322 case DW_FORM_addr: OS << format("0x%016" PRIx64, uvalue); break; 325 OS << format(" indexed (%8.8x) address = ", (uint32_t)uvalue); 328 OS << format("0x%016" PRIx64, getIndirectAddress(&DA, cu)); 330 OS << "<no .debug_addr section>"; 333 case DW_FORM_flag_present: OS << "true"; break; 335 case DW_FORM_data1: OS << format("0x%02x", (uint8_t)uvalue); break; 336 case DW_FORM_data2: OS << format("0x%04x", (uint16_t)uvalue); break; 337 case DW_FORM_data4: OS << format("0x%08x", (uint32_t)uvalue); break; 339 case DW_FORM_data8: OS << format("0x%016" PRIx64, uvalue); break [all...] |
DWARFDebugFrame.h | 31 void dump(raw_ostream &OS) const;
|
/external/llvm/tools/llvm-readobj/ |
ELF.cpp | 95 bool Is64, raw_ostream &OS) { 99 OS << "REL"; 102 OS << "RELA"; 120 OS << format("0x%" PRIx64, Value); 132 OS << Value << " (bytes)"; 135 OS << "Shared library: [" 139 OS << "Library soname: [" 146 ErrorOr<void> dumpDynamicTable(const ELFObjectFile<ELFT> *O, raw_ostream &OS) { 156 OS << "Dynamic section contains " << Total << " entries\n"; 160 OS << " Tag" << (Is64 ? " " : " ") << "Type [all...] |
/external/llvm/unittests/Support/ |
raw_ostream_test.cpp | 34 llvm::raw_svector_ostream OS(SVec); 37 OS << '?'; 38 OS << Value; 39 return OS.str().substr(StartIndex); 44 llvm::raw_string_ostream OS(res); 45 OS.SetUnbuffered(); 46 OS << Value; 122 raw_string_ostream OS(Str); 123 OS.SetBufferSize(1); 124 OS << "hello" [all...] |
/external/llvm/lib/TableGen/ |
StringMatcher.cpp | 58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n"; 63 OS << Indent << Split.first << "\n"; 86 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '" 88 OS << Indent << " break;\n"; 92 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo 95 OS << Indent << " break;\n"; 103 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n"; 104 OS << Indent << "default: break;\n"; 109 OS << Indent << "case '" << LI->first << "':\t // " 111 if (LI->second.size() != 1) OS << 's' [all...] |
/external/webkit/Source/WebCore/platform/graphics/skia/ |
FontCustomPlatformData.cpp | 36 #if OS(WINDOWS) 40 #elif OS(LINUX) || OS(FREEBSD) || PLATFORM(BREWMP) 49 #if OS(WINDOWS) 51 #elif OS(LINUX) || OS(FREEBSD) || PLATFORM(BREWMP) 59 #if OS(WINDOWS) 62 #elif OS(LINUX) || OS(FREEBSD) || PLATFORM(BREWMP) 71 #if OS(WINDOWS [all...] |
/external/qemu/distrib/ |
update-audio.sh | 23 OS=`uname -s` 25 case "$OS" in 29 OS=darwin-x86 31 OS=darwin-ppc 41 OS=linux-$CPU 44 OS=windows 49 PREBUILT=$(locate_depot_files //branches/cupcake/android/prebuilt/$OS)
|
/external/webkit/Source/JavaScriptCore/ |
config.h | 50 #if !PLATFORM(CHROMIUM) && OS(WINDOWS) && !defined(BUILDING_WX__) && !COMPILER(GCC) 67 #if OS(WINDOWS) 74 #if !COMPILER(MSVC7_OR_LOWER) && !OS(WINCE) 83 #if OS(UNIX) || OS(WINDOWS) 87 #if OS(FREEBSD) || OS(OPENBSD)
|
/external/clang/lib/AST/ |
ASTDumper.cpp | 79 raw_ostream &OS; 129 Dumper.OS.changeColor(Color.Color, Color.Bold); 133 Dumper.OS.resetColor(); 138 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, 140 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false), 144 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, 146 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false), 151 OS << "\n" [all...] |
TemplateName.cpp | 128 TemplateName::print(raw_ostream &OS, const PrintingPolicy &Policy, 131 OS << *Template; 134 QTN->getQualifier()->print(OS, Policy); 136 OS << "template "; 137 OS << *QTN->getDecl(); 140 DTN->getQualifier()->print(OS, Policy); 141 OS << "template "; 144 OS << DTN->getIdentifier()->getName(); 146 OS << "operator " << getOperatorSpelling(DTN->getOperator()); 149 subst->getReplacement().print(OS, Policy, SuppressNNS) [all...] |
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 36 Preprocessor &PP, raw_ostream &OS) { 37 OS << "#define " << II.getName(); 40 OS << '('; 44 OS << (*AI)->getName(); 45 OS << ','; 50 OS << "..."; 52 OS << (*AI)->getName(); 56 OS << "..."; // #define foo(x...) 58 OS << ')'; 64 OS << ' '; [all...] |
/cts/tools/tradefed-host/tests/ |
run_unit_tests.sh | 30 OS="linux-x86" 32 OS="darwin-x86" 34 echo "Unrecognized OS" 39 JAR_DIR=${ANDROID_BUILD_TOP}/out/host/$OS/framework
|
/external/llvm/include/llvm/Support/ |
PrettyStackTrace.h | 43 /// print - Emit information about this stack frame to OS. 44 virtual void print(raw_ostream &OS) const = 0; 57 virtual void print(raw_ostream &OS) const LLVM_OVERRIDE; 68 virtual void print(raw_ostream &OS) const LLVM_OVERRIDE;
|
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
MipsELFStreamer.h | 22 raw_ostream &OS, MCCodeEmitter *Emitter, 24 : MCELFStreamer(SK_MipsELFStreamer, Context, TAB, OS, Emitter) { 39 raw_ostream &OS, MCCodeEmitter *Emitter,
|
/external/v8/src/ |
inspector.cc | 43 OS::FPrint(out, "%p:", reinterpret_cast<void*>(obj)); 46 OS::FPrint(out, " size %d :", hobj->Size()); 52 OS::FPrint(out, " %s", #type); \
|
/external/webkit/Source/WebCore/page/chromium/ |
DragControllerChromium.cpp | 34 #if OS(WINDOWS) 59 // FIXME: This should not be OS specific. Delegate to the embedder instead. 60 #if OS(WINDOWS) 69 #if OS(DARWIN)
|
/external/clang/examples/analyzer-plugin/ |
Makefile | 18 ifeq ($(OS),Darwin)
|
/external/clang/include/clang/StaticAnalyzer/Frontend/ |
FrontendActions.h | 29 void printCheckerHelp(raw_ostream &OS, ArrayRef<std::string> plugins);
|
/external/llvm/include/llvm/MC/MCParser/ |
MCParsedAsmOperand.h | 90 virtual void print(raw_ostream &OS) const = 0; 98 inline raw_ostream& operator<<(raw_ostream &OS, const MCParsedAsmOperand &MO) { 99 MO.print(OS); 100 return OS;
|
/external/llvm/include/llvm/MC/ |
MCWinCOFFObjectWriter.h | 33 /// \param OS - The stream to write to. 36 raw_ostream &OS);
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64ELFStreamer.h | 22 raw_ostream &OS,
|