/external/clang/lib/Rewrite/ |
HTMLPrint.cpp | 40 HTMLPrinter(llvm::raw_ostream *OS, Preprocessor &pp, 42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight), 50 ASTConsumer* clang::CreateHTMLPrinter(llvm::raw_ostream *OS, 54 return new HTMLPrinter(OS, PP, SyntaxHighlight, HighlightMacros);
|
/external/llvm/include/llvm/MC/ |
MCELFObjectWriter.h | 41 /// \param OS - The stream to write to. 44 raw_ostream &OS, bool IsLittleEndian);
|
/external/llvm/include/llvm/Support/ |
ConstantRange.h | 251 void print(raw_ostream &OS) const; 258 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { 259 CR.print(OS); 260 return OS;
|
/external/llvm/include/llvm/Transforms/Utils/ |
AddrModeMatcher.h | 40 void print(raw_ostream &OS) const; 50 static inline raw_ostream &operator<<(raw_ostream &OS, const ExtAddrMode &AM) { 51 AM.print(OS); 52 return OS;
|
/external/llvm/lib/Analysis/ |
CFGPrinter.cpp | 37 void print(raw_ostream &OS, const Module* = 0) const {} 60 void print(raw_ostream &OS, const Module* = 0) const {} 94 void print(raw_ostream &OS, const Module* = 0) const {} 127 void print(raw_ostream &OS, const Module* = 0) const {}
|
/external/v8/src/ |
debug-agent.h | 49 server_(OS::CreateSocket()), terminate_(false), 50 session_access_(OS::CreateMutex()), session_(NULL), 51 terminate_now_(OS::CreateSemaphore(0)), 52 listening_(OS::CreateSemaphore(0)) {
|
utils.cc | 43 OS::VPrint(format, arguments); 51 OS::VFPrint(out, format, arguments); 117 FILE* file = OS::FOpen(filename, "rb"); 120 OS::PrintError("Cannot read from file %s.\n", filename); 183 FILE* f = OS::FOpen(filename, "ab"); 186 OS::PrintError("Cannot open file %s for writing.\n", filename); 200 FILE* f = OS::FOpen(filename, "wb"); 203 OS::PrintError("Cannot open file %s for writing.\n", filename); 251 int n = OS::VSNPrintF(buffer_ + position_, format, list); 304 OS::Remove(filename_) [all...] |
/external/v8/test/cctest/ |
test-platform-win32.cc | 16 OS::Setup();
|
/external/valgrind/main/include/ |
pub_tool_basics_asm.h | 58 # error Unknown OS
|
/external/webkit/Source/JavaScriptCore/wtf/ |
CurrentTime.h | 52 #if COMPILER(MSVC7_OR_LOWER) || COMPILER(MINGW) || OS(WINCE)
|
ThreadingPrimitives.h | 41 #if OS(WINDOWS) 77 #elif OS(WINDOWS) 153 #if OS(WINDOWS) 165 #if OS(WINDOWS)
|
/external/webkit/Source/WebCore/platform/text/ |
TextStream.h | 47 #if OS(WINDOWS) && CPU(X86_64)
|
/external/webkit/Tools/DumpRenderTree/ |
DumpRenderTree.h | 50 #if !OS(OPENBSD)
|
/external/webkit/Tools/WebKitAPITest/ |
config.h | 44 #if OS(WINDOWS) && !COMPILER(GCC) && !defined(BUILDING_WX__)
|
/external/webkit/Tools/WebKitTestRunner/qt/ |
TestControllerQt.cpp | 94 #if OS(WINDOWS) || OS(SYMBIAN) 96 #elif OS(MAC_OS_X) 98 #elif OS(UNIX)
|
/external/llvm/lib/CodeGen/ |
MachineBasicBlock.cpp | 58 raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) { 59 MBB.print(OS); 60 return OS; 198 void MachineBasicBlock::print(raw_ostream &OS, SlotIndexes *Indexes) const { 201 OS << "Can't print out MachineBasicBlock because parent MachineFunction" 206 if (Alignment) { OS << "Alignment " << Alignment << "\n"; } 209 OS << Indexes->getMBBStartIdx(this) << '\t'; 211 OS << "BB#" << getNumber() << ": "; 215 OS << Comma << "derived from LLVM BB "; 216 WriteAsOperand(OS, LBB, /*PrintType=*/false) [all...] |
MachineVerifier.cpp | 62 raw_ostream *OS; 250 OS = OutFile; 252 OS = &errs(); 284 *OS << "Instruction: " << *MBBI; 314 *OS << '\n'; 317 *OS << "# " << Banner << '\n'; 318 MF->print(*OS, Indexes); 320 *OS << "*** Bad machine code: " << msg << " ***\n" 327 *OS << "- basic block: " << MBB->getName() 331 *OS << " [" << Indexes->getMBBStartIdx(MBB [all...] |
/external/llvm/lib/MC/ |
MCSymbol.cpp | 70 void MCSymbol::print(raw_ostream &OS) const { 75 OS << getName(); 79 OS << '"' << getName() << '"';
|
/external/llvm/lib/Support/ |
ErrorHandling.cpp | 72 raw_svector_ostream OS(Buffer); 73 OS << "LLVM ERROR: " << Reason << "\n"; 74 StringRef MessageStr = OS.str();
|
/external/llvm/lib/Target/X86/ |
X86AsmPrinter.h | 64 raw_ostream &OS); 67 raw_ostream &OS); 80 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
|
/external/llvm/utils/TableGen/ |
ClangASTNodesEmitter.h | 55 std::pair<Record *, Record *> EmitNode (const ChildMap &Tree, raw_ostream& OS, 64 void run(raw_ostream &OS); 79 void run(raw_ostream &OS);
|
/external/webkit/Source/WebCore/platform/audio/ |
FFTFrame.h | 34 #if OS(DARWIN) 38 #if !OS(DARWIN) 95 #if OS(DARWIN) 108 #else // !OS(DARWIN) 149 #endif // !OS(DARWIN)
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
IconWin.cpp | 30 #if OS(WINCE) 67 #if OS(WINCE) 90 #if OS(WINCE)
|
/external/webkit/Source/WebKit2/ |
config.h | 136 // These undefs match up with defines in WebKit2Prefix.h for Mac OS X. 148 #elif (PLATFORM(QT) || (PLATFORM(GTK))) && (OS(UNIX) && !OS(MAC_OS_X) && !OS(SYMBIAN))
|
/external/clang/tools/libclang/ |
CIndexer.cpp | 126 llvm::raw_fd_ostream OS(SavedFile.c_str(), ErrorInfo, 131 OS.write(unsaved_files[i].Contents, unsaved_files[i].Length); 132 OS.close(); 133 if (OS.has_error()) { 135 OS.clear_error();
|