| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/ |
| H A D | point_arithmetic.hpp | 7 point<T> operator+(point<T> const& lhs, point<T> const& rhs) in operator +() argument 9 return point<T>(lhs.x + rhs.x, lhs.y + rhs.y); in operator +() 13 point<T> operator+(point<T> const& lhs, T const& rhs) in operator +() argument 15 return point<T>(lhs.x + rhs, lhs.y + rhs); in operator +() 19 point<T> operator-(point<T> const& lhs, point<T> const& rhs) in operator -() argument 21 return point<T>(lhs.x - rhs.x, lhs.y - rhs.y); in operator -() 25 point<T> operator-(point<T> const& lhs, T const& rhs) in operator -() argument 27 return point<T>(lhs.x - rhs, lhs.y - rhs); in operator -() 31 point<T> operator*(point<T> const& lhs, point<T> const& rhs) in operator *() argument 33 return point<T>(lhs.x * rhs.x, lhs.y * rhs.y); in operator *() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_index/ |
| H A D | type_index_facade.hpp | 90 inline bool equal(const Derived& rhs) const BOOST_NOEXCEPT { in equal() 92 const char* const right = rhs.raw_name(); in equal() 98 inline bool before(const Derived& rhs) const BOOST_NOEXCEPT { in before() 100 const char* const right = rhs.raw_name(); in before() 158 …x_facade<Derived, TypeInfo>& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOST_NOEXCEPT { in operator ==() argument 159 return static_cast<Derived const&>(lhs).equal(static_cast<Derived const&>(rhs)); in operator ==() 163 …x_facade<Derived, TypeInfo>& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOST_NOEXCEPT { in operator <() argument 164 return static_cast<Derived const&>(lhs).before(static_cast<Derived const&>(rhs)); in operator <() 170 …x_facade<Derived, TypeInfo>& lhs, const type_index_facade<Derived, TypeInfo>& rhs) BOOST_NOEXCEPT { in operator >() argument 171 return rhs < lhs; in operator >() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/core/ |
| H A D | scoped_enum.hpp | 131 …XPR bool operator ==(self_type lhs, self_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)==enum… 132 …ONSTEXPR bool operator ==(self_type lhs, enum_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)=… 133 …_CONSTEXPR bool operator ==(enum_type lhs, self_type rhs) BOOST_NOEXCEPT { return lhs==enum_type(r… 134 …XPR bool operator !=(self_type lhs, self_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)!=enum… 135 …ONSTEXPR bool operator !=(self_type lhs, enum_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)!… 136 …_CONSTEXPR bool operator !=(enum_type lhs, self_type rhs) BOOST_NOEXCEPT { return lhs!=enum_type(r… 137 …EXPR bool operator <(self_type lhs, self_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)<enum_… 138 …CONSTEXPR bool operator <(self_type lhs, enum_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)<… 139 …T_CONSTEXPR bool operator <(enum_type lhs, self_type rhs) BOOST_NOEXCEPT { return lhs<enum_type(rh… 140 …XPR bool operator <=(self_type lhs, self_type rhs) BOOST_NOEXCEPT { return enum_type(lhs.v_)<=enum… [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/ |
| H A D | tile_id_io.cpp | 8 ::std::ostream& operator<<(::std::ostream& os, const CanonicalTileID& rhs) { in operator <<() argument 11 return os << uint32_t(rhs.z) << "/" << rhs.x << "/" << rhs.y; in operator <<() 15 std::string toString(const CanonicalTileID& rhs) { in toString() argument 16 return util::toString(rhs.z) + "/" + util::toString(rhs.x) + "/" + util::toString(rhs.y); in toString() 20 ::std::ostream& operator<<(::std::ostream& os, const OverscaledTileID& rhs) { in operator <<() argument 21 return os << rhs.canonical << "=>" << uint32_t(rhs.overscaledZ); in operator <<() 25 std::string toString(const OverscaledTileID& rhs) { in toString() argument 26 return util::toString(rhs.canonical) + "=>" + util::toString(rhs.overscaledZ); in toString() 30 ::std::ostream& operator<<(::std::ostream& os, const UnwrappedTileID& rhs) { in operator <<() argument 34 return os << rhs.canonical << (rhs.wrap >= 0 ? "+" : "") << rhs.wrap; in operator <<() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/ |
| H A D | stack.h | 44 Stack(Stack&& rhs) in Stack() argument 45 : allocator_(rhs.allocator_), in Stack() 46 ownAllocator_(rhs.ownAllocator_), in Stack() 47 stack_(rhs.stack_), in Stack() 48 stackTop_(rhs.stackTop_), in Stack() 49 stackEnd_(rhs.stackEnd_), in Stack() 50 initialCapacity_(rhs.initialCapacity_) in Stack() 52 rhs.allocator_ = 0; in Stack() 53 rhs.ownAllocator_ = 0; in Stack() 54 rhs.stack_ = 0; in Stack() [all …]
|
| H A D | biginteger.h | 32 BigInteger(const BigInteger& rhs) : count_(rhs.count_) { in BigInteger() argument 33 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); in BigInteger() 55 BigInteger& operator=(const BigInteger &rhs) 57 if (this != &rhs) { 58 count_ = rhs.count_; 59 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); 154 bool operator==(const BigInteger& rhs) const { 155 … return count_ == rhs.count_ && std::memcmp(digits_, rhs.digits_, count_ * sizeof(Type)) == 0; 158 bool operator==(const Type rhs) const { 159 return count_ == 1 && digits_[0] == rhs; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeocameradata.cpp | 48 QGeoCameraDataPrivate(const QGeoCameraDataPrivate &rhs); 50 QGeoCameraDataPrivate &operator = (const QGeoCameraDataPrivate &rhs); 52 bool operator == (const QGeoCameraDataPrivate &rhs) const; 71 QGeoCameraDataPrivate::QGeoCameraDataPrivate(const QGeoCameraDataPrivate &rhs) in QGeoCameraDataPrivate() argument 72 : QSharedData(rhs), in QGeoCameraDataPrivate() 73 m_center(rhs.m_center), in QGeoCameraDataPrivate() 74 m_bearing(rhs.m_bearing), in QGeoCameraDataPrivate() 75 m_tilt(rhs.m_tilt), in QGeoCameraDataPrivate() 76 m_roll(rhs.m_roll), in QGeoCameraDataPrivate() 77 m_fieldOfView(rhs.m_fieldOfView), in QGeoCameraDataPrivate() [all …]
|
| H A D | qgeotilespec.cpp | 120 bool QGeoTileSpec::operator == (const QGeoTileSpec &rhs) const in operator ==() 122 return (*(d.constData()) == *(rhs.d.constData())); in operator ==() 125 bool QGeoTileSpec::operator < (const QGeoTileSpec &rhs) const in operator <() 127 return (*(d.constData()) < *(rhs.d.constData())); in operator <() 188 bool QGeoTileSpecPrivate::operator == (const QGeoTileSpecPrivate &rhs) const in operator ==() 190 if (plugin_ != rhs.plugin_) in operator ==() 193 if (mapId_ != rhs.mapId_) in operator ==() 196 if (zoom_ != rhs.zoom_) in operator ==() 199 if (x_ != rhs.x_) in operator ==() 202 if (y_ != rhs.y_) in operator ==() [all …]
|
| H A D | qgeocameracapabilities.cpp | 60 bool operator == (const QGeoCameraCapabilitiesPrivate &rhs) const; 134 bool QGeoCameraCapabilitiesPrivate::operator == (const QGeoCameraCapabilitiesPrivate &rhs) const in operator ==() 136 return ((supportsBearing_ == rhs.supportsBearing_) in operator ==() 137 && (supportsRolling_ == rhs.supportsRolling_) in operator ==() 138 && (supportsTilting_ == rhs.supportsTilting_) in operator ==() 139 && (valid_ == rhs.valid_) in operator ==() 140 && (minZoom_ == rhs.minZoom_) in operator ==() 141 && (maxZoom_ == rhs.maxZoom_) in operator ==() 142 && (minTilt_ == rhs.minTilt_) in operator ==() 143 && (maxTilt_ == rhs.maxTilt_) in operator ==() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/tile/ |
| H A D | tile_id.hpp | 38 ::std::ostream& operator<<(::std::ostream& os, const CanonicalTileID& rhs); 68 ::std::ostream& operator<<(::std::ostream& os, const OverscaledTileID& rhs); 94 ::std::ostream& operator<<(::std::ostream& os, const UnwrappedTileID& rhs); 105 inline bool CanonicalTileID::operator==(const CanonicalTileID& rhs) const { in operator ==() 106 return z == rhs.z && x == rhs.x && y == rhs.y; in operator ==() 109 inline bool CanonicalTileID::operator!=(const CanonicalTileID& rhs) const { in operator !=() 110 return z != rhs.z || x != rhs.x || y != rhs.y; in operator !=() 113 inline bool CanonicalTileID::operator<(const CanonicalTileID& rhs) const { in operator <() 114 return std::tie(z, x, y) < std::tie(rhs.z, rhs.x, rhs.y); in operator <() 167 inline bool OverscaledTileID::operator==(const OverscaledTileID& rhs) const { in operator ==() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/container/vector/detail/cpp03/ |
| H A D | vector.hpp | 33 ctor_helper(rhs, is_base_of<vector, Sequence>()) \ 38 ctor_helper(vector const& rhs, mpl::true_) \ 40 return rhs.vec; \ 46 ctor_helper(T const& rhs, mpl::false_) \ 48 return rhs; \ 54 rhs \ 113 vector(vector<BOOST_PP_ENUM_PARAMS(FUSION_MAX_VECTOR_SIZE, U)> const& rhs) in vector() 114 : vec(rhs.vec) {} in vector() 117 vector(vector const& rhs) in vector() 118 : vec(rhs.vec) {} in vector() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | cvstd.hpp | 532 friend String operator+ (const String& lhs, const String& rhs); 533 friend String operator+ (const String& lhs, const char* rhs); 534 friend String operator+ (const char* lhs, const String& rhs); 535 friend String operator+ (const String& lhs, char rhs); 536 friend String operator+ (char lhs, const String& rhs); 546 friend String operator+ (const String& lhs, const std::string& rhs); 547 friend String operator+ (const std::string& lhs, const String& rhs); 959 String operator + (const String& lhs, const String& rhs) in operator +() argument 962 s.allocate(lhs.len_ + rhs.len_); in operator +() 964 if (rhs.len_) memcpy(s.cstr_ + lhs.len_, rhs.cstr_, rhs.len_); in operator +() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | cvstd.hpp | 532 friend String operator+ (const String& lhs, const String& rhs); 533 friend String operator+ (const String& lhs, const char* rhs); 534 friend String operator+ (const char* lhs, const String& rhs); 535 friend String operator+ (const String& lhs, char rhs); 536 friend String operator+ (char lhs, const String& rhs); 546 friend String operator+ (const String& lhs, const std::string& rhs); 547 friend String operator+ (const std::string& lhs, const String& rhs); 959 String operator + (const String& lhs, const String& rhs) in operator +() argument 962 s.allocate(lhs.len_ + rhs.len_); in operator +() 964 if (rhs.len_) memcpy(s.cstr_ + lhs.len_, rhs.cstr_, rhs.len_); in operator +() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | cvstd.hpp | 532 friend String operator+ (const String& lhs, const String& rhs); 533 friend String operator+ (const String& lhs, const char* rhs); 534 friend String operator+ (const char* lhs, const String& rhs); 535 friend String operator+ (const String& lhs, char rhs); 536 friend String operator+ (char lhs, const String& rhs); 546 friend String operator+ (const String& lhs, const std::string& rhs); 547 friend String operator+ (const std::string& lhs, const String& rhs); 959 String operator + (const String& lhs, const String& rhs) in operator +() argument 962 s.allocate(lhs.len_ + rhs.len_); in operator +() 964 if (rhs.len_) memcpy(s.cstr_ + lhs.len_, rhs.cstr_, rhs.len_); in operator +() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | compound_expression.cpp | 484 define(">", [](double lhs, double rhs) -> Result<bool> { return lhs > rhs; }); in initializeDefinitions() argument 485 …efine(">", [](const std::string& lhs, const std::string& rhs) -> Result<bool> { return lhs > rhs; … in initializeDefinitions() argument 486 …const std::string& lhs, const std::string& rhs, const Collator& c) -> Result<bool> { return c.comp… in initializeDefinitions() argument 487 define(">=", [](double lhs, double rhs) -> Result<bool> { return lhs >= rhs; }); in initializeDefinitions() argument 488 …fine(">=",[](const std::string& lhs, const std::string& rhs) -> Result<bool> { return lhs >= rhs; … in initializeDefinitions() argument 489 …const std::string& lhs, const std::string& rhs, const Collator& c) -> Result<bool> { return c.comp… in initializeDefinitions() argument 490 define("<", [](double lhs, double rhs) -> Result<bool> { return lhs < rhs; }); in initializeDefinitions() argument 491 …efine("<", [](const std::string& lhs, const std::string& rhs) -> Result<bool> { return lhs < rhs; … in initializeDefinitions() argument 492 …const std::string& lhs, const std::string& rhs, const Collator& c) -> Result<bool> { return c.comp… in initializeDefinitions() argument 493 define("<=", [](double lhs, double rhs) -> Result<bool> { return lhs <= rhs; }); in initializeDefinitions() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/ |
| H A D | point.hpp | 64 bool operator==(point<T> const& lhs, point<T> const& rhs) { in operator ==() argument 65 return lhs.x == rhs.x && lhs.y == rhs.y; in operator ==() 69 bool operator==(mapbox::geometry::point<T> const& lhs, point<T> const& rhs) { in operator ==() argument 70 return lhs.x == rhs.x && lhs.y == rhs.y; in operator ==() 74 bool operator==(point<T> const& lhs, mapbox::geometry::point<T> const& rhs) { in operator ==() argument 75 return lhs.x == rhs.x && lhs.y == rhs.y; in operator ==() 79 bool operator!=(point<T> const& lhs, point<T> const& rhs) { in operator !=() argument 80 return lhs.x != rhs.x || lhs.y != rhs.y; in operator !=() 84 bool operator!=(mapbox::geometry::point<T> const& lhs, point<T> const& rhs) { in operator !=() argument 85 return lhs.x != rhs.x || lhs.y != rhs.y; in operator !=() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/ |
| H A D | rtw_recv_shortcut.c | 19 #define is_equal_mac_addr(lhs,rhs) ((((unsigned long)(lhs)|(unsigned long)(rhs)) & 0x01) ? \ argument 20 …nsigned char*)(rhs))) | (*(unsigned char*)(lhs + 1) ^ (*(unsigned char*)(rhs + 1))) | (*(unsigned … 21 …igned char*)(rhs + 3))) | (*(unsigned char*)(lhs + 4) ^ (*(unsigned char*)(rhs + 4))) | (*(unsigne… 22 …gned short*)(rhs))) | (*(unsigned short*)(lhs + 2) ^ (*(unsigned short*)(rhs + 2))) | (*(unsigned … 97 u8 *lhs, *rhs = NULL; in core_rxsc_get_entry() local 117 rhs = (u8*)rxsc_entry->rxsc_wlanhdr.addr1; in core_rxsc_get_entry() 119 …P("(A1)lhs=%pM rhs=%pM isEqual=%d %d\n", lhs, rhs, is_equal_mac_addr(lhs,rhs), is_equal_mac_addr(l… in core_rxsc_get_entry() 120 DBGP("(A2)lhs=%pM rhs=%pM\n", lhs+6, rhs+6); in core_rxsc_get_entry() 121 DBGP("(A3)lhs=%pM rhs=%pM\n", lhs+12, rhs+12); in core_rxsc_get_entry() 129 is_equal_mac_addr(lhs,rhs), in core_rxsc_get_entry() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/ |
| H A D | rtw_recv_shortcut.c | 19 #define is_equal_mac_addr(lhs,rhs) ((((unsigned long)(lhs)|(unsigned long)(rhs)) & 0x01) ? \ argument 20 …nsigned char*)(rhs))) | (*(unsigned char*)(lhs + 1) ^ (*(unsigned char*)(rhs + 1))) | (*(unsigned … 21 …igned char*)(rhs + 3))) | (*(unsigned char*)(lhs + 4) ^ (*(unsigned char*)(rhs + 4))) | (*(unsigne… 22 …gned short*)(rhs))) | (*(unsigned short*)(lhs + 2) ^ (*(unsigned short*)(rhs + 2))) | (*(unsigned … 97 u8 *lhs, *rhs = NULL; in core_rxsc_get_entry() local 117 rhs = (u8*)rxsc_entry->rxsc_wlanhdr.addr1; in core_rxsc_get_entry() 119 …P("(A1)lhs=%pM rhs=%pM isEqual=%d %d\n", lhs, rhs, is_equal_mac_addr(lhs,rhs), is_equal_mac_addr(l… in core_rxsc_get_entry() 120 DBGP("(A2)lhs=%pM rhs=%pM\n", lhs+6, rhs+6); in core_rxsc_get_entry() 121 DBGP("(A3)lhs=%pM rhs=%pM\n", lhs+12, rhs+12); in core_rxsc_get_entry() 129 is_equal_mac_addr(lhs,rhs), in core_rxsc_get_entry() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/container/map/detail/ |
| H A D | map_impl.hpp | 80 map_impl(map_impl const& rhs) in map_impl() 81 : rest_type(rhs.get_base()), element(rhs.element) in map_impl() 85 map_impl(map_impl&& rhs) in map_impl() 86 : rest_type(BOOST_FUSION_FWD_ELEM(rest_type, *static_cast<rest_type*>(&rhs))) in map_impl() 87 , element(BOOST_FUSION_FWD_ELEM(Pair, rhs.element)) in map_impl() 92 map_impl(map_impl<index, U...> const& rhs) in map_impl() 93 : rest_type(rhs.get_base()), element(rhs.element) in map_impl() 171 map_impl& operator=(map_impl<index, U...> const& rhs) in operator =() 173 rest_type::operator=(rhs); in operator =() 174 element = rhs.element; in operator =() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/ |
| H A D | recursive_wrapper.hpp | 54 void assign(const T& rhs); 58 recursive_wrapper& operator=(const recursive_wrapper& rhs) in operator =() argument 60 assign( rhs.get() ); in operator =() 64 recursive_wrapper& operator=(const T& rhs) in operator =() argument 66 assign( rhs ); in operator =() 79 recursive_wrapper& operator=(recursive_wrapper&& rhs) BOOST_NOEXCEPT in operator =() argument 81 swap(rhs); in operator =() 85 recursive_wrapper& operator=(T&& rhs) in operator =() argument 87 get() = detail::variant::move(rhs); in operator =() 141 void recursive_wrapper<T>::assign(const T& rhs) in assign() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/optional/detail/ |
| H A D | old_optional_implementation.hpp | 162 optional_base ( optional_base const& rhs ) in optional_base() argument 166 if ( rhs.is_initialized() ) in optional_base() 167 construct(rhs.get_impl()); in optional_base() 173 optional_base ( optional_base&& rhs ) in optional_base() argument 177 if ( rhs.is_initialized() ) in optional_base() 178 construct( boost::move(rhs.get_impl()) ); in optional_base() 211 void assign ( optional_base const& rhs ) in assign() argument 215 if ( rhs.is_initialized() ) in assign() 216 assign_value(rhs.get_impl(), is_reference_predicate() ); in assign() 221 if ( rhs.is_initialized() ) in assign() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/variant/1.1.4/include/mapbox/ |
| H A D | recursive_wrapper.hpp | 27 void assign(T const& rhs) in assign() argument 29 this->get() = rhs; in assign() 61 inline recursive_wrapper& operator=(recursive_wrapper const& rhs) in operator =() argument 63 assign(rhs.get()); in operator =() 67 inline recursive_wrapper& operator=(T const& rhs) in operator =() argument 69 assign(rhs); in operator =() 80 recursive_wrapper& operator=(recursive_wrapper&& rhs) noexcept in operator =() argument 82 swap(rhs); in operator =() 86 recursive_wrapper& operator=(T&& rhs) in operator =() argument 88 get() = std::move(rhs); in operator =() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/ |
| H A D | expression.hpp | 147 bool operator!=(const Expression& rhs) const { in operator !=() 148 return !operator==(rhs); in operator !=() 176 static bool childrenEqual(const T& lhs, const T& rhs) { in childrenEqual() argument 177 if (lhs.size() != rhs.size()) return false; in childrenEqual() 178 for (auto leftChild = lhs.begin(), rightChild = rhs.begin(); in childrenEqual() 187 …c bool childEqual(const std::unique_ptr<Expression>& lhs, const std::unique_ptr<Expression>& rhs) { in childEqual() argument 188 return *lhs == *rhs; in childEqual() 193 const std::pair<T, std::unique_ptr<Expression>>& rhs) { in childEqual() argument 194 return lhs.first == rhs.first && *(lhs.second) == *(rhs.second); in childEqual() 199 const std::pair<T, std::shared_ptr<Expression>>& rhs) { in childEqual() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/bind/ |
| H A D | mem_fn_template.hpp | 73 bool operator==(BOOST_MEM_FN_NAME(mf0) const & rhs) const in BOOST_MEM_FN_NAME() 75 return f_ == rhs.f_; in BOOST_MEM_FN_NAME() 78 bool operator!=(BOOST_MEM_FN_NAME(mf0) const & rhs) const in BOOST_MEM_FN_NAME() 80 return f_ != rhs.f_; in BOOST_MEM_FN_NAME() 123 bool operator==(BOOST_MEM_FN_NAME(cmf0) const & rhs) const in BOOST_MEM_FN_NAME() 125 return f_ == rhs.f_; in BOOST_MEM_FN_NAME() 128 bool operator!=(BOOST_MEM_FN_NAME(cmf0) const & rhs) const in BOOST_MEM_FN_NAME() 130 return f_ != rhs.f_; in BOOST_MEM_FN_NAME() 189 bool operator==(BOOST_MEM_FN_NAME(mf1) const & rhs) const in BOOST_MEM_FN_NAME() 191 return f_ == rhs.f_; in BOOST_MEM_FN_NAME() [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 | 157 optional_base ( optional_base const& rhs ) in optional_base() argument 161 if ( rhs.is_initialized() ) in optional_base() 162 construct(rhs.get_impl()); in optional_base() 168 optional_base ( optional_base&& rhs ) in optional_base() argument 172 if ( rhs.is_initialized() ) in optional_base() 173 construct( boost::move(rhs.get_impl()) ); in optional_base() 206 void assign ( optional_base const& rhs ) in assign() argument 210 if ( rhs.is_initialized() ) in assign() 211 assign_value(rhs.get_impl()); in assign() 216 if ( rhs.is_initialized() ) in assign() [all …]
|