Searched defs:os (Results 1 - 25 of 110) sorted by relevance

12345

/art/compiler/linker/
H A Doutput_stream.cc21 std::ostream& operator<<(std::ostream& os, const Whence& rhs) { argument
23 case kSeekSet: os << "SEEK_SET"; break;
24 case kSeekCurrent: os << "SEEK_CUR"; break;
25 case kSeekEnd: os << "SEEK_END"; break;
28 return os;
/art/runtime/
H A Doffsets.cc23 std::ostream& operator<<(std::ostream& os, const Offset& offs) { argument
24 return os << offs.Int32Value();
H A Dprimitive.cc39 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) { argument
42 os << kTypeNames[int_type];
44 os << "Type[" << int_type << "]";
46 return os;
/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
34 return os;
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
43 return os;
/art/runtime/arch/arm64/
H A Dregisters_arm64.cc38 std::ostream& operator<<(std::ostream& os, const XRegister& rhs) { argument
40 os << kRegisterNames[rhs];
42 os << "XRegister[" << static_cast<int>(rhs) << "]";
44 return os;
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) { argument
49 os << kWRegisterNames[rhs];
51 os << "WRegister[" << static_cast<int>(rhs) << "]";
53 return os;
56 std::ostream& operator<<(std::ostream& os, const DRegister& rhs) { argument
58 os << "
65 operator <<(std::ostream& os, const SRegister& rhs) argument
[all...]
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
36 return os;
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) { argument
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
45 return os;
/art/runtime/arch/mips64/
H A Dregisters_mips64.cc31 std::ostream& operator<<(std::ostream& os, const GpuRegister& rhs) { argument
33 os << kRegisterNames[rhs];
35 os << "GpuRegister[" << static_cast<int>(rhs) << "]";
37 return os;
40 std::ostream& operator<<(std::ostream& os, const FpuRegister& rhs) { argument
42 os << "f" << static_cast<int>(rhs);
44 os << "FpuRegister[" << static_cast<int>(rhs) << "]";
46 return os;
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
33 return os;
/art/runtime/arch/x86_64/
H A Dregisters_x86_64.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
34 return os;
37 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs) { argument
39 os << "xmm" << static_cast<int>(rhs);
41 os << "Register[" << static_cast<int>(rhs) << "]";
43 return os;
/art/runtime/gc/
H A Dgc_cause.cc46 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { argument
47 os << PrettyCause(gc_cause);
48 return os;
/art/compiler/utils/arm/
H A Dassembler_arm.cc40 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
42 os << kRegisterNames[rhs];
44 os << "Register[" << static_cast<int>(rhs) << "]";
46 return os;
50 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
52 os << "s" << static_cast<int>(rhs);
54 os << "SRegister[" << static_cast<int>(rhs) << "]";
56 return os;
60 std::ostream& operator<<(std::ostream& os, const DRegister& rhs) { argument
62 os << "
69 operator <<(std::ostream& os, const Condition& rhs) argument
[all...]
H A Dmanaged_register_arm.cc75 void ArmManagedRegister::Print(std::ostream& os) const {
77 os << "No Register";
79 os << "Core: " << static_cast<int>(AsCoreRegister());
81 os << "Pair: " << static_cast<int>(AsRegisterPairLow()) << ", "
84 os << "SRegister: " << static_cast<int>(AsSRegister());
86 os << "DRegister: " << static_cast<int>(AsDRegister());
88 os << "??: " << RegId();
92 std::ostream& operator<<(std::ostream& os, const ArmManagedRegister& reg) { argument
93 reg.Print(os);
94 return os;
97 operator <<(std::ostream& os, const RegisterPair& r) argument
[all...]
/art/compiler/utils/mips64/
H A Dmanaged_register_mips64.cc32 void Mips64ManagedRegister::Print(std::ostream& os) const {
34 os << "No Register";
36 os << "GPU: " << static_cast<int>(AsGpuRegister());
38 os << "FpuRegister: " << static_cast<int>(AsFpuRegister());
40 os << "??: " << RegId();
44 std::ostream& operator<<(std::ostream& os, const Mips64ManagedRegister& reg) { argument
45 reg.Print(os);
46 return os;
/art/runtime/base/
H A Dto_str.h30 std::ostringstream os; local
31 os << value;
32 s_ = os.str();
H A Ddumpable.h26 // A convenience to allow any class with a "Dump(std::ostream& os)" member function
29 // os << Dumpable<MyType>(my_type_instance);
37 void Dump(std::ostream& os) const {
38 value_.Dump(os);
48 std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) { argument
49 rhs.Dump(os);
50 return os;
H A Dhex_dump.h37 void Dump(std::ostream& os) const;
48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) { argument
49 rhs.Dump(os);
50 return os;
/art/test/utils/python/testgen/
H A Dutils.py22 import os namespace
26 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/compiler/optimizing/
H A Dnodes_arm64.cc67 std::ostream& operator<<(std::ostream& os, const HArm64DataProcWithShifterOp::OpKind op) { argument
69 case HArm64DataProcWithShifterOp::kLSL: return os << "LSL";
70 case HArm64DataProcWithShifterOp::kLSR: return os << "LSR";
71 case HArm64DataProcWithShifterOp::kASR: return os << "ASR";
72 case HArm64DataProcWithShifterOp::kUXTB: return os << "UXTB";
73 case HArm64DataProcWithShifterOp::kUXTH: return os << "UXTH";
74 case HArm64DataProcWithShifterOp::kUXTW: return os << "UXTW";
75 case HArm64DataProcWithShifterOp::kSXTB: return os << "SXTB";
76 case HArm64DataProcWithShifterOp::kSXTH: return os << "SXTH";
77 case HArm64DataProcWithShifterOp::kSXTW: return os << "SXT
[all...]
H A Dlocations.cc85 std::ostream& operator<<(std::ostream& os, const Location& location) { argument
86 os << location.DebugString();
88 os << location.reg();
90 os << location.low() << ":" << location.high();
92 os << location.GetStackIndex();
94 return os;
/art/compiler/utils/arm64/
H A Dmanaged_register_arm64.cc86 void Arm64ManagedRegister::Print(std::ostream& os) const {
88 os << "No Register";
90 os << "XCore: " << static_cast<int>(AsXRegister());
92 os << "WCore: " << static_cast<int>(AsWRegister());
94 os << "DRegister: " << static_cast<int>(AsDRegister());
96 os << "SRegister: " << static_cast<int>(AsSRegister());
98 os << "??: " << RegId();
102 std::ostream& operator<<(std::ostream& os, const Arm64ManagedRegister& reg) { argument
103 reg.Print(os);
104 return os;
[all...]
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc76 void MipsManagedRegister::Print(std::ostream& os) const {
78 os << "No Register";
80 os << "Core: " << static_cast<int>(AsCoreRegister());
82 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
84 os << "FRegister: " << static_cast<int>(AsFRegister());
86 os << "DRegister: " << static_cast<int>(AsDRegister());
88 os << "??: " << RegId();
92 std::ostream& operator<<(std::ostream& os, const MipsManagedRegister& reg) { argument
93 reg.Print(os);
94 return os;
97 operator <<(std::ostream& os, const RegisterPair& reg) argument
[all...]
/art/test/970-iface-super-resolution-generated/util-src/
H A Dgenerate_java.py22 import os namespace
26 BUILD_TOP = os.getenv("ANDROID_BUILD_TOP")
/art/tools/
H A Danalyze-init-failures.py21 import os namespace
H A Dgenerate-operator-out.py20 import os namespace
192 print('std::ostream& operator<<(std::ostream& os, const %s& rhs) {' % enum_name)
195 print(' case %s: os << "%s"; break;' % (enum_value, enum_text))
197 print(' default: os << "%s[" << static_cast<int>(rhs) << "]"; break;' % enum_name)
199 print(' return os;')
/art/tools/checker/
H A Dchecker.py18 import os namespace
48 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
54 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
74 elif os.path.isfile(path):
76 elif os.path.isdir(path):
78 for root, dirs, files in os.walk(path):
80 extension = os.path.splitext(file)[1]
82 foundFiles.append(os.path.join(root, file))
89 c1File = ParseC1visualizerStream(os.path.basename(outputFilename), open(outputFilename, "r"))
91 checkerFile = ParseCheckerStream(os
[all...]

Completed in 354 milliseconds

12345