HomeSort by relevance Sort by last modified time
    Searched refs:OS (Results 126 - 150 of 1056) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.cpp 24 #if OS(DARWIN)
30 #elif OS(WINDOWS)
34 #elif OS(HAIKU)
36 #include <OS.h>
38 #elif OS(SOLARIS)
42 #elif OS(QNX)
49 #elif OS(UNIX)
68 #if OS(WINDOWS) || OS(SOLARIS) || OS(OPENBSD) || OS(HAIKU
    [all...]
PageAllocation.h 36 #if OS(DARWIN)
41 #if OS(HAIKU)
42 #include <OS.h>
45 #if OS(WINDOWS)
50 #if OS(SYMBIAN)
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 53 raw_ostream &OS);
55 void run(raw_ostream &OS);
148 void writeTableAndAPI(raw_ostream &OS, const std::string &ClassName);
281 void DFA::writeTableAndAPI(raw_ostream &OS, const std::string &TargetName) {
288 OS << "namespace llvm {\n\n";
289 OS << "const int " << TargetName << "DFAStateInputTable[][2] = {\n";
300 OS << "{" << II->first << ", "
309 OS << SentinelEntry << ",";
313 OS << "\n";
318 OS << SentinelEntry << "\n"
    [all...]
SequenceToOffsetTable.h 109 void emit(raw_ostream &OS,
115 OS << " /* " << I->second << " */ ";
118 Print(OS, *SI);
119 OS << ", ";
121 OS << Term << ",\n";
127 static inline void printChar(raw_ostream &OS, char C) {
130 OS << '\'';
132 OS << '\\';
133 OS << C << '\'';
135 OS << unsigned(UC)
    [all...]
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 30 raw_ostream &OS;
33 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
117 FunctionPass *llvm::createGCInfoPrinter(raw_ostream &OS) {
118 return new Printer(OS);
147 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
150 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
152 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
156 OS << "\t" << PI->Label->getName() << ":
    [all...]
LiveStackAnalysis.cpp 74 void LiveStacks::print(raw_ostream &OS, const Module*) const {
76 OS << "********** INTERVALS **********\n";
78 I->second.print(OS);
82 OS << " [" << RC->getName() << "]\n";
84 OS << " [Unknown]\n";
MachinePostDominators.cpp 53 MachinePostDominatorTree::print(llvm::raw_ostream &OS, const Module *M) const {
54 DT->print(OS);