Home
last modified time | relevance | path

Searched refs:Os (Results 1 – 25 of 170) sorted by relevance

1234567

/third_party/grpc/src/csharp/Grpc.Tools/
DProtoToolsPlatform.cs34 public string Os { get; set; } property in Grpc.Tools.ProtoToolsPlatform
46 switch (Platform.Os) in Execute()
48 case Platform.OsKind.Linux: Os = "linux"; break; in Execute()
49 case Platform.OsKind.MacOsX: Os = "macosx"; break; in Execute()
50 case Platform.OsKind.Windows: Os = "windows"; break; in Execute()
51 default: Os = ""; break; in Execute()
DCommon.cs43 public static readonly OsKind Os; field in Grpc.Tools.Platform
50 public static bool IsFsCaseInsensitive => Os == OsKind.Windows;
51 public static bool IsWindows => Os == OsKind.Windows;
56 Os = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? OsKind.Windows in Platform()
73 Os = OsKind.Windows; in Platform()
77 Os = OsKind.MacOsX; in Platform()
81 Os = OsKind.Linux; in Platform()
/third_party/boost/boost/range/
Diterator_range_io.hpp56 std::basic_ostream<Elem, Traits>& Os, in operator <<() argument
62 Elem, Traits>(Os) ); in operator <<()
63 return Os; in operator <<()
75 std::ostream& Os,
78 std::copy( r.begin(), r.end(), std::ostream_iterator<char>(Os));
79 return Os;
/third_party/grpc/src/csharp/Grpc.Tools.Tests/
DProtoToolsPlatformTaskTest.cs76 Assert.AreEqual("windows", _task.Os); in OsIsWindows()
86 Assert.AreEqual("linux", _task.Os); in OsIsLinux()
96 Assert.AreEqual("macosx", _task.Os); in OsIsMacOsX()
120 Assert.AreEqual("windows", _task.Os); in OsIsWindows()
127 Assert.AreEqual("linux", _task.Os); in OsIsLinux()
134 Assert.AreEqual("macosx", _task.Os); in OsIsMacOsX()
/third_party/mesa3d/src/gallium/frontends/clover/util/
Drange.hpp228 template<typename F, typename... Os>
230 public detail::basic_range<adaptor_range<F, Os...>,
232 F, detail::preferred_iterator_type<Os>...>,
234 F, detail::preferred_iterator_type<const Os>...>
237 typedef detail::basic_range<adaptor_range<F, Os...>,
239 F, detail::preferred_iterator_type<Os>...>,
241 F, detail::preferred_iterator_type<const Os>...>
283 std::tuple<Os...> os;
/third_party/mbedtls/scripts/
Dmemory.sh75 CFLAGS=$CFLAGS_EXEC make OFLAGS=-Os lib >/dev/null 2>&1
77 CFLAGS=$CFLAGS_EXEC make OFLAGS=-Os ssl/$CLIENT >/dev/null
85 CFLAGS=$CFLAGS_MEM make OFLAGS=-Os lib >/dev/null 2>&1
87 CFLAGS=$CFLAGS_MEM make OFLAGS=-Os ssl/$CLIENT >/dev/null
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceCompileServer.cpp196 std::unique_ptr<Ostream> Os; in run() local
213 Os.reset(FdOs.release()); in run()
216 Os->SetBufferSize(1 << 14); in run()
220 Os = makeStream(Flags.getOutputFilename(), EC); in run()
227 Os->SetUnbuffered(); in run()
248 dumpBuildAttributes(*Os.get()); in run()
252 Ctx.reset(new GlobalContext(Ls.get(), Os.get(), Ls.get(), ELFStr.get())); in run()
/third_party/boost/boost/type_erasure/
Doperators.hpp458 template<class Os = std::ostream, class T = _self>
461 static void apply(Os& out, const T& arg) { out << arg; } in apply()
466 template<class Base, class Os, class T>
467 struct concept_interface<ostreamable<Os, T>, Base, Os> : Base
473 ::boost::type_erasure::call(ostreamable<Os, T>(), lhs, rhs); in operator <<()
478 template<class Base, class Os, class T>
480 ostreamable<Os, T>,
483 typename ::boost::disable_if< ::boost::type_erasure::is_placeholder<Os> >::type
486 friend Os&
487 operator<<(Os& lhs, in operator <<()
[all …]
/third_party/boost/libs/geometry/index/example/
Dserialize.cpp31 template <typename Os>
32 static inline Os & apply(Os & os, T const& t) in apply()
42 template <typename Os>
43 static inline Os & apply(Os & os, T const&) in apply()
/third_party/mesa3d/src/gallium/frontends/clover/core/
Dobject.hpp203 template<typename Os>
204 std::vector<typename Os::value_type::descriptor_type *>
205 descs(const Os &os) { in descs()
206 return map([](typename Os::value_type &o) { in descs()
/third_party/boost/boost/units/
Dio.hpp775 template<class Os, class Quantity>
782 Os* os;
786 template<class Os, class Quantity>
787 print_default_t<Os, Quantity> print_default(Os& os, const Quantity& q) in print_default()
789 print_default_t<Os, Quantity> result = { &os, &q }; in print_default()
793 template<class Os>
814 Os* os;
818 template<class Os>
819 print_scale_t<Os> print_scale(Os& os, bool& prefixed) in print_scale()
821 print_scale_t<Os> result = { &os, &prefixed }; in print_scale()
/third_party/glslang/glslang/OSDependent/Web/
DCMakeLists.txt40 # "-Os" should be OK in MSVC; don't use /Os because CMake won't
42 target_link_libraries(glslang.js "-Os")
/third_party/flutter/skia/platform_tools/android/apps/
Dbuild.gradle5 import org.apache.tools.ant.taskdefs.condition.Os
32 if (Os.isFamily(Os.FAMILY_WINDOWS)) {
/third_party/skia/platform_tools/android/apps/
Dbuild.gradle5 import org.apache.tools.ant.taskdefs.condition.Os
32 if (Os.isFamily(Os.FAMILY_WINDOWS)) {
/third_party/jerryscript/targets/esp8266/
DMakefile53 CCFLAGS += -Os -std=c99
67 TARGET_LDFLAGS += -Os
/third_party/skia/modules/canvaskit/wasm_tools/SIMD/
Dbuild_simd_test.sh21 em++ $1 -I ../../../../ -msimd128 -Os -s WASM=1 -o output/simd_test.html
/third_party/libcoap/examples/contiki/
DMakefile.contiki26 CFLAGS += -Os -ffunction-sections
/third_party/boost/libs/assign/test/
Dlist_of.cpp245 operator<<( std::basic_ostream<Elem, Traits>& Os, in operator <<() argument
248 return Os << ::boost::make_iterator_range( r.begin(), r.end() ); in operator <<()
/third_party/libxml2/result/
Drdf1.rdr27 2 1 RPM:Os 0 0
29 2 15 RPM:Os 0 0
Drdf1.rde27 2 1 RPM:Os 0 0
29 2 15 RPM:Os 0 0
Drdf1.sax29 SAX.startElement(RPM:Os)
31 SAX.endElement(RPM:Os)
/third_party/boost/tools/build/src/tools/
Dxlf.jam22 flags xlf OPTIONS <optimization>space : -Os ;
Dgfortran.jam20 flags gfortran OPTIONS <optimization>space : -Os ;
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_opengl3/
DMakefile62 CPPFLAGS += -Wall -Wformat -Os $(EMS)
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_wgpu/
DMakefile58 CPPFLAGS += -Wall -Wformat -Os $(EMS)

1234567