Home
last modified time | relevance | path

Searched refs:trivial (Results 1 – 25 of 616) sorted by relevance

12345678910>>...25

/third_party/boost/libs/log/example/doc/
Dtutorial_file.cpp31 logging::trivial::severity >= logging::trivial::info
50 logging::trivial::severity >= logging::trivial::info
70 logging::trivial::severity >= logging::trivial::info in init()
82 using namespace logging::trivial; in main()
Dextension_app_launcher.cpp60 …logging::value_ref< logging::trivial::severity_level, logging::trivial::tag::severity > const& lev… in severity_level_as_urgency()
62 if (!level || level.get() == logging::trivial::info) in severity_level_as_urgency()
64 logging::trivial::severity_level lvl = level.get(); in severity_level_as_urgency()
65 if (lvl < logging::trivial::info) in severity_level_as_urgency()
90 … << boost::phoenix::bind(&severity_level_as_urgency, logging::trivial::severity.or_none()) in init_logging()
Dtutorial_fmt_stream.cpp37 << ": <" << logging::trivial::severity in init()
59 << ": <" << logging::trivial::severity in init()
73 using namespace logging::trivial; in main()
Dtutorial_trivial_flt.cpp19 logging::trivial::severity >= logging::trivial::info in init()
/third_party/boost/libs/log/src/
Ddefault_sink.cpp92 inline const char* severity_level_to_string(boost::log::trivial::severity_level lvl)
96 case boost::log::trivial::trace:
98 case boost::log::trivial::debug:
100 case boost::log::trivial::info:
102 case boost::log::trivial::warning:
104 case boost::log::trivial::error:
106 case boost::log::trivial::fatal:
117 explicit message_printer(boost::log::trivial::severity_level lvl) : m_level(lvl)
186 const boost::log::trivial::severity_level m_level;
195 m_severity_extractor(boost::log::trivial::info)
Ddefault_sink.hpp54 …value_extractor< boost::log::trivial::severity_level, fallback_to_default< boost::log::trivial::se…
/third_party/boost/boost/mpi/
Dnonblocking.hpp75 all_trivial_requests = all_trivial_requests && current->trivial(); in wait_any()
87 requests.push_back(*current->trivial()); in wait_any()
104 *current->trivial() = requests[index]; in wait_any()
210 all_trivial_requests = all_trivial_requests && current->trivial(); in wait_all()
223 requests.push_back(*current->trivial()); in wait_all()
281 all_trivial_requests = all_trivial_requests && current->trivial(); in wait_all()
294 requests.push_back(*current->trivial()); in wait_all()
346 if (!first->trivial()) { in test_all()
349 requests.push_back(*first->trivial()); in test_all()
379 if (!first->trivial()) { in test_all()
[all …]
Drequest.hpp117 optional<MPI_Request&> trivial() { return (m_handler in trivial() function in boost::mpi::request
118 ? m_handler->trivial() in trivial()
137 virtual optional<MPI_Request&> trivial() = 0;
/third_party/boost/boost/log/
Dtrivial.hpp39 namespace trivial { namespace
59 return boost::log::trivial::to_string< char >(lvl); in to_string()
71 const CharT* str = boost::log::trivial::to_string< CharT >(lvl); in operator <<()
100 typedef trivial::logger_type logger_type;
125 BOOST_LOG_STREAM_WITH_PARAMS(::boost::log::trivial::logger::get(),\
126 (::boost::log::keywords::severity = ::boost::log::trivial::lvl))
/third_party/boost/libs/python/test/
Ddata_members.cpp57 struct trivial struct
59 trivial() : value(123) {} in trivial() function
76 class_<trivial>("trivial") in compilability_test()
77 … .add_property("property", make_getter(&trivial::value, return_value_policy<return_by_value>())) in compilability_test()
78 .def_readonly("readonly", &trivial::value) in compilability_test()
/third_party/boost/libs/log/src/setup/
Ddefault_filter_factory.cpp159 …ate(relation_type const& rel, StringT const& string_operand, boost::log::trivial::severity_level s…
167 result_type operator() (boost::log::trivial::severity_level val) const
173 const boost::log::trivial::severity_level m_severity_operand;
324 boost::log::trivial::severity_level lvl; in parse_argument()
325 …if (name == boost::log::aux::default_attribute_names::severity() && boost::log::trivial::from_stri… in parse_argument()
328 …typedef mpl::vector< boost::log::trivial::severity_level, BOOST_PP_SEQ_ENUM(BOOST_LOG_STANDARD_STR… in parse_argument()
/third_party/boost/libs/random/test/
Dtest_qrng_functions.hpp91 Engine eng(Dimension), trivial(Dimension), streamed(Dimension), initial_state(Dimension); in discard_function() local
104 trivial = initial_state; in discard_function()
108 trivial_discard(trivial, step); in discard_function()
116 BOOST_CHECK( eng == trivial ); in discard_function()
121 T t_val = dist(trivial); in discard_function()
129 BOOST_CHECK( eng == trivial ); in discard_function()
/third_party/boost/libs/type_traits/doc/
Dhas_trivial_destructor.qbk12 __inherit If T is a (possibly cv-qualified) type with a trivial destructor
15 If a type has a trivial destructor then the destructor has no effect:
17 to omit a call to a single trivial-constructor call is of no benefit whatsoever.
23 trivial destructor; this is always safe, if possibly sub-optimal.
Dintrinsics.qbk70 …[[BOOST_HAS_TRIVIAL_ASSIGN(T)][Should evaluate to true if T has a trivial assignment operator (and…
71 …STRUCTOR(T)][Should evaluate to true if the default constructor for T is trivial (i.e. has no effe…
72 …[[BOOST_HAS_TRIVIAL_COPY(T)][Should evaluate to true if T has a trivial copy constructor (and can …
73 …[[BOOST_HAS_TRIVIAL_DESTRUCTOR(T)][Should evaluate to true if T has a trivial destructor (i.e. ~T(…
74 …[[BOOST_HAS_TRIVIAL_MOVE_CONSTRUCTOR(T)][Should evaluate to true if T has a trivial move construct…
75 …[[BOOST_HAS_TRIVIAL_MOVE_ASSIGN(T)][Should evaluate to true if T has a trivial move assignment ope…
Dhas_trivial_constructor.qbk16 __inherit If T is a (possibly cv-qualified) type with a trivial default-constructor
21 If a type has a trivial default-constructor then the constructor have no effect:
23 to omit a call to a single trivial-constructor call is of no benefit whatsoever.
29 trivial constructor; this is always safe, if possibly sub-optimal.
Dhas_trivial_move_constructor.qbk14 __inherit If T is a (possibly cv-qualified) type with a trivial move-constructor
17 If a type has a trivial move-constructor then the constructor has the same effect
23 trivial constructor; this is always safe, if possibly sub-optimal.
/third_party/abseil-cpp/absl/synchronization/internal/
Dmutex_nonprod.inc128 // [basic.life] says an object has non-trivial initialization if it is of
129 // class type and it is initialized by a constructor other than a trivial
131 // non-trivial)
133 // [basic.life] says the lifetime of an object with a non-trivial
136 // [basic.life] says the lifetime of an object with non-trivial destructor
144 // non-trivial constructor, which is called at some point during dynamic
150 // non-trivial destructor, and so its lifetime ends at some point during
200 // the case of non-trivial destructor. However, std::mutex is not specified
201 // to have a trivial destructor.
204 // trivial destructor. Today, we can achieve neither desired property using
/third_party/boost/libs/log/example/trivial/
Dmain.cpp37 trivial::severity >= trivial::info in main()
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag42 ; Not trivial
48 ; Vector not trivial
51 ; Vector trivial
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag42 ; Not trivial
48 ; Vector not trivial
51 ; Vector trivial
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/asm/frag/
Dscalar-select.spv14.asm.frag42 ; Not trivial
48 ; Vector not trivial
51 ; Vector trivial
/third_party/boost/libs/outcome/doc/src/content/experimental/c-api/
Dlimitations.md23 (Note that `std::is_trivially_copyable_v<T>` requires trivial destruction,
24 but NOT trivial construction. This means that C++ can do non-trivial construction
25 of otherwise trivial types)
43 4. Types with non-trivial destructors work fine so long as at least move construction
/third_party/boost/libs/core/doc/
Dnoncopyable.qbk58 the effect on compiler optimization of adding (even trivial inline) destructor
62 for classes which own resources and thus have non-trivial destruction semantics.]
64 With C++2011, using an optimized and trivial constructor and similar destructor
/third_party/skia/third_party/externals/imgui/misc/debuggers/
DREADME.txt5 GDB: disable stepping into trivial functions.
9 Visual Studio Debugger: disable stepping into trivial functions.
/third_party/e2fsprogs/lib/ext2fs/tdb/patches/
Dcopyright10 + trivial database library - standalone version
12 - trivial database library - private includes

12345678910>>...25