| /external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/PDB/ |
| D | PDBExtras.cpp | 23 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument 26 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<() 27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<() 28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<() 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<() 30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<() 31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<() 32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<() 33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<() 34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<() [all …]
|
| /external/llvm/lib/DebugInfo/PDB/ |
| D | PDBExtras.cpp | 25 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument 28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<() 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<() 30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<() 31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<() 32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<() 33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<() 34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<() 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<() 36 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<() [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
| D | PDBExtras.cpp | 24 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument 27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<() 28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<() 29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<() 30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<() 31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<() 32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<() 33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<() 34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<() 35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<() [all …]
|
| /external/crosvm/x86_64/src/ |
| D | msr_index.rs | 11 pub const MSR_EFER: ::std::os::raw::c_uint = 0xc0000080; 12 pub const MSR_STAR: ::std::os::raw::c_uint = 0xc0000081; 13 pub const MSR_LSTAR: ::std::os::raw::c_uint = 0xc0000082; 14 pub const MSR_CSTAR: ::std::os::raw::c_uint = 0xc0000083; 15 pub const MSR_SYSCALL_MASK: ::std::os::raw::c_uint = 0xc0000084; 16 pub const MSR_FS_BASE: ::std::os::raw::c_uint = 0xc0000100; 17 pub const MSR_GS_BASE: ::std::os::raw::c_uint = 0xc0000101; 18 pub const MSR_KERNEL_GS_BASE: ::std::os::raw::c_uint = 0xc0000102; 19 pub const MSR_TSC_AUX: ::std::os::raw::c_uint = 0xc0000103; 20 pub const _EFER_SCE: ::std::os::raw::c_uint = 0x00000000; [all …]
|
| /external/sdv/vsomeip/third_party/boost/io/test/ |
| D | ostream_put_test.cpp | 16 std::ostringstream os; in main() local 17 os.width(1); in main() 18 os.fill('.'); in main() 19 os.setf(std::ios_base::left, std::ios_base::adjustfield); in main() 20 boost::io::ostream_put(os, "xy", 2); in main() 21 BOOST_TEST(os.good()); in main() 22 BOOST_TEST(os.width() == 0); in main() 23 BOOST_TEST(os.str() == "xy"); in main() 26 std::wostringstream os; in main() local 27 os.width(1); in main() [all …]
|
| D | quoted_fill_test.cpp | 16 std::ostringstream os; in main() local 17 os.width(2); in main() 18 os.fill('.'); in main() 19 os.setf(std::ios_base::left, std::ios_base::adjustfield); in main() 20 os << boost::io::quoted("xy"); in main() 21 BOOST_TEST(os.good()); in main() 22 BOOST_TEST(os.width() == 0); in main() 23 BOOST_TEST(os.str() == "\"xy\""); in main() 26 std::wostringstream os; in main() local 27 os.width(2); in main() [all …]
|
| /external/python/pyfakefs/pyfakefs/tests/ |
| D | fake_os_test.py | 19 import os 45 self.assertTrue(self.os.path.exists(path)) 46 st = self.os.stat(path) 53 self.assertTrue(self.os.path.exists(path)) 54 st = self.os.stat(path) 63 self.rwx = self.os.R_OK | self.os.W_OK | self.os.X_OK 64 self.rw = self.os.R_OK | self.os.W_OK 70 self.os.chdir(directory) 75 self.assert_raises_os_error(errno.ENOENT, self.os.chdir, directory) 81 self.assert_raises_os_error(errno.ENOTDIR, self.os.chdir, filename) [all …]
|
| /external/clang/lib/AST/ |
| D | TypePrinter.cpp | 93 void print(const Type *ty, Qualifiers qs, raw_ostream &OS, 95 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder); 98 void spaceBeforePlaceHolder(raw_ostream &OS); 99 void printTypeSpec(const NamedDecl *D, raw_ostream &OS); 101 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS); 102 void printBefore(QualType T, raw_ostream &OS); 103 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS); 104 void printAfter(QualType T, raw_ostream &OS); 105 void AppendScope(DeclContext *DC, raw_ostream &OS); 106 void printTag(TagDecl *T, raw_ostream &OS); [all …]
|
| D | StmtPrinter.cpp | 37 raw_ostream &OS; member in __anonceac08330111::StmtPrinter 43 StmtPrinter(raw_ostream &os, PrinterHelper* helper, in StmtPrinter() argument 46 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {} in StmtPrinter() 58 OS << ";\n"; in PrintStmt() 81 OS << "<null expr>"; in PrintExpr() 86 OS << " "; in Indent() 87 return OS; in Indent() 91 if (Helper && Helper->handledStmt(S,OS)) in Visit() 100 OS << "<<unknown expr type>>"; in VisitExpr() 118 OS << "{\n"; in PrintRawCompoundStmt() [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
| D | MicrosoftDemangleNodes.cpp | 24 OS << Desc; \ 28 static void outputSpaceIfNecessary(OutputStream &OS) { in outputSpaceIfNecessary() argument 29 if (OS.empty()) in outputSpaceIfNecessary() 32 char C = OS.back(); in outputSpaceIfNecessary() 34 OS << " "; in outputSpaceIfNecessary() 37 static void outputSingleQualifier(OutputStream &OS, Qualifiers Q) { in outputSingleQualifier() argument 40 OS << "const"; in outputSingleQualifier() 43 OS << "volatile"; in outputSingleQualifier() 46 OS << "__restrict"; in outputSingleQualifier() 53 static bool outputQualifierIfPresent(OutputStream &OS, Qualifiers Q, in outputQualifierIfPresent() argument [all …]
|
| /external/cronet/third_party/apache-portable-runtime/src/misc/unix/ |
| D | getopt.c | 40 APR_DECLARE(apr_status_t) apr_getopt_init(apr_getopt_t **os, apr_pool_t *cont, in apr_getopt_init() argument 45 *os = apr_palloc(cont, sizeof(apr_getopt_t)); in apr_getopt_init() 46 (*os)->cont = cont; in apr_getopt_init() 47 (*os)->reset = 0; in apr_getopt_init() 48 (*os)->errfn = (apr_getopt_err_fn_t*)(fprintf); in apr_getopt_init() 49 (*os)->errarg = (void*)(stderr); in apr_getopt_init() 51 (*os)->place = EMSG; in apr_getopt_init() 52 (*os)->argc = argc; in apr_getopt_init() 60 (*os)->argv = argv_buff; in apr_getopt_init() 61 (*os)->argv[argc] = NULL; in apr_getopt_init() [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_os.py | 1 # As a test suite for the os module, this is woefully inadequate, but this 14 import os 72 if hasattr(os, 'geteuid'): 73 root_in_posix = (os.geteuid() == 0) 85 HAVE_WHEEL_GROUP = sys.platform.startswith('freebsd') and os.getgid() == 0 89 return unittest.skipUnless(hasattr(os, name), 'requires os.%s' % name) 108 cwd = os.getcwd() 114 # longer path if longer paths support is enabled. Internally, the os 137 cwd = os.getcwd() 140 need = min_len - (len(cwd) + len(os.path.sep)) [all …]
|
| /external/openscreen/platform/base/ |
| D | error.cc | 47 std::ostream& operator<<(std::ostream& os, const Error::Code& code) { in operator <<() argument 49 return os << "Success"; in operator <<() 51 os << "Failure: "; in operator <<() 54 return os << "Transient"; in operator <<() 56 return os << "CborParsing"; in operator <<() 58 return os << "CborEncoding"; in operator <<() 60 return os << "CborIncompleteMessage"; in operator <<() 62 return os << "CborInvalidMessage"; in operator <<() 64 return os << "CborInvalidResponseId"; in operator <<() 66 return os << "NoAvailableReceivers"; in operator <<() [all …]
|
| /external/llvm/utils/TableGen/ |
| D | Attributes.cpp | 26 void emit(raw_ostream &OS); 29 void emitTargetIndependentEnums(raw_ostream &OS); 30 void emitConversionFn(raw_ostream &OS); 31 void emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr); 33 void printEnumAttrClasses(raw_ostream &OS, 35 void printStrBoolAttrClasses(raw_ostream &OS, 43 void Attributes::emitTargetIndependentEnums(raw_ostream &OS) { in emitTargetIndependentEnums() argument 44 OS << "#ifdef GET_ATTR_ENUM\n"; in emitTargetIndependentEnums() 45 OS << "#undef GET_ATTR_ENUM\n"; in emitTargetIndependentEnums() 51 OS << A->getName() << ",\n"; in emitTargetIndependentEnums() [all …]
|
| D | DAGISelMatcherEmitter.cpp | 60 unsigned StartIdx, formatted_raw_ostream &OS); 62 void EmitPredicateFunctions(formatted_raw_ostream &OS); 64 void EmitHistogram(const Matcher *N, formatted_raw_ostream &OS); 67 formatted_raw_ostream &OS); 133 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) { in EmitVBRValue() argument 135 OS << Val << ", "; in EmitVBRValue() 142 OS << (Val&127) << "|128,"; in EmitVBRValue() 146 OS << Val; in EmitVBRValue() 148 OS << "/*" << InVal << "*/"; in EmitVBRValue() 149 OS << ", "; in EmitVBRValue() [all …]
|
| /external/libevent/build-aux/ |
| D | config.sub | 127 os=$field3-$field4 130 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two 140 os=$maybe_os 144 os=linux-android 148 os=$field3 157 os= 160 # Second component is usually, but not always the OS 162 # Prevent following clause from handling this valid os 163 sun*os*) 165 os=$field2 [all …]
|
| /external/rust/crates/libsqlite3-sys/bindgen-bindings/ |
| D | bindgen_3.7.7.rs | 262 pub static mut sqlite3_version: [::std::os::raw::c_char; 0usize]; 265 pub fn sqlite3_libversion() -> *const ::std::os::raw::c_char; in sqlite3_libversion() 268 pub fn sqlite3_sourceid() -> *const ::std::os::raw::c_char; in sqlite3_sourceid() 271 pub fn sqlite3_libversion_number() -> ::std::os::raw::c_int; in sqlite3_libversion_number() 274 pub fn sqlite3_compileoption_used(zOptName: *const ::std::os::raw::c_char) in sqlite3_compileoption_used() 275 -> ::std::os::raw::c_int; in sqlite3_compileoption_used() 278 pub fn sqlite3_compileoption_get(N: ::std::os::raw::c_int) in sqlite3_compileoption_get() 279 -> *const ::std::os::raw::c_char; in sqlite3_compileoption_get() 282 pub fn sqlite3_threadsafe() -> ::std::os::raw::c_int; in sqlite3_threadsafe() 287 pub type sqlite_int64 = ::std::os::raw::c_longlong; [all …]
|
| D | bindgen_3.6.23.rs | 217 pub static mut sqlite3_version: [::std::os::raw::c_char; 0usize]; 220 pub fn sqlite3_libversion() -> *const ::std::os::raw::c_char; in sqlite3_libversion() 223 pub fn sqlite3_sourceid() -> *const ::std::os::raw::c_char; in sqlite3_sourceid() 226 pub fn sqlite3_libversion_number() -> ::std::os::raw::c_int; in sqlite3_libversion_number() 229 pub fn sqlite3_compileoption_used(zOptName: *const ::std::os::raw::c_char) in sqlite3_compileoption_used() 230 -> ::std::os::raw::c_int; in sqlite3_compileoption_used() 233 pub fn sqlite3_compileoption_get(N: ::std::os::raw::c_int) in sqlite3_compileoption_get() 234 -> *const ::std::os::raw::c_char; in sqlite3_compileoption_get() 237 pub fn sqlite3_threadsafe() -> ::std::os::raw::c_int; in sqlite3_threadsafe() 242 pub type sqlite_int64 = ::std::os::raw::c_longlong; [all …]
|
| D | bindgen_3.6.8.rs | 200 pub static mut sqlite3_version: [::std::os::raw::c_char; 0usize]; 203 pub fn sqlite3_libversion() -> *const ::std::os::raw::c_char; in sqlite3_libversion() 206 pub fn sqlite3_libversion_number() -> ::std::os::raw::c_int; in sqlite3_libversion_number() 209 pub fn sqlite3_threadsafe() -> ::std::os::raw::c_int; in sqlite3_threadsafe() 214 pub type sqlite_int64 = ::std::os::raw::c_longlong; 215 pub type sqlite_uint64 = ::std::os::raw::c_ulonglong; 219 pub fn sqlite3_close(arg1: *mut sqlite3) -> ::std::os::raw::c_int; in sqlite3_close() 223 *mut ::std::os::raw::c_void, 224 arg2: ::std::os::raw::c_int, 226 *mut *mut ::std::os::raw::c_char, [all …]
|
| D | bindgen_3.7.16.rs | 293 pub static mut sqlite3_version: [::std::os::raw::c_char; 0usize]; 296 pub fn sqlite3_libversion() -> *const ::std::os::raw::c_char; in sqlite3_libversion() 299 pub fn sqlite3_sourceid() -> *const ::std::os::raw::c_char; in sqlite3_sourceid() 302 pub fn sqlite3_libversion_number() -> ::std::os::raw::c_int; in sqlite3_libversion_number() 305 pub fn sqlite3_compileoption_used(zOptName: *const ::std::os::raw::c_char) in sqlite3_compileoption_used() 306 -> ::std::os::raw::c_int; in sqlite3_compileoption_used() 309 pub fn sqlite3_compileoption_get(N: ::std::os::raw::c_int) in sqlite3_compileoption_get() 310 -> *const ::std::os::raw::c_char; in sqlite3_compileoption_get() 313 pub fn sqlite3_threadsafe() -> ::std::os::raw::c_int; in sqlite3_threadsafe() 318 pub type sqlite_int64 = ::std::os::raw::c_longlong; [all …]
|
| /external/angle/src/common/ |
| D | PackedGLEnums_autogen.cpp | 70 std::ostream &operator<<(std::ostream &os, AlphaTestFunc value) in operator <<() argument 75 os << "GL_ALWAYS"; in operator <<() 78 os << "GL_EQUAL"; in operator <<() 81 os << "GL_GEQUAL"; in operator <<() 84 os << "GL_GREATER"; in operator <<() 87 os << "GL_LEQUAL"; in operator <<() 90 os << "GL_LESS"; in operator <<() 93 os << "GL_NEVER"; in operator <<() 96 os << "GL_NOTEQUAL"; in operator <<() 99 os << "GL_INVALID_ENUM"; in operator <<() [all …]
|
| /external/cronet/net/third_party/quiche/src/quiche/quic/core/ |
| D | quic_connection_stats.cc | 9 std::ostream& operator<<(std::ostream& os, const QuicConnectionStats& s) { in operator <<() argument 10 os << "{ bytes_sent: " << s.bytes_sent; in operator <<() 11 os << " packets_sent: " << s.packets_sent; in operator <<() 12 os << " stream_bytes_sent: " << s.stream_bytes_sent; in operator <<() 13 os << " packets_discarded: " << s.packets_discarded; in operator <<() 14 os << " bytes_received: " << s.bytes_received; in operator <<() 15 os << " packets_received: " << s.packets_received; in operator <<() 16 os << " packets_processed: " << s.packets_processed; in operator <<() 17 os << " stream_bytes_received: " << s.stream_bytes_received; in operator <<() 18 os << " bytes_retransmitted: " << s.bytes_retransmitted; in operator <<() [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
| D | MCAsmLexer.cpp | 39 void AsmToken::dump(raw_ostream &OS) const { in dump() 42 OS << "error"; in dump() 45 OS << "identifier: " << getString(); in dump() 48 OS << "int: " << getString(); in dump() 51 OS << "real: " << getString(); in dump() 54 OS << "string: " << getString(); in dump() 57 case AsmToken::Amp: OS << "Amp"; break; in dump() 58 case AsmToken::AmpAmp: OS << "AmpAmp"; break; in dump() 59 case AsmToken::At: OS << "At"; break; in dump() 60 case AsmToken::BackSlash: OS << "BackSlash"; break; in dump() [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/MC/MCParser/ |
| D | MCAsmLexer.cpp | 38 void AsmToken::dump(raw_ostream &OS) const { in dump() 41 OS << "error"; in dump() 44 OS << "identifier: " << getString(); in dump() 47 OS << "int: " << getString(); in dump() 50 OS << "real: " << getString(); in dump() 53 OS << "string: " << getString(); in dump() 56 case AsmToken::Amp: OS << "Amp"; break; in dump() 57 case AsmToken::AmpAmp: OS << "AmpAmp"; break; in dump() 58 case AsmToken::At: OS << "At"; break; in dump() 59 case AsmToken::BackSlash: OS << "BackSlash"; break; in dump() [all …]
|
| /external/libwebm/webm_parser/demo/ |
| D | demo.cc | 23 std::ostream& PrintUnknownEnumValue(std::ostream& os, T value) { in PrintUnknownEnumValue() argument 24 return os << std::to_string(static_cast<std::uint64_t>(value)) << " (?)"; in PrintUnknownEnumValue() 28 std::ostream& operator<<(std::ostream& os, Id id) { in operator <<() argument 31 return os << "EBML"; in operator <<() 33 return os << "EBMLVersion"; in operator <<() 35 return os << "EBMLReadVersion"; in operator <<() 37 return os << "EBMLMaxIDLength"; in operator <<() 39 return os << "EBMLMaxSizeLength"; in operator <<() 41 return os << "DocType"; in operator <<() 43 return os << "DocTypeVersion"; in operator <<() [all …]
|