Home
last modified time | relevance | path

Searched full:os (Results 1 – 25 of 7342) sorted by relevance

12345678910>>...294

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBExtras.cpp24 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 …]
/third_party/boost/libs/io/test/
Dostream_put_test.cpp16 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 …]
Dquoted_fill_test.cpp16 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 …]
/third_party/boost/libs/utility/test/
Dostream_string_test.cpp16 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::ostream_string(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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangleNodes.cpp24 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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DMCAsmLexer.cpp39 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 …]
/third_party/python/Lib/test/
Dtest_os.py1 # As a test suite for the os module, this is woefully inadequate, but this
16 import os
63 if hasattr(os, 'geteuid'):
64 root_in_posix = (os.geteuid() == 0)
76 HAVE_WHEEL_GROUP = sys.platform.startswith('freebsd') and os.getgid() == 0
80 return unittest.skipUnless(hasattr(os, name), 'requires os.%s' % name)
90 cwd = os.getcwd()
96 # longer path if longer paths support is enabled. Internally, the os
115 cwd = os.getcwd()
118 need = min_len - (len(cwd) + len(os.path.sep))
[all …]
Dtest_posix.py13 import os
22 _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
124 "test needs os.initgroups()")
135 if os.getuid() != 0:
151 self.assertTrue(posix.statvfs(os.curdir))
182 …@unittest.skipUnless(getattr(os, 'execve', None) in os.supports_fd, "test needs execve() to suppor…
183 @unittest.skipUnless(hasattr(os, 'fork'), "test needs os.fork()")
185 fp = os.open(sys.executable, os.O_RDONLY)
187 pid = os.fork()
189 os.chdir(os.path.split(sys.executable)[0])
[all …]
Dtest_shutil.py9 import os
10 import os.path
58 builtin_rename = os.rename
59 os.rename = _fake_rename
62 os.rename = builtin_rename
68 If *path* is a tuple instead of a string, os.path.join will be used to
73 path = os.path.join(*path)
93 assert os.path.getsize(path) == size
98 If *path* is a tuple instead of a string, os.path.join will be used to
103 path = os.path.join(*path)
[all …]
/third_party/XKeyboardConfig/
Dconfig.sub126 os=$field3-$field4
129 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
139 os=$maybe_os
143 os=linux-android
147 os=$field3
156 os=
159 # Second component is usually, but not always the OS
161 # Prevent following clause from handling this valid os
162 sun*os*)
164 os=$field2
[all …]
/third_party/libevdev/build-aux/
Dconfig.sub126 os=$field3-$field4
129 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
139 os=$maybe_os
143 os=linux-android
147 os=$field3
156 os=
159 # Second component is usually, but not always the OS
161 # Prevent following clause from handling this valid os
162 sun*os*)
164 os=$field2
[all …]
/third_party/e2fsprogs/config/
Dconfig.sub127 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 …]
/third_party/boost/tools/build/src/tools/features/
Dos-feature.jam8 import os ;
10 .os-names =
15 # Not actually an OS -- used for targeting bare metal where object
23 # Feature used to determine which OS we're on. New <target-os> and <host-os>
25 local os = [ modules.peek : OS ] ;
26 feature.feature os : $(os) : propagated link-incompatible ;
28 # Translates from bjam current OS to the os tags used in host-os and
29 # target-os, i.e. returns the running host-os.
31 local rule default-host-os ( )
33 local host-os ;
[all …]
/third_party/skia/third_party/externals/angle2/src/common/
DPackedGLEnums_autogen.cpp70 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 …]
DPackedCLEnums_autogen.cpp58 std::ostream &operator<<(std::ostream &os, AddressingMode value) in operator <<() argument
63 os << "CL_ADDRESS_NONE"; in operator <<()
66 os << "CL_ADDRESS_CLAMP_TO_EDGE"; in operator <<()
69 os << "CL_ADDRESS_CLAMP"; in operator <<()
72 os << "CL_ADDRESS_REPEAT"; in operator <<()
75 os << "CL_ADDRESS_MIRRORED_REPEAT"; in operator <<()
78 os << "GL_INVALID_ENUM"; in operator <<()
81 return os; in operator <<()
132 std::ostream &operator<<(std::ostream &os, CommandQueueInfo value) in operator <<() argument
137 os << "CL_QUEUE_CONTEXT"; in operator <<()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp30 bool writeWasm(raw_ostream &OS);
33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec,
36 void writeInitExpr(raw_ostream &OS, const wasm::WasmInitExpr &InitExpr);
38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section);
41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section);
43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
44 void writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section);
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DPackedGLEnums_autogen.cpp70 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 …]
/third_party/ffmpeg/libavformat/
Doggdec.c100 struct ogg_stream *os = ogg->streams + i; in ogg_save() local
101 os->buf = av_mallocz(os->bufsize + AV_INPUT_BUFFER_PADDING_SIZE); in ogg_save()
102 if (os->buf) in ogg_save()
103 memcpy(os->buf, ost->streams[i].buf, os->bufpos); in ogg_save()
106 os->new_metadata = NULL; in ogg_save()
107 os->new_metadata_size = 0; in ogg_save()
164 struct ogg_stream *os = ogg->streams + i; in ogg_reset() local
165 os->bufpos = 0; in ogg_reset()
166 os->pstart = 0; in ogg_reset()
167 os->psize = 0; in ogg_reset()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCSectionELF.cpp30 static void printName(raw_ostream &OS, StringRef Name) { in printName() argument
34 OS << Name; in printName()
37 OS << '"'; in printName()
40 OS << "\\\""; in printName()
42 OS << *B; in printName()
44 OS << "\\\\"; in printName()
46 OS << B[0] << B[1]; // Quoted character in printName()
50 OS << '"'; in printName()
54 raw_ostream &OS, in PrintSwitchToSection() argument
57 OS << '\t' << getSectionName(); in PrintSwitchToSection()
[all …]
/third_party/mingw-w64/mingw-w64-libraries/pseh/build-aux/
Dconfig.sub114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
115 # Here we must recognize all the valid KERNEL-OS combinations.
123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
[all …]
/third_party/mingw-w64/mingw-w64-libraries/winpthreads/build-aux/
Dconfig.sub114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
115 # Here we must recognize all the valid KERNEL-OS combinations.
123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
[all …]
/third_party/skia/third_party/externals/microhttpd/
Dconfig.sub114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
115 # Here we must recognize all the valid KERNEL-OS combinations.
123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
[all …]
/third_party/mingw-w64/build-aux/
Dconfig.sub114 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
115 # Here we must recognize all the valid KERNEL-OS combinations.
123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
[all …]
/third_party/python/
Dconfig.sub113 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
114 # Here we must recognize all the valid KERNEL-OS combinations.
122 os=-$maybe_os
126 os=-linux-android
132 then os=`echo "$1" | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=-cnk
[all …]
/third_party/skia/third_party/externals/libpng/
Dconfig.sub113 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
114 # Here we must recognize all the valid KERNEL-OS combinations.
122 os=-$maybe_os
126 os=-linux-android
132 then os=`echo "$1" | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=-cnk
[all …]

12345678910>>...294