/third_party/boost/libs/log/example/doc/ |
D | tutorial_file.cpp | 31 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()
|
D | extension_app_launcher.cpp | 60 …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()
|
D | tutorial_fmt_stream.cpp | 37 << ": <" << logging::trivial::severity in init() 59 << ": <" << logging::trivial::severity in init() 73 using namespace logging::trivial; in main()
|
D | tutorial_trivial_flt.cpp | 19 logging::trivial::severity >= logging::trivial::info in init()
|
/third_party/boost/libs/log/src/ |
D | default_sink.cpp | 92 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)
|
D | default_sink.hpp | 54 …value_extractor< boost::log::trivial::severity_level, fallback_to_default< boost::log::trivial::se…
|
/third_party/boost/boost/mpi/ |
D | nonblocking.hpp | 75 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 …]
|
D | request.hpp | 117 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/ |
D | trivial.hpp | 39 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/ |
D | data_members.cpp | 57 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/ |
D | default_filter_factory.cpp | 159 …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/ |
D | test_qrng_functions.hpp | 91 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/ |
D | has_trivial_destructor.qbk | 12 __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.
|
D | intrinsics.qbk | 70 …[[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…
|
D | has_trivial_constructor.qbk | 16 __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.
|
D | has_trivial_move_constructor.qbk | 14 __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/ |
D | mutex_nonprod.inc | 128 // [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/ |
D | main.cpp | 37 trivial::severity >= trivial::info in main()
|
/third_party/skia/third_party/externals/spirv-cross/shaders-no-opt/asm/frag/ |
D | scalar-select.spv14.asm.frag | 42 ; Not trivial 48 ; Vector not trivial 51 ; Vector trivial
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/asm/frag/ |
D | scalar-select.spv14.asm.frag | 42 ; Not trivial 48 ; Vector not trivial 51 ; Vector trivial
|
/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl-no-opt/asm/frag/ |
D | scalar-select.spv14.asm.frag | 42 ; Not trivial 48 ; Vector not trivial 51 ; Vector trivial
|
/third_party/boost/libs/outcome/doc/src/content/experimental/c-api/ |
D | limitations.md | 23 (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/ |
D | noncopyable.qbk | 58 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/ |
D | README.txt | 5 GDB: disable stepping into trivial functions. 9 Visual Studio Debugger: disable stepping into trivial functions.
|
/third_party/e2fsprogs/lib/ext2fs/tdb/patches/ |
D | copyright | 10 + trivial database library - standalone version 12 - trivial database library - private includes
|