| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/ |
| H A D | optional_relops.hpp | 8 // See http://www.boost.org/libs/optional for documentation. 18 // optional's relational operators ( ==, !=, <, >, <=, >= ) have deep-semantics (compare values). 23 // optional<T> vs optional<T> cases 28 bool operator == ( optional<T> const& x, optional<T> const& y ) in operator ==() 33 bool operator < ( optional<T> const& x, optional<T> const& y ) in operator <() 38 bool operator != ( optional<T> const& x, optional<T> const& y ) in operator !=() 43 bool operator > ( optional<T> const& x, optional<T> const& y ) in operator >() 48 bool operator <= ( optional<T> const& x, optional<T> const& y ) in operator <=() 53 bool operator >= ( optional<T> const& x, optional<T> const& y ) in operator >=() 58 // optional<T> vs T cases [all …]
|
| H A D | old_optional_implementation.hpp | 8 // See http://www.boost.org/libs/optional for documentation. 71 "binding rvalue references to optional lvalue references is disallowed"); in prevent_binding_rvalue_ref_to_optional_lvalue_ref() 118 // Creates an optional<T> uninitialized. 124 // Creates an optional<T> uninitialized. 130 // Creates an optional<T> initialized with 'val'. 140 // move-construct an optional<T> initialized from an rvalue-ref to 'val'. 150 …// Creates an optional<T> initialized with 'val' IFF cond is true, otherwise creates an uninitialz… 160 // Creates a deep copy of another optional<T> 171 // Creates a deep move of another optional<T> 210 // Assigns from another optional<T> (deep-copies the rhs value) [all …]
|
| H A D | optional_reference_spec.hpp | 7 // See http://www.boost.org/libs/optional for documentation. 33 … "binding rvalue references to optional lvalue references is disallowed"); in prevent_binding_rvalue() 41 … "binding rvalue references to optional lvalue references is disallowed"); in forward_reference() 85 struct is_optional_< ::boost::optional<U> > 114 class optional<T&> : public optional_detail::optional_tag class 126 optional() BOOST_NOEXCEPT : ptr_() {} in optional() function in boost::optional 127 optional(none_t) BOOST_NOEXCEPT : ptr_() {} in optional() function in boost::optional 130 explicit optional(const optional<U&>& rhs) BOOST_NOEXCEPT : ptr_(rhs.get_ptr()) {} in optional() function in boost::optional 131 optional(const optional& rhs) BOOST_NOEXCEPT : ptr_(rhs.get_ptr()) {} in optional() function in boost::optional 135 …explicit optional(U& rhs, BOOST_DEDUCED_TYPENAME boost::enable_if_c<detail::is_same_decayed<T, U>:… in optional() function in boost::optional [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | optional | 2 //===-------------------------- optional ----------------------------------===// 15 optional synopsis 20 // 23.6.3, optional for object types 21 template <class T> class optional; 32 constexpr bool operator==(const optional<T>&, const optional<U>&); 34 constexpr bool operator!=(const optional<T>&, const optional<U>&); 36 constexpr bool operator<(const optional<T>&, const optional<U>&); 38 constexpr bool operator>(const optional<T>&, const optional<U>&); 40 constexpr bool operator<=(const optional<T>&, const optional<U>&); 42 constexpr bool operator>=(const optional<T>&, const optional<U>&); [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | optional | 2 //===-------------------------- optional ----------------------------------===// 15 optional synopsis 20 // 23.6.3, optional for object types 21 template <class T> class optional; 32 constexpr bool operator==(const optional<T>&, const optional<U>&); 34 constexpr bool operator!=(const optional<T>&, const optional<U>&); 36 constexpr bool operator<(const optional<T>&, const optional<U>&); 38 constexpr bool operator>(const optional<T>&, const optional<U>&); 40 constexpr bool operator<=(const optional<T>&, const optional<U>&); 42 constexpr bool operator>=(const optional<T>&, const optional<U>&); [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/ |
| H A D | optional | 1 // <optional> -*- C++ -*- 25 /** @file experimental/optional 54 * @defgroup optional Optional values 57 * Class template for optional values and surrounding facilities, as 59 * optional objects (Revision 5)". 70 class optional; 80 /// Tag type to disengage optional objects. 95 /// Tag to disengage optional objects. 100 * @brief Exception class thrown when a disengaged optional object is 107 bad_optional_access() : logic_error("bad optional access") { } [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/ |
| H A D | optional | 1 // <optional> -*- C++ -*- 25 /** @file experimental/optional 54 * @defgroup optional Optional values 57 * Class template for optional values and surrounding facilities, as 59 * optional objects (Revision 5)". 70 class optional; 80 /// Tag type to disengage optional objects. 95 /// Tag to disengage optional objects. 100 * @brief Exception class thrown when a disengaged optional object is 107 bad_optional_access() : logic_error("bad optional access") { } [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/optional/f27e7908/include/experimental/ |
| H A D | optional | 7 // The idea and interface is based on Boost.Optional library 174 // 20.5.4, optional for object types 175 template <class T> class optional; 177 // 20.5.5, optional for lvalue reference types 178 template <class T> class optional<T&>; 351 class optional : private OptionalBase<T> 400 constexpr optional() noexcept : OptionalBase<T>() {}; 401 constexpr optional(nullopt_t) noexcept : OptionalBase<T>() {}; 403 optional(const optional& rhs) 412 optional(optional&& rhs) noexcept(is_nothrow_move_constructible<T>::value) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/ |
| H A D | optional.hpp | 8 // See http://www.boost.org/libs/optional for documentation. 28 #include <boost/optional/bad_optional_access.hpp> 50 #include <boost/optional/optional_fwd.hpp> 51 #include <boost/optional/detail/optional_config.hpp> 52 #include <boost/optional/detail/optional_factory_support.hpp> 53 #include <boost/optional/detail/optional_aligned_storage.hpp> 56 #include <boost/optional/detail/old_optional_implementation.hpp> 113 // Creates an optional<T> uninitialized. 119 // Creates an optional<T> uninitialized. 125 // Creates an optional<T> initialized with 'val'. [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | optional | 1 // <optional> -*- C++ -*- 25 /** @file include/optional 60 class optional; 62 /// Tag type to disengage optional objects. 76 /// Tag to disengage optional objects. 80 * @brief Exception class thrown when a disengaged optional object is 91 { return "bad optional access"; } 104 // the contained value for a std::optional. 453 * @brief Class template that provides copy/move constructors of optional. 463 * the contained value, if copying/moving an engaged optional. [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | optional | 1 // <optional> -*- C++ -*- 25 /** @file include/optional 60 class optional; 62 /// Tag type to disengage optional objects. 76 /// Tag to disengage optional objects. 80 * @brief Exception class thrown when a disengaged optional object is 91 { return "bad optional access"; } 104 // the contained value for a std::optional. 453 * @brief Class template that provides copy/move constructors of optional. 463 * the contained value, if copying/moving an engaged optional. [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/attr/ |
| H A D | test-stat-detailed-3 | 36 optional=1 43 optional=1 50 optional=1 57 optional=1 64 optional=1 71 optional=1 81 optional=1 91 optional=1 101 optional=1 111 optional=1 [all …]
|
| H A D | test-stat-detailed-2 | 36 optional=1 43 optional=1 50 optional=1 57 optional=1 64 optional=1 71 optional=1 81 optional=1 91 optional=1 101 optional=1 111 optional=1 [all …]
|
| H A D | test-stat-detailed-1 | 36 optional=1 43 optional=1 50 optional=1 57 optional=1 64 optional=1 71 optional=1 81 optional=1 91 optional=1 101 optional=1 111 optional=1
|
| /OK3568_Linux_fs/kernel/net/ipv4/netfilter/ |
| H A D | nf_nat_snmp_basic.asn1 | 61 IMPLICIT OCTET STRING OPTIONAL ({snmp_helper}) 65 IMPLICIT INTEGER OPTIONAL 69 IMPLICIT INTEGER OPTIONAL 71 Gauge32 ::= Unsigned32 OPTIONAL 75 IMPLICIT INTEGER OPTIONAL 79 IMPLICIT OCTET STRING OPTIONAL 83 IMPLICIT INTEGER OPTIONAL 113 [0] IMPLICIT PDU OPTIONAL 116 [1] IMPLICIT PDU OPTIONAL 119 [2] IMPLICIT PDU OPTIONAL [all …]
|
| /OK3568_Linux_fs/buildroot/boot/uboot/2015.07/ |
| H A D | 0001-Revert-arch-Make-board-selection-choices-optional.patch | 4 Subject: [PATCH] Revert "arch: Make board selection choices optional" 96 - optional 108 - optional 120 - optional 132 - optional 144 - optional 156 - optional 168 - optional 180 - optional 192 - optional [all …]
|
| /OK3568_Linux_fs/kernel/sound/soc/sof/ |
| H A D | sof-priv.h | 99 int (*remove)(struct snd_sof_dev *sof_dev); /* optional */ 103 int (*stall)(struct snd_sof_dev *sof_dev); /* optional */ 104 int (*reset)(struct snd_sof_dev *sof_dev); /* optional */ 106 unsigned int core_mask); /* optional */ 108 unsigned int core_mask); /* optional */ 116 u32 value); /* optional */ 118 void __iomem *addr); /* optional */ 120 u64 value); /* optional */ 122 void __iomem *addr); /* optional */ 133 irqreturn_t (*irq_handler)(int irq, void *context); /* optional */ [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | conversion.hpp | 3 #include <mbgl/util/optional.hpp> 25 optional<T> convert(const Convertible& input, Error& error); 29 a filled optional is returned. 60 * `eachMember(v, [] (const std::string&, const V&) -> optional<Error> {...})` -- called 64 * `toBool(v)` -- returns `optional<bool>`, absence indicating `v` is not a JSON boolean 65 * `toNumber(v)` -- returns `optional<float>`, absence indicating `v` is not a JSON number 66 * `toDouble(v)` -- returns `optional<double>`, absence indicating `v` is not a JSON number 67 … * `toString(v)` -- returns `optional<std::string>`, absence indicating `v` is not a JSON string 68 * `toValue(v)` -- returns `optional<Value>`, a variant type, for generic conversion, 148 friend inline optional<Convertible> objectMember(const Convertible& v, const char * name) { in objectMember() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | constant.cpp | 7 optional<bool> Converter<bool>::operator()(const Convertible& value, Error& error) const { in operator ()() 8 optional<bool> converted = toBool(value); in operator ()() 16 optional<float> Converter<float>::operator()(const Convertible& value, Error& error) const { in operator ()() 17 optional<float> converted = toNumber(value); in operator ()() 25 optional<std::string> Converter<std::string>::operator()(const Convertible& value, Error& error) co… in operator ()() 26 optional<std::string> converted = toString(value); in operator ()() 34 optional<Color> Converter<Color>::operator()(const Convertible& value, Error& error) const { in operator ()() 35 optional<std::string> string = toString(value); in operator ()() 41 optional<Color> color = Color::parse(*string); in operator ()() 50 optional<std::vector<float>> Converter<std::vector<float>>::operator()(const Convertible& value, Er… in operator ()() [all …]
|
| H A D | layer.cpp | 19 optional<Error> setLayoutProperty(Layer& layer, const std::string& name, const Convertible& value) { in setLayoutProperty() 28 optional<Error> setPaintProperty(Layer& layer, const std::string& name, const Convertible& value) { in setPaintProperty() 37 optional<Error> setPaintProperties(Layer& layer, const Convertible& value) { in setPaintProperties() 51 optional<std::unique_ptr<Layer>> convertVectorLayer(const std::string& id, const Convertible& value… in convertVectorLayer() 58 optional<std::string> source = toString(*sourceValue); in convertVectorLayer() 68 optional<std::string> sourceLayer = toString(*sourceLayerValue); in convertVectorLayer() 78 optional<Filter> filter = convert<Filter>(*filterValue, error); in convertVectorLayer() 88 static optional<std::unique_ptr<Layer>> convertRasterLayer(const std::string& id, const Convertible… in convertRasterLayer() 95 optional<std::string> source = toString(*sourceValue); in convertRasterLayer() 104 static optional<std::unique_ptr<Layer>> convertHillshadeLayer(const std::string& id, const Converti… in convertHillshadeLayer() [all …]
|
| H A D | source.cpp | 18 static optional<variant<std::string, Tileset>> convertURLOrTileset(const Convertible& value, Error&… in convertURLOrTileset() 21 optional<Tileset> tileset = convert<Tileset>(value, error); in convertURLOrTileset() 28 optional<std::string> url = toString(*urlVal); in convertURLOrTileset() 37 static optional<std::unique_ptr<Source>> convertRasterSource(const std::string& id, in convertRasterSource() 40 optional<variant<std::string, Tileset>> urlOrTileset = convertURLOrTileset(value, error); in convertRasterSource() 48 optional<float> size = toNumber(*tileSizeValue); in convertRasterSource() 59 static optional<std::unique_ptr<Source>> convertRasterDEMSource(const std::string& id, in convertRasterDEMSource() 62 optional<variant<std::string, Tileset>> urlOrTileset = convertURLOrTileset(value, error); in convertRasterDEMSource() 70 optional<float> size = toNumber(*tileSizeValue); in convertRasterDEMSource() 81 static optional<std::unique_ptr<Source>> convertVectorSource(const std::string& id, in convertVectorSource() [all …]
|
| H A D | function.cpp | 78 optional<double> operator()(const Convertible& value, Error& error) const { in operator ()() 89 optional<int64_t> operator()(const Convertible& value, Error& error) const { in operator ()() 123 static optional<std::unique_ptr<Expression>> convertLiteral(type::Type type, const Convertible& val… in convertLiteral() 125 [&] (const type::NumberType&) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 132 [&] (const type::BooleanType&) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 139 [&] (const type::StringType&) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 146 [&] (const type::ColorType&) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 153 [&] (const type::Array& array) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 163 [&] (const type::NumberType&) -> optional<std::unique_ptr<Expression>> { in convertLiteral() 167 optional<float> number = toNumber(arrayMember(value, i)); in convertLiteral() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/variant/1.1.4/include/mapbox/ |
| H A D | optional.hpp | 4 #pragma message("This implementation of optional is deprecated. See https://github.com/mapbox/varia… 15 class optional class 17 static_assert(!std::is_reference<T>::value, "optional doesn't support references"); 26 optional() = default; 28 optional(optional const& rhs) in optional() function in mapbox::util::optional 36 optional(T const& v) { variant_ = v; } in optional() function in mapbox::util::optional 46 optional& operator=(T const& v) in operator =() 52 optional& operator=(optional const& rhs) in operator =() 69 }; // class optional
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/ |
| H A D | camera.hpp | 6 #include <mbgl/util/optional.hpp> 13 optional. */ 16 optional<LatLng> center; 24 optional<ScreenCoordinate> anchor; 28 optional<double> zoom; 32 optional<double> angle; 36 optional<double> pitch; 53 animation. All fields are optional; the default values depend on how this 57 optional<Duration> duration; 64 optional<double> velocity; [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | reset.h | 24 bool optional, bool acquired); 27 bool optional, bool acquired); 29 int __device_reset(struct device *dev, bool optional); 32 bool optional, bool acquired); 35 bool shared, bool optional); 37 bool shared, bool optional, 77 static inline int __device_reset(struct device *dev, bool optional) in __device_reset() argument 79 return optional ? 0 : -ENOTSUPP; in __device_reset() 85 bool optional, bool acquired) in __of_reset_control_get() argument 87 return optional ? NULL : ERR_PTR(-ENOTSUPP); in __of_reset_control_get() [all …]
|