/external/llvm/lib/Target/X86/InstPrinter/ |
X86ATTInstPrinter.cpp | 37 void X86ATTInstPrinter::printRegName(raw_ostream &OS, 39 OS << '%' << getRegisterName(RegNo); 42 void X86ATTInstPrinter::printInst(const MCInst *MI, raw_ostream &OS) { 44 if (!printAliasInstr(MI, OS)) 45 printInstruction(MI, OS);
|
X86InstComments.cpp | 29 void llvm::EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS, 214 OS << (DestName ? DestName : "mem") << " = "; 231 OS << ','; 233 OS << "zero"; 241 OS << (SrcName ? SrcName : "mem") << '['; 247 OS << ','; 250 OS << ShuffleMask[i] % ShuffleMask.size(); 253 OS << ']'; 256 //MI->print(OS, 0); 257 OS << "\n" [all...] |
/external/v8/src/ |
platform-cygwin.cc | 64 void OS::Setup() { 76 uint64_t OS::CpuFeaturesImpliedByPlatform() { 81 int OS::ActivationFrameAlignment() { 88 void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) { 94 const char* OS::LocalTimezone(double time) { 103 double OS::LocalTimeOffset() { 135 bool OS::IsOutsideAllocatedSpace(void* address) { 140 size_t OS::AllocateAlignment() { 145 void* OS::Allocate(const size_t requested, 152 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed")) [all...] |
platform-macos.cc | 84 // Correct Mac OS X Leopard 'ceil' behavior. 96 void OS::Setup() { 128 bool OS::IsOutsideAllocatedSpace(void* address) { 133 size_t OS::AllocateAlignment() { 146 void* OS::Allocate(const size_t requested, 155 LOG(Isolate::Current(), StringEvent("OS::Allocate", "mmap failed")); 164 void OS::Free(void* address, const size_t size) { 174 void OS::Protect(void* address, size_t size) { 179 void OS::Unprotect(void* address, size_t size, bool is_executable) { 186 void OS::Sleep(int milliseconds) [all...] |
platform-freebsd.cc | 69 // Correct as on OS X 81 void OS::Setup() { 93 void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) { 99 uint64_t OS::CpuFeaturesImpliedByPlatform() { 104 int OS::ActivationFrameAlignment() { 110 const char* OS::LocalTimezone(double time) { 119 double OS::LocalTimeOffset() { 148 bool OS::IsOutsideAllocatedSpace(void* address) { 153 size_t OS::AllocateAlignment() { 158 void* OS::Allocate(const size_t requested [all...] |
/external/webkit/Source/WebCore/platform/graphics/wx/ |
SimpleFontDataWx.cpp | 39 #if OS(DARWIN) 66 #if OS(WINDOWS) 82 #if OS(WINDOWS) 124 #if OS(WINDOWS) 126 #elif OS(DARWIN) 150 #elif OS(DARWIN) 168 #if OS(WINDOWS)
|
/external/webkit/Source/WebKit/chromium/tests/ |
KeyboardTest.cpp | 82 #if OS(DARWIN) 126 #if !OS(DARWIN) 133 #if !OS(DARWIN) 140 #if !OS(DARWIN) 147 #if !OS(DARWIN) 154 #if !OS(DARWIN) 161 #if !OS(DARWIN)
|
/external/llvm/lib/Analysis/ |
SparsePropagation.cpp | 31 void AbstractLatticeFunction::PrintValue(LatticeVal V, raw_ostream &OS) { 33 OS << "undefined"; 35 OS << "overdefined"; 37 OS << "untracked"; 39 OS << "unknown lattice value"; 329 void SparseSolver::Print(Function &F, raw_ostream &OS) const { 330 OS << "\nFUNCTION: " << F.getNameStr() << "\n"; 333 OS << "INFEASIBLE: "; 334 OS << "\t"; 336 OS << BB->getNameStr() << ":\n" [all...] |
/development/build/tools/ |
mk_sdk_repo_xml.sh | 22 Usage: $0 output.xml xml-schema [type [os zip[:dest]]*...]* 25 - os is one of ${OSES// /, }. 167 OS=$(check_enum "$1" $OSES) 168 while [[ $OS ]]; do 170 [[ $OS == "linux-x86" ]] && OS=linux 171 [[ $OS == "darwin" ]] && OS=macosx 179 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC" 244 echo "## Add $TYPE/$OS archive $SRC [all...] |
/external/llvm/lib/MC/ |
MCDwarf.cpp | 330 raw_svector_ostream OS(Tmp); 331 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS); 332 OW->WriteBytes(OS.str()); 339 raw_svector_ostream OS(Tmp); 340 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS); 341 MCOS->EmitBytes(OS.str(), /*AddrSpace=*/0); 346 raw_ostream &OS) { 358 OS << char(dwarf::DW_LNS_const_add_pc); 360 OS << char(dwarf::DW_LNS_advance_pc); 361 MCObjectWriter::EncodeULEB128(AddrDelta, OS); [all...] |
/external/webkit/Source/WebCore/platform/graphics/ |
SimpleFontData.h | 46 #if (PLATFORM(WIN) && !OS(WINCE)) \ 47 || (OS(WINDOWS) && PLATFORM(WX)) 148 #if PLATFORM(MAC) || (PLATFORM(CHROMIUM) && OS(DARWIN)) 150 #elif (PLATFORM(WX) && OS(DARWIN)) 172 #if PLATFORM(WIN) || (OS(WINDOWS) && PLATFORM(WX)) 174 #if !OS(WINCE) // disable unused members to save space 198 #if (PLATFORM(WIN) && !OS(WINCE)) \ 199 || (OS(WINDOWS) && PLATFORM(WX)) 280 #if PLATFORM(WIN) || (OS(WINDOWS) && PLATFORM(WX)) 282 #if !OS(WINCE) // disable unused members to save spac [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 92 llvm::OwningPtr<llvm::raw_ostream> OS( 100 (*OS) << "clang -cc1 command line arguments: "; 102 (*OS) << argv[i] << ' '; 103 (*OS) << '\n'; 107 new TextDiagnosticPrinter(*OS.take(), DiagOpts, /*OwnsOutputStream=*/true); 116 llvm::raw_ostream *OS = &llvm::errs(); 128 OS = FileOS; 134 LogDiagnosticPrinter *Logger = new LogDiagnosticPrinter(*OS, DiagOpts, 375 llvm::raw_ostream &OS) { 381 ShowGlobals, OS); [all...] |
CreateInvocationFromCommandLine.cpp | 70 llvm::raw_svector_ostream OS(Msg); 71 C->PrintJob(OS, C->getJobs(), "; ", true); 72 Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
|
/external/llvm/utils/TableGen/ |
NeonEmitter.cpp | 1085 void NeonEmitter::run(raw_ostream &OS) { 1086 OS << 1123 OS << "#ifndef __ARM_NEON_H\n"; 1124 OS << "#define __ARM_NEON_H\n\n"; 1126 OS << "#ifndef __ARM_NEON__\n"; 1127 OS << "#error \"NEON support not enabled\"\n"; 1128 OS << "#endif\n\n"; 1130 OS << "#include <stdint.h>\n\n"; 1133 OS << "typedef float float32_t;\n"; 1134 OS << "typedef int8_t poly8_t;\n" [all...] |
DAGISelMatcher.h | 35 raw_ostream &OS); 174 void print(raw_ostream &OS, unsigned indent = 0) const; 175 void printOne(raw_ostream &OS) const; 178 virtual void printImpl(raw_ostream &OS, unsigned indent) const = 0; 225 virtual void printImpl(raw_ostream &OS, unsigned indent) const; 252 virtual void printImpl(raw_ostream &OS, unsigned indent) const; 287 virtual void printImpl(raw_ostream &OS, unsigned indent) const; 306 virtual void printImpl(raw_ostream &OS, unsigned indent) const; 325 virtual void printImpl(raw_ostream &OS, unsigned indent) const; 346 virtual void printImpl(raw_ostream &OS, unsigned indent) const [all...] |
/external/clang/lib/AST/ |
Mangle.cpp | 118 llvm::raw_svector_ostream OS(Name); 123 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName(); 125 OS << '(' << CID << ')'; 126 OS << ' ' << MD->getSelector().getAsString() << ']'; 128 Out << OS.str().size() << OS.str();
|
/external/clang/lib/Rewrite/ |
FixItRewriter.cpp | 44 bool FixItRewriter::WriteFixedFile(FileID ID, llvm::raw_ostream &OS) { 47 RewriteBuf->write(OS); 48 OS.flush(); 62 llvm::raw_fd_ostream OS(Filename.c_str(), Err, 70 RewriteBuf.write(OS); 71 OS.flush();
|
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 63 /// print - Print the value to the stream \arg OS. 64 void print(raw_ostream &OS) const; 70 inline raw_ostream &operator<<(raw_ostream &OS, const MCDwarfFile &DwarfFile){ 71 DwarfFile.print(OS); 72 return OS; 219 static void Encode(int64_t LineDelta, uint64_t AddrDelta, raw_ostream &OS); 286 static void EncodeAdvanceLoc(uint64_t AddrDelta, raw_ostream &OS);
|
MCSection.h | 52 raw_ostream &OS) const = 0;
|
/external/webkit/Source/WebCore/platform/ |
FileSystem.h | 60 #if OS(WINDOWS) 82 #elif OS(WINDOWS) 99 #if OS(WINDOWS) 128 #elif OS(WINDOWS) 155 #if OS(WINDOWS) 214 #if PLATFORM(WIN) && !OS(WINCE)
|
/external/llvm/lib/Analysis/IPA/ |
FindUsedTypes.cpp | 95 void FindUsedTypes::print(raw_ostream &OS, const Module *M) const { 96 OS << "Types in use by this module:\n"; 99 OS << " " << **I << '\n';
|
/external/llvm/unittests/ADT/ |
TwineTest.cpp | 20 llvm::raw_string_ostream OS(res); 21 Value.printRepr(OS); 22 return OS.str();
|
/external/webkit/Source/JavaScriptCore/jit/ |
ExecutableAllocator.h | 37 #if OS(IOS) 42 #if OS(SYMBIAN) 46 #if CPU(MIPS) && OS(LINUX) 50 #if CPU(SH4) && OS(LINUX) 57 #if OS(WINCE) 264 #elif CPU(ARM_THUMB2) && OS(IOS) 269 #elif CPU(ARM_THUMB2) && OS(LINUX) 285 #elif OS(SYMBIAN) 290 #elif CPU(ARM_TRADITIONAL) && OS(LINUX) && COMPILER(RVCT) 292 #elif CPU(ARM_TRADITIONAL) && OS(LINUX) && COMPILER(GCC [all...] |
/external/clang/include/clang/AST/ |
PrettyPrinter.h | 32 virtual bool handledStmt(Stmt* E, llvm::raw_ostream& OS) = 0;
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
CheckerProvider.h | 51 virtual void printHelp(llvm::raw_ostream &OS) = 0;
|