/src/PROJ/include/proj/nn.hpp
Line | Count | Source (jump to first uncovered line) |
1 | | #pragma once |
2 | | |
3 | | /* |
4 | | * Copyright (c) 2015 Dropbox, Inc. |
5 | | * |
6 | | * Licensed under the Apache License, Version 2.0 (the "License"); |
7 | | * you may not use this file except in compliance with the License. |
8 | | * You may obtain a copy of the License at |
9 | | * |
10 | | * http://www.apache.org/licenses/LICENSE-2.0 |
11 | | * |
12 | | * Unless required by applicable law or agreed to in writing, software |
13 | | * distributed under the License is distributed on an "AS IS" BASIS, |
14 | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 | | * See the License for the specific language governing permissions and |
16 | | * limitations under the License. |
17 | | */ |
18 | | |
19 | | #include <cassert> |
20 | | #include <cstdlib> |
21 | | #include <functional> |
22 | | #include <memory> |
23 | | #include <type_traits> |
24 | | |
25 | | namespace dropbox { |
26 | | namespace oxygen { |
27 | | |
28 | | // Marker type and value for use by nn below. |
29 | | struct i_promise_i_checked_for_null_t {}; |
30 | | static constexpr i_promise_i_checked_for_null_t i_promise_i_checked_for_null{}; |
31 | | |
32 | | // Helper to get the type pointed to by a raw or smart pointer. This can be |
33 | | // explicitly |
34 | | // specialized if need be to provide compatibility with user-defined smart |
35 | | // pointers. |
36 | | namespace nn_detail { |
37 | | template <typename T> struct element_type { |
38 | | using type = typename T::element_type; |
39 | | }; |
40 | | template <typename Pointee> struct element_type<Pointee *> { |
41 | | using type = Pointee; |
42 | | }; |
43 | | } |
44 | | |
45 | | template <typename PtrType> class nn; |
46 | | |
47 | | // Trait to check whether a given type is a non-nullable pointer |
48 | | template <typename T> struct is_nn : public std::false_type {}; |
49 | | template <typename PtrType> |
50 | | struct is_nn<nn<PtrType>> : public std::true_type {}; |
51 | | |
52 | | /* nn<PtrType> |
53 | | * |
54 | | * Wrapper around a pointer that is guaranteed to not be null. This works with |
55 | | * raw pointers |
56 | | * as well as any smart pointer: nn<int *>, nn<shared_ptr<DbxTable>>, |
57 | | * nn<unique_ptr<Foo>>, |
58 | | * etc. An nn<PtrType> can be used just like a PtrType. |
59 | | * |
60 | | * An nn<PtrType> can be constructed from another nn<PtrType>, if the underlying |
61 | | * type would |
62 | | * allow such construction. For example, nn<shared_ptr<PtrType>> can be copied |
63 | | * and moved, but |
64 | | * nn<unique_ptr<PtrType>> can only be moved; an nn<unique_ptr<PtrType>> can be |
65 | | * explicitly |
66 | | * (but not implicitly) created from an nn<PtrType*>; implicit upcasts are |
67 | | * allowed; and so on. |
68 | | * |
69 | | * Similarly, non-nullable pointers can be compared with regular or other |
70 | | * non-nullable |
71 | | * pointers, using the same rules as the underlying pointer types. |
72 | | * |
73 | | * This module also provides helpers for creating an nn<PtrType> from operations |
74 | | * that would |
75 | | * always return a non-null pointer: nn_make_unique, nn_make_shared, |
76 | | * nn_shared_from_this, and |
77 | | * nn_addr (a replacement for operator&). |
78 | | * |
79 | | * We abbreviate nn<unique_ptr> as nn_unique_ptr - it's a little more readable. |
80 | | * Likewise, |
81 | | * nn<shared_ptr> can be written as nn_shared_ptr. |
82 | | * |
83 | | * Finally, we define macros NN_CHECK_ASSERT and NN_CHECK_THROW, to convert a |
84 | | * nullable pointer |
85 | | * to a non-nullable pointer. At Dropbox, these use customized error-handling |
86 | | * infrastructure |
87 | | * and are in a separate file. We've included sample implementations here. |
88 | | */ |
89 | | template <typename PtrType> class nn { |
90 | | public: |
91 | | static_assert(!is_nn<PtrType>::value, "nn<nn<T>> is disallowed"); |
92 | | |
93 | | using element_type = typename nn_detail::element_type<PtrType>::type; |
94 | | |
95 | | // Pass through calls to operator* and operator-> transparently |
96 | 106k | element_type &operator*() const { return *ptr; } |
97 | 98.6M | element_type *operator->() const { return &*ptr; } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >::operator->() const Line | Count | Source | 97 | 2.09M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::NameSpace> >::operator->() const Line | Count | Source | 97 | 2 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::GenericName> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::operator->() const Line | Count | Source | 97 | 261k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::operator->() const Line | Count | Source | 97 | 2.93M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::operator->() const Line | Count | Source | 97 | 105k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::operator->() const Line | Count | Source | 97 | 36.7M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> >::operator->() const Line | Count | Source | 97 | 2.47M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::operator->() const Line | Count | Source | 97 | 2.86k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::operator->() const Line | Count | Source | 97 | 2.05M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::operator->() const Line | Count | Source | 97 | 6.13M | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectUsage> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::operator->() const Line | Count | Source | 97 | 344k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::operator->() const Line | Count | Source | 97 | 1.57M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::operator->() const Line | Count | Source | 97 | 2.06M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::operator->() const Line | Count | Source | 97 | 1.43M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::PositionalAccuracy> >::operator->() const Line | Count | Source | 97 | 126k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::operator->() const Line | Count | Source | 97 | 30.6k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::operator->() const Line | Count | Source | 97 | 397k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::operator->() const Line | Count | Source | 97 | 50.3k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::operator->() const Line | Count | Source | 97 | 662k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >::operator->() const Line | Count | Source | 97 | 11.7M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >::operator->() const Line | Count | Source | 97 | 5.05M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::operator->() const Line | Count | Source | 97 | 593k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::operator->() const Line | Count | Source | 97 | 30.0k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::operator->() const Line | Count | Source | 97 | 15.7k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::operator->() const Line | Count | Source | 97 | 1.67M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::operator->() const Line | Count | Source | 97 | 7.41M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::operator->() const Line | Count | Source | 97 | 18.7k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::operator->() const Line | Count | Source | 97 | 304 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::operator->() const Line | Count | Source | 97 | 1.90M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::operator->() const Line | Count | Source | 97 | 395 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::operator->() const Line | Count | Source | 97 | 2.59M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationFactory, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationFactory> > >::operator->() const Line | Count | Source | 97 | 11.8k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::operator->() const Line | Count | Source | 97 | 1.14M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::operator->() const Line | Count | Source | 97 | 327k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::operator->() const Line | Count | Source | 97 | 83.0k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::operator->() const Line | Count | Source | 97 | 20 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTFormatter, std::__1::default_delete<osgeo::proj::io::WKTFormatter> > >::operator->() const dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::PROJStringFormatter, std::__1::default_delete<osgeo::proj::io::PROJStringFormatter> > >::operator->() const Line | Count | Source | 97 | 618k | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::JSONFormatter, std::__1::default_delete<osgeo::proj::io::JSONFormatter> > >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::GeneralOperationParameter> >::operator->() const Line | Count | Source | 97 | 36.1k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationContext, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationContext> > >::operator->() const Line | Count | Source | 97 | 1.90M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::operator->() const Line | Count | Source | 97 | 1.03M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::operator->() const Line | Count | Source | 97 | 3.37k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::operator->() const Line | Count | Source | 97 | 34.1k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::operator->() const Line | Count | Source | 97 | 147 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::operator->() const Line | Count | Source | 97 | 31.4k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::GeneralParameterValue> >::operator->() const Line | Count | Source | 97 | 53.0k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::operator->() const Line | Count | Source | 97 | 788k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::IPROJStringExportable> >::operator->() const Line | Count | Source | 97 | 47.6k | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateTransformer, std::__1::default_delete<osgeo::proj::operation::CoordinateTransformer> > >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::operator->() const Line | Count | Source | 97 | 66.6k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent> >::operator->() const Line | Count | Source | 97 | 52 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent> >::operator->() const Line | Count | Source | 97 | 265 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >::operator->() const Line | Count | Source | 97 | 378k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::operator->() const Line | Count | Source | 97 | 428k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS const*>::operator->() const Line | Count | Source | 97 | 22.3k | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::operator->() const Line | Count | Source | 97 | 4.75k | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::operator->() const Line | Count | Source | 97 | 17 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::operator->() const Line | Count | Source | 97 | 802 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::operator->() const Line | Count | Source | 97 | 863 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::operator->() const Line | Count | Source | 97 | 10 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::operator->() const dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::operator->() const Line | Count | Source | 97 | 48.2k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::operator->() const Line | Count | Source | 97 | 32 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::operator->() const Line | Count | Source | 97 | 266 | element_type *operator->() const { return &*ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::AffineCS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> >::operator->() const Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> >::operator->() const dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> > >::operator->() const Line | Count | Source | 97 | 1.01M | element_type *operator->() const { return &*ptr; } |
|
98 | | |
99 | | // Expose the underlying PtrType |
100 | 16.0M | operator const PtrType &() const & { return ptr; } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> >::operator std::__1::shared_ptr<osgeo::proj::util::BoxedValue> const&() const & Line | Count | Source | 100 | 7.95M | operator const PtrType &() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::NameSpace> >::operator std::__1::shared_ptr<osgeo::proj::util::NameSpace> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::GenericName> >::operator std::__1::shared_ptr<osgeo::proj::util::GenericName> const&() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::operator std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> const&() const & Line | Count | Source | 100 | 545k | operator const PtrType &() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::operator std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> const&() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::operator std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> const&() const & Line | Count | Source | 100 | 1.66k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::operator std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> const&() const & Line | Count | Source | 100 | 183 | operator const PtrType &() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::operator std::__1::shared_ptr<osgeo::proj::datum::Datum> const&() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> const&() const & Line | Count | Source | 100 | 133k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> >::operator std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> const&() const & Line | Count | Source | 100 | 5.96k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::operator std::__1::shared_ptr<osgeo::proj::operation::Conversion> const&() const & Line | Count | Source | 100 | 238k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> const&() const & Line | Count | Source | 100 | 16.1k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> const&() const & Line | Count | Source | 100 | 34.8k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> const&() const & Line | Count | Source | 100 | 14.9k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> const&() const & Line | Count | Source | 100 | 22.9k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> const&() const & Line | Count | Source | 100 | 9.93k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::operator std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> const&() const & Line | Count | Source | 100 | 872k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::operator std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&() const & Line | Count | Source | 100 | 204k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> const&() const & Line | Count | Source | 100 | 143k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> const&() const & Line | Count | Source | 100 | 426 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::CRS> const&() const & Line | Count | Source | 100 | 155k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::operator std::__1::shared_ptr<osgeo::proj::util::BaseObject> const&() const & Line | Count | Source | 100 | 75.9k | operator const PtrType &() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<osgeo::proj::util::BaseObjectNNPtr>::operator osgeo::proj::util::BaseObjectNNPtr const&() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> const&() const & Line | Count | Source | 100 | 19.4k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> const&() const & Line | Count | Source | 100 | 1.58k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::operator std::__1::shared_ptr<osgeo::proj::metadata::Extent> const&() const & Line | Count | Source | 100 | 461k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> const&() const & Line | Count | Source | 100 | 81.8k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::operator std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> const&() const & Line | Count | Source | 100 | 22.4k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::operator std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> const&() const & Line | Count | Source | 100 | 2.41k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> const&() const & Line | Count | Source | 100 | 176k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableGeodToGeod> >::operator std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableGeodToGeod> const&() const & Line | Count | Source | 100 | 189 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased> >::operator std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased> const&() const & Line | Count | Source | 100 | 10.0k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVertical> >::operator std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVertical> const&() const & Line | Count | Source | 100 | 315 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical> >::operator std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical> const&() const & Line | Count | Source | 100 | 4 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> const&() const & Line | Count | Source | 100 | 128 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::operator std::__1::shared_ptr<osgeo::proj::operation::Transformation> const&() const & Line | Count | Source | 100 | 665k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> const&() const & Line | Count | Source | 100 | 15.8k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::operator std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> const&() const & Line | Count | Source | 100 | 28.7k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> const&() const & Line | Count | Source | 100 | 96.9k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >::operator std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> const&() const & Line | Count | Source | 100 | 711k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >::operator std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> const&() const & Line | Count | Source | 100 | 1.60M | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::operator std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> const&() const & Line | Count | Source | 100 | 1.56M | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::operator std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> const&() const & Line | Count | Source | 100 | 65.0k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::operator std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> const&() const & Line | Count | Source | 100 | 75 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS*>::operator osgeo::proj::crs::GeographicCRS* const&() const & Line | Count | Source | 100 | 6.83k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> const&() const & Line | Count | Source | 100 | 111k | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> const&() const & Line | Count | Source | 100 | 283 | operator const PtrType &() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > const&() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > const&() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::Meridian> >::operator std::__1::shared_ptr<osgeo::proj::cs::Meridian> const&() const & Line | Count | Source | 100 | 44 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> > >::operator std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> > const&() const & Line | Count | Source | 100 | 1.71k | operator const PtrType &() const & { return ptr; } |
|
101 | 2.59M | operator PtrType &&() && { return std::move(ptr); } Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> >::operator std::__1::shared_ptr<osgeo::proj::util::BoxedValue>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::LocalName> >::operator std::__1::shared_ptr<osgeo::proj::util::LocalName>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> >::operator std::__1::shared_ptr<osgeo::proj::util::IComparable>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::Meridian> >::operator std::__1::shared_ptr<osgeo::proj::cs::Meridian>&&() && Line | Count | Source | 101 | 74 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame>&&() && Line | Count | Source | 101 | 543k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::operator std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::operator std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid>&&() && Line | Count | Source | 101 | 319 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::operator std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble>&&() && Line | Count | Source | 101 | 5 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame>&&() && Line | Count | Source | 101 | 570 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::operator std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum>&&() && Line | Count | Source | 101 | 16 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>&&() && Line | Count | Source | 101 | 26.3k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS>&&() && Line | Count | Source | 101 | 15.2k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS>&&() && Line | Count | Source | 101 | 7.87k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS>&&() && Line | Count | Source | 101 | 6.86k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS>&&() && Line | Count | Source | 101 | 26 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::operator std::__1::shared_ptr<osgeo::proj::operation::Conversion>&&() && Line | Count | Source | 101 | 115k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation>&&() && Line | Count | Source | 101 | 1.41k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS>&&() && Line | Count | Source | 101 | 12.4k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::CartesianCS>&&() && Line | Count | Source | 101 | 4.96k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::SphericalCS>&&() && Line | Count | Source | 101 | 15 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::VerticalCS>&&() && Line | Count | Source | 101 | 1.32k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS>&&() && Line | Count | Source | 101 | 96.2k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::operator std::__1::shared_ptr<osgeo::proj::operation::Transformation>&&() && Line | Count | Source | 101 | 371k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation>&&() && Line | Count | Source | 101 | 50 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::SingleOperation>&&() && Line | Count | Source | 101 | 23.5k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::operator std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation>&&() && Line | Count | Source | 101 | 168k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::operator std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject>&&() && Line | Count | Source | 101 | 2.36k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::BoundCRS>&&() && Line | Count | Source | 101 | 2.95k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::CRS>&&() && Line | Count | Source | 101 | 21.1k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::operator std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::operator std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata>&&() && Line | Count | Source | 101 | 73 | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::ParametricCS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::operator std::__1::shared_ptr<osgeo::proj::datum::Datum>&&() && Line | Count | Source | 101 | 1.66k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameterValue> >::operator std::__1::shared_ptr<osgeo::proj::operation::OperationParameterValue>&&() && Line | Count | Source | 101 | 802k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::operator std::__1::shared_ptr<osgeo::proj::operation::InverseConversion>&&() && Line | Count | Source | 101 | 26.0k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::operator std::__1::shared_ptr<osgeo::proj::metadata::Identifier>&&() && Line | Count | Source | 101 | 264k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::operator std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation>&&() && Line | Count | Source | 101 | 63.4k | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::operator std::__1::shared_ptr<osgeo::proj::metadata::Extent>&&() && Line | Count | Source | 101 | 9.65k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS>&&() && Line | Count | Source | 101 | 1.73k | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> >&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> >&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::operator std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> >&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::operator std::__1::shared_ptr<osgeo::proj::common::ObjectDomain>&&() && Line | Count | Source | 101 | 78 | operator PtrType &&() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame>&&() && Line | Count | Source | 101 | 28 | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::AffineCS> >::operator std::__1::shared_ptr<osgeo::proj::cs::AffineCS>&&() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::operator std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame>&&() && Line | Count | Source | 101 | 3 | operator PtrType &&() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::operator std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::operator std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::operator std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem>&&() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::operator std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis>&&() && |
102 | | |
103 | | // Trying to use the assignment operator to assign a nn<PtrType> to a PtrType |
104 | | // using the |
105 | | // above conversion functions hits an ambiguous resolution bug in clang: |
106 | | // http://llvm.org/bugs/show_bug.cgi?id=18359 |
107 | | // While that exists, we can use these as simple ways of accessing the |
108 | | // underlying type |
109 | | // (instead of workarounds calling the operators explicitly or adding a |
110 | | // constructor call). |
111 | 12.5M | const PtrType &as_nullable() const & { return ptr; } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::as_nullable() const & Line | Count | Source | 111 | 5.63M | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> >::as_nullable() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >::as_nullable() const & Line | Count | Source | 111 | 1.13M | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::as_nullable() const & Line | Count | Source | 111 | 351k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::as_nullable() const & Line | Count | Source | 111 | 12.9k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> >::as_nullable() const & Line | Count | Source | 111 | 846k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::as_nullable() const & Line | Count | Source | 111 | 3.07M | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::as_nullable() const & Line | Count | Source | 111 | 14.2k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::as_nullable() const & Line | Count | Source | 111 | 200k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::as_nullable() const & Line | Count | Source | 111 | 5.61k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::as_nullable() const & Line | Count | Source | 111 | 7.31k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::as_nullable() const & Line | Count | Source | 111 | 3.73k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::as_nullable() const & Line | Count | Source | 111 | 56.9k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::as_nullable() const & Line | Count | Source | 111 | 312k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::as_nullable() const & Line | Count | Source | 111 | 273k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::as_nullable() const & Line | Count | Source | 111 | 12.8k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::as_nullable() const & Line | Count | Source | 111 | 416 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::as_nullable() const & Line | Count | Source | 111 | 2.70k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::as_nullable() const & Line | Count | Source | 111 | 668 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::as_nullable() const & Line | Count | Source | 111 | 6 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::as_nullable() const & Line | Count | Source | 111 | 10 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::as_nullable() const & Line | Count | Source | 111 | 376 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::as_nullable() const & Line | Count | Source | 111 | 25.0k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::as_nullable() const & Line | Count | Source | 111 | 24.1k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::as_nullable() const & Line | Count | Source | 111 | 40.3k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::as_nullable() const & Line | Count | Source | 111 | 9 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::as_nullable() const & Line | Count | Source | 111 | 28.1k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::as_nullable() const & Line | Count | Source | 111 | 1.72k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::as_nullable() const & Line | Count | Source | 111 | 18.7k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::as_nullable() const & Line | Count | Source | 111 | 75 | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::as_nullable() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::as_nullable() const & Line | Count | Source | 111 | 1.66k | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::as_nullable() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::as_nullable() const & Line | Count | Source | 111 | 19.8k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::as_nullable() const & Line | Count | Source | 111 | 7.65k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::as_nullable() const & Line | Count | Source | 111 | 96.9k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::as_nullable() const & Line | Count | Source | 111 | 2.72k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::as_nullable() const & Line | Count | Source | 111 | 262k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::IPROJStringExportable> >::as_nullable() const & Line | Count | Source | 111 | 47.6k | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::as_nullable() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::as_nullable() const & Line | Count | Source | 111 | 1.62k | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::as_nullable() const & Line | Count | Source | 111 | 47.7k | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::as_nullable() const & dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::as_nullable() const & Line | Count | Source | 111 | 258 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::as_nullable() const & Line | Count | Source | 111 | 8 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::as_nullable() const & Line | Count | Source | 111 | 5 | const PtrType &as_nullable() const & { return ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::as_nullable() const & Line | Count | Source | 111 | 398 | const PtrType &as_nullable() const & { return ptr; } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::as_nullable() const & Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::as_nullable() const & |
112 | 791k | PtrType &&as_nullable() && { return std::move(ptr); } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::as_nullable() && Line | Count | Source | 112 | 99.1k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::as_nullable() && Line | Count | Source | 112 | 269k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::as_nullable() && Line | Count | Source | 112 | 2.35k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::as_nullable() && Line | Count | Source | 112 | 13 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::as_nullable() && Line | Count | Source | 112 | 184 | PtrType &&as_nullable() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::as_nullable() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::as_nullable() && Line | Count | Source | 112 | 1.24k | PtrType &&as_nullable() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::as_nullable() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::as_nullable() && Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::as_nullable() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::as_nullable() && Line | Count | Source | 112 | 49 | PtrType &&as_nullable() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::as_nullable() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::as_nullable() && Line | Count | Source | 112 | 2.68k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::as_nullable() && Line | Count | Source | 112 | 335k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::as_nullable() && Line | Count | Source | 112 | 69.1k | PtrType &&as_nullable() && { return std::move(ptr); } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::as_nullable() && dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::as_nullable() && Line | Count | Source | 112 | 3 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::as_nullable() && Line | Count | Source | 112 | 4 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::as_nullable() && Line | Count | Source | 112 | 398 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::Meridian> >::as_nullable() && Line | Count | Source | 112 | 156 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::as_nullable() && Line | Count | Source | 112 | 1.10k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::as_nullable() && Line | Count | Source | 112 | 37 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::as_nullable() && Line | Count | Source | 112 | 14 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::as_nullable() && Line | Count | Source | 112 | 9.73k | PtrType &&as_nullable() && { return std::move(ptr); } |
|
113 | | |
114 | | // Can't convert to bool (that would be silly). The explicit delete results in |
115 | | // "value of type 'nn<...>' is not contextually convertible to 'bool'", rather |
116 | | // than |
117 | | // "no viable conversion", which is a bit more clear. |
118 | | operator bool() const = delete; |
119 | | |
120 | | // Explicitly deleted constructors. These help produce clearer error messages, |
121 | | // as trying |
122 | | // to use them will result in clang printing the whole line, including the |
123 | | // comment. |
124 | | nn(std::nullptr_t) = delete; // nullptr is not allowed here |
125 | | nn &operator=(std::nullptr_t) = delete; // nullptr is not allowed here |
126 | | nn(PtrType) = delete; // must use NN_CHECK_ASSERT or NN_CHECK_THROW |
127 | | nn &operator=(PtrType) = delete; // must use NN_CHECK_ASSERT or NN_CHECK_THROW |
128 | | //PROJ_DLL ~nn(); |
129 | | |
130 | | // Semi-private constructor for use by NN_CHECK_ macros. |
131 | 6.87M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { |
132 | 6.87M | } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::BaseObject> const&) Line | Count | Source | 131 | 585k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 585k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::BoxedValue> const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> const&) Line | Count | Source | 131 | 288k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 288k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> const&) Line | Count | Source | 131 | 361 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 361 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> const&) Line | Count | Source | 131 | 5 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 5 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> const&) Line | Count | Source | 131 | 29.3k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 29.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> const&) Line | Count | Source | 131 | 27.2k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 27.2k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> const&) Line | Count | Source | 131 | 80.7k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 80.7k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> const&) Line | Count | Source | 131 | 56 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 56 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> const&) Line | Count | Source | 131 | 285 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 285 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> const&) Line | Count | Source | 131 | 8 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 8 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::Extent> const&) Line | Count | Source | 131 | 343k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 343k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> const&) Line | Count | Source | 131 | 92.3k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 92.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> const&) Line | Count | Source | 131 | 23.3k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 23.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> const&) Line | Count | Source | 131 | 9.35k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 9.35k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> const&) Line | Count | Source | 131 | 29.8k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 29.8k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> const&) Line | Count | Source | 131 | 11.4k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 11.4k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> const&) Line | Count | Source | 131 | 32 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 32 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> const&) Line | Count | Source | 131 | 2.08k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 2.08k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> const&) Line | Count | Source | 131 | 1 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 1 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::Conversion> const&) Line | Count | Source | 131 | 9.70k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 9.70k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::CRS> const&) Line | Count | Source | 131 | 2.72M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 2.72M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> const&) Line | Count | Source | 131 | 18.0k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 18.0k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> const&) Line | Count | Source | 131 | 1 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 1 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&) Line | Count | Source | 131 | 366k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 366k | } |
Unexecuted instantiation: dropbox::oxygen::nn<osgeo::proj::util::BaseObjectNNPtr>::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, osgeo::proj::util::BaseObjectNNPtr const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> const&) Line | Count | Source | 131 | 3.21k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 3.21k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::Transformation> const&) Line | Count | Source | 131 | 77.1k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 77.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> const&) Line | Count | Source | 131 | 5 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 5 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> const&) Line | Count | Source | 131 | 1.72k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 1.72k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> const&) Line | Count | Source | 131 | 109 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 109 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::Datum> const&) Line | Count | Source | 131 | 691k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 691k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> const&) Line | Count | Source | 131 | 162 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 162 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::Identifier> const&) Line | Count | Source | 131 | 526k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 526k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::IPROJStringExportable> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::io::IPROJStringExportable> const&) Line | Count | Source | 131 | 37.1k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 37.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> const&) Line | Count | Source | 131 | 9.65k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 9.65k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::GenericName> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::GenericName> const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> const&) Line | Count | Source | 131 | 873k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 873k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> const&) Line | Count | Source | 131 | 6 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 6 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> const&) dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS const*>::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, osgeo::proj::crs::GeographicCRS const* const&) Line | Count | Source | 131 | 2.49k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 2.49k | } |
dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS*>::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, osgeo::proj::crs::GeographicCRS* const&) Line | Count | Source | 131 | 6.83k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 6.83k | } |
|
133 | | explicit nn(i_promise_i_checked_for_null_t, PtrType &&arg) noexcept |
134 | 30.9M | : ptr(std::move(arg)) { |
135 | 30.9M | } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::BaseObject>&&) Line | Count | Source | 134 | 2.37M | : ptr(std::move(arg)) { | 135 | 2.37M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject>&&) Line | Count | Source | 134 | 1.49M | : ptr(std::move(arg)) { | 135 | 1.49M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::BoxedValue>&&) Line | Count | Source | 134 | 7.95M | : ptr(std::move(arg)) { | 135 | 7.95M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::NameSpace> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::NameSpace>&&) Line | Count | Source | 134 | 2 | : ptr(std::move(arg)) { | 135 | 2 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::LocalName> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::LocalName>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::util::IComparable>&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext>&&) Line | Count | Source | 134 | 9.89k | : ptr(std::move(arg)) { | 135 | 9.89k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory>&&) Line | Count | Source | 134 | 1.60M | : ptr(std::move(arg)) { | 135 | 1.60M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure>&&) Line | Count | Source | 134 | 14.2k | : ptr(std::move(arg)) { | 135 | 14.2k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame>&&) Line | Count | Source | 134 | 1.37M | : ptr(std::move(arg)) { | 135 | 1.37M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>&&) Line | Count | Source | 134 | 15.9k | : ptr(std::move(arg)) { | 135 | 15.9k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS>&&) Line | Count | Source | 134 | 15.1k | : ptr(std::move(arg)) { | 135 | 15.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject>&&) Line | Count | Source | 134 | 1.50k | : ptr(std::move(arg)) { | 135 | 1.50k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation>&&) Line | Count | Source | 134 | 176k | : ptr(std::move(arg)) { | 135 | 176k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation>&&) Line | Count | Source | 134 | 138k | : ptr(std::move(arg)) { | 135 | 138k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableGeodToGeod> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableGeodToGeod>&&) Line | Count | Source | 134 | 189 | : ptr(std::move(arg)) { | 135 | 189 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::SingleOperation>&&) Line | Count | Source | 134 | 23.5k | : ptr(std::move(arg)) { | 135 | 23.5k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::CRS>&&) Line | Count | Source | 134 | 33.3k | : ptr(std::move(arg)) { | 135 | 33.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased>&&) Line | Count | Source | 134 | 17.3k | : ptr(std::move(arg)) { | 135 | 17.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVertical> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVertical>&&) Line | Count | Source | 134 | 315 | : ptr(std::move(arg)) { | 135 | 315 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical>&&) Line | Count | Source | 134 | 4 | : ptr(std::move(arg)) { | 135 | 4 | } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationContext, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationContext> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationContext, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationContext> >&&) Line | Count | Source | 134 | 12.3k | : ptr(std::move(arg)) { | 135 | 12.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS>&&) Line | Count | Source | 134 | 14.9k | : ptr(std::move(arg)) { | 135 | 14.9k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::SingleCRS>&&) Line | Count | Source | 134 | 648 | : ptr(std::move(arg)) { | 135 | 648 | } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationFactory, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationFactory> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::operation::CoordinateOperationFactory, std::__1::default_delete<osgeo::proj::operation::CoordinateOperationFactory> >&&) Line | Count | Source | 134 | 11.9k | : ptr(std::move(arg)) { | 135 | 11.9k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::Conversion>&&) Line | Count | Source | 134 | 218k | : ptr(std::move(arg)) { | 135 | 218k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::InverseConversion>&&) Line | Count | Source | 134 | 28.7k | : ptr(std::move(arg)) { | 135 | 28.7k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::ParameterValue>&&) Line | Count | Source | 134 | 803k | : ptr(std::move(arg)) { | 135 | 803k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation>&&) Line | Count | Source | 134 | 96.9k | : ptr(std::move(arg)) { | 135 | 96.9k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::operation::CoordinateTransformer, std::__1::default_delete<osgeo::proj::operation::CoordinateTransformer> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::operation::CoordinateTransformer, std::__1::default_delete<osgeo::proj::operation::CoordinateTransformer> >&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::OperationMethod>&&) Line | Count | Source | 134 | 711k | : ptr(std::move(arg)) { | 135 | 711k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameterValue> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::OperationParameterValue>&&) Line | Count | Source | 134 | 802k | : ptr(std::move(arg)) { | 135 | 802k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::OperationParameter>&&) Line | Count | Source | 134 | 803k | : ptr(std::move(arg)) { | 135 | 803k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::Transformation>&&) Line | Count | Source | 134 | 705k | : ptr(std::move(arg)) { | 135 | 705k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation>&&) Line | Count | Source | 134 | 132 | : ptr(std::move(arg)) { | 135 | 132 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation>&&) Line | Count | Source | 134 | 65.0k | : ptr(std::move(arg)) { | 135 | 65.0k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox>&&) Line | Count | Source | 134 | 834k | : ptr(std::move(arg)) { | 135 | 834k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent>&&) Line | Count | Source | 134 | 25 | : ptr(std::move(arg)) { | 135 | 25 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent>&&) Line | Count | Source | 134 | 72 | : ptr(std::move(arg)) { | 135 | 72 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::Extent>&&) Line | Count | Source | 134 | 417k | : ptr(std::move(arg)) { | 135 | 417k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent>&&) Line | Count | Source | 134 | 38.1k | : ptr(std::move(arg)) { | 135 | 38.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::Identifier>&&) Line | Count | Source | 134 | 8.53M | : ptr(std::move(arg)) { | 135 | 8.53M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::PositionalAccuracy> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::metadata::PositionalAccuracy>&&) Line | Count | Source | 134 | 269k | : ptr(std::move(arg)) { | 135 | 269k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::common::ObjectDomain>&&) Line | Count | Source | 134 | 415k | : ptr(std::move(arg)) { | 135 | 415k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata>&&) Line | Count | Source | 134 | 75 | : ptr(std::move(arg)) { | 135 | 75 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS>&&) Line | Count | Source | 134 | 113k | : ptr(std::move(arg)) { | 135 | 113k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::VerticalCS>&&) Line | Count | Source | 134 | 16.8k | : ptr(std::move(arg)) { | 135 | 16.8k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame>&&) Line | Count | Source | 134 | 12.4k | : ptr(std::move(arg)) { | 135 | 12.4k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS>&&) Line | Count | Source | 134 | 7.89k | : ptr(std::move(arg)) { | 135 | 7.89k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::BoundCRS>&&) Line | Count | Source | 134 | 9.36k | : ptr(std::move(arg)) { | 135 | 9.36k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedGeodeticCRS>&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS>&&) Line | Count | Source | 134 | 1.99k | : ptr(std::move(arg)) { | 135 | 1.99k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS>&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum>&&) Line | Count | Source | 134 | 17 | : ptr(std::move(arg)) { | 135 | 17 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalCS>&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum>&&) Line | Count | Source | 134 | 439 | : ptr(std::move(arg)) { | 135 | 439 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum>&&) Line | Count | Source | 134 | 5 | : ptr(std::move(arg)) { | 135 | 5 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::ParametricCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS>&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS>&&) Line | Count | Source | 134 | 401 | : ptr(std::move(arg)) { | 135 | 401 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> >&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> >&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> >&&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian>&&) Line | Count | Source | 134 | 11.2k | : ptr(std::move(arg)) { | 135 | 11.2k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid>&&) Line | Count | Source | 134 | 13.7k | : ptr(std::move(arg)) { | 135 | 13.7k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame>&&) Line | Count | Source | 134 | 24.1k | : ptr(std::move(arg)) { | 135 | 24.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble>&&) Line | Count | Source | 134 | 2.86k | : ptr(std::move(arg)) { | 135 | 2.86k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame>&&) Line | Count | Source | 134 | 16 | : ptr(std::move(arg)) { | 135 | 16 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::Meridian> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::Meridian>&&) Line | Count | Source | 134 | 274 | : ptr(std::move(arg)) { | 135 | 274 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis>&&) Line | Count | Source | 134 | 214k | : ptr(std::move(arg)) { | 135 | 214k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::SphericalCS>&&) Line | Count | Source | 134 | 266 | : ptr(std::move(arg)) { | 135 | 266 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS>&&) Line | Count | Source | 134 | 93.5k | : ptr(std::move(arg)) { | 135 | 93.5k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::CartesianCS>&&) Line | Count | Source | 134 | 15.5k | : ptr(std::move(arg)) { | 135 | 15.5k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::AffineCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::AffineCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::OrdinalCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::DateTimeTemporalCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalCountCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS> >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::shared_ptr<osgeo::proj::cs::TemporalMeasureCS>&&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTFormatter, std::__1::default_delete<osgeo::proj::io::WKTFormatter> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::io::WKTFormatter, std::__1::default_delete<osgeo::proj::io::WKTFormatter> >&&) dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> >&&) Line | Count | Source | 134 | 69.8k | : ptr(std::move(arg)) { | 135 | 69.8k | } |
dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::PROJStringFormatter, std::__1::default_delete<osgeo::proj::io::PROJStringFormatter> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::io::PROJStringFormatter, std::__1::default_delete<osgeo::proj::io::PROJStringFormatter> >&&) Line | Count | Source | 134 | 329k | : ptr(std::move(arg)) { | 135 | 329k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::JSONFormatter, std::__1::default_delete<osgeo::proj::io::JSONFormatter> > >::nn(dropbox::oxygen::i_promise_i_checked_for_null_t, std::__1::unique_ptr<osgeo::proj::io::JSONFormatter, std::__1::default_delete<osgeo::proj::io::JSONFormatter> >&&) |
136 | | |
137 | | // Type-converting move and copy constructor. We have four separate cases |
138 | | // here, for |
139 | | // implicit and explicit move and copy. |
140 | | template <typename OtherType, |
141 | | typename std::enable_if< |
142 | | std::is_constructible<PtrType, OtherType>::value && |
143 | | !std::is_convertible<OtherType, PtrType>::value, |
144 | | int>::type = 0> |
145 | | explicit nn(const nn<OtherType> &other) |
146 | | : ptr(other.operator const OtherType &()) {} |
147 | | |
148 | | template <typename OtherType, |
149 | | typename std::enable_if< |
150 | | std::is_constructible<PtrType, OtherType>::value && |
151 | | !std::is_convertible<OtherType, PtrType>::value && |
152 | | !std::is_pointer<OtherType>::value, |
153 | | int>::type = 0> |
154 | | explicit nn(nn<OtherType> &&other) |
155 | | : ptr(std::move(other).operator OtherType &&()) {} |
156 | | |
157 | | template <typename OtherType, |
158 | | typename std::enable_if< |
159 | | std::is_convertible<OtherType, PtrType>::value, int>::type = 0> |
160 | 13.8M | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS6_10BoxedValueEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 7.95M | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj8metadata16GeographicExtentEEEEC2INS3_INS6_21GeographicBoundingBoxEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 545k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum13DatumEnsembleEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum22GeodeticReferenceFrameEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum9EllipsoidEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum13PrimeMeridianEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum22VerticalReferenceFrameEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_5datum22GeodeticReferenceFrameEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum5DatumEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_5datum13DatumEnsembleEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_3crs11GeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs11GeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_9operation10ConversionEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_3crs12ProjectedCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_11CartesianCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 34.8k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_5datum22VerticalReferenceFrameEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_10VerticalCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 14.9k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_3crs11VerticalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs3CRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common11ObjectUsageEEEEC2INS3_INS5_3crs11CompoundCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_6common12ObjectDomainEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 872k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11GeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 109k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_13GeographicCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 34.3k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11VerticalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 8.03k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_14EngineeringCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 25 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_12ProjectedCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 3.52k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_10ConversionEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 48.3k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation10ConversionEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 189k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs3CRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 3 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum9EllipsoidEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 1.66k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum13PrimeMeridianEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs9SingleCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs13GeographicCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 109k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11GeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 9.96k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs20DerivedGeographicCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 1.58k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11VerticalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 14.9k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11CompoundCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 7.89k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_9operation19CoordinateOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 22.0k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_6common16IdentifiedObjectEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 22.4k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum5DatumEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs16CoordinateSystemEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 2.41k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation19CoordinateOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation21ConcatenatedOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 176k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2io21IPROJStringExportableEEEEC2INS3_INS5_9operation32MyPROJStringExportableGeodToGeodEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 189 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2io21IPROJStringExportableEEEEC2INS3_INS5_9operation49MyPROJStringExportableHorizVerticalHorizPROJBasedEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 10.0k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2io21IPROJStringExportableEEEEC2INS3_INS5_9operation35MyPROJStringExportableHorizVerticalEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 315 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2io21IPROJStringExportableEEEEC2INS3_INS5_9operation39MyPROJStringExportableHorizNullVerticalEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 4 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_20PointMotionOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 39 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_14TransformationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 188k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_8BoundCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 6.45k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_9SingleCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 13.2k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11CompoundCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 2.03k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation17InverseConversionEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 28.7k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation18PROJBasedOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 96.9k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation15OperationMethodEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 711k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation25GeneralOperationParameterEEEEC2INS3_INS6_18OperationParameterEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 802k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation18OperationParameterEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 803k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_9operation15OperationMethodEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 702 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation20PointMotionOperationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 89 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation14TransformationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 476k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation21InverseTransformationEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 65.0k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_8metadata6ExtentEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 317k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_11coordinates18CoordinateMetadataEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 75 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_13EllipsoidalCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 111k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_11SphericalCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 283 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_11GeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 14.1k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs12ProjectedCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 12.5k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs11GeodeticCRSEEEEC2INS3_INS6_13GeographicCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Line | Count | Source | 160 | 93 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs8BoundCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 9.36k | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedGeodeticCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_12ProjectedCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs19DerivedProjectedCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_10TemporalCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11TemporalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs14EngineeringCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Line | Count | Source | 160 | 401 | nn(const nn<OtherType> &other) : ptr(other.operator const OtherType &()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_12ParametricCSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs13ParametricCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_11VerticalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedVerticalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_27DerivedEngineeringCRSTraitsEEEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_14EngineeringCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_26DerivedParametricCRSTraitsEEEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_13ParametricCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_24DerivedTemporalCRSTraitsEEEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_11TemporalCRSEEETnNS2_9enable_ifIXsr3std14is_convertibleIT_S8_EE5valueEiE4typeELi0EEERKNS1_ISE_EE |
161 | | |
162 | | template < |
163 | | typename OtherType, |
164 | | typename std::enable_if<std::is_convertible<OtherType, PtrType>::value && |
165 | | !std::is_pointer<OtherType>::value, |
166 | | int>::type = 0> |
167 | 2.57M | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS6_10BoxedValueEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util11GenericNameEEEEC2INS3_INS6_9LocalNameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum22GeodeticReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 574 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum13PrimeMeridianEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum9EllipsoidEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 319 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum13DatumEnsembleEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 5 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum22VerticalReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 218 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_5datum16EngineeringDatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 10 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs11GeodeticCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 14.1k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs12ProjectedCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 3.46k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs11VerticalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 988 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs11CompoundCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 274 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_3crs14EngineeringCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 23 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_9operation10ConversionEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 647 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj6common16IdentifiedObjectEEEEC2INS3_INS5_9operation19CoordinateOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 1.41k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj5datum5DatumEEEEC2INS3_INS6_22GeodeticReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 542k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj5datum5DatumEEEEC2INS3_INS6_22VerticalReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 352 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj5datum5DatumEEEEC2INS3_INS6_16EngineeringDatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_13EllipsoidalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 10.7k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_11CartesianCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 4.96k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_11SphericalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 15 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_10VerticalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 1.32k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_9OrdinalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs11GeodeticCRSEEEEC2INS3_INS6_13GeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 42.4k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11GeodeticCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 12.1k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_12ProjectedCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 11.7k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11VerticalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 6.86k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs10TemporalCSEEEEC2INS3_INS6_15TemporalCountCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11TemporalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_14EngineeringCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 3 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_11CompoundCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 6.59k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_10ConversionEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 114k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_14TransformationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 371k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_20PointMotionOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 50 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_15SingleOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 21.8k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_21ConcatenatedOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 168k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_6common16IdentifiedObjectEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 2.36k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs8BoundCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs3CRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 19.2k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum22GeodeticReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 25 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum13DatumEnsembleEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj8metadata16GeographicExtentEEEEC2INS3_INS6_21GeographicBoundingBoxEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation15SingleOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 1.72k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs13GeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs12ProjectedCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_11coordinates18CoordinateMetadataEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 73 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs14EngineeringCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation10ConversionEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation14TransformationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs11CartesianCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs13EllipsoidalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 1.66k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs10VerticalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs12ParametricCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs9OrdinalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs18DateTimeTemporalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs15TemporalCountCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs17TemporalMeasureCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum5DatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 1.66k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation19CoordinateOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_13GeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 53.8k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_8BoundCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 2.95k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs9SingleCRSEEEEC2INS3_INS6_13GeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation21GeneralParameterValueEEEEC2INS3_INS6_23OperationParameterValueEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 802k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation19CoordinateOperationEEEEC2INS3_INS6_17InverseConversionEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 26.0k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_8metadata10IdentifierEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 262k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj9operation14TransformationEEEEC2INS3_INS6_21InverseTransformationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 63.4k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_19DerivedProjectedCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_20DerivedGeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 1.73k | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_18DerivedGeodeticCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_13ParametricCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_18DerivedVerticalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_18DerivedCRSTemplateINS6_27DerivedEngineeringCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISG_EE5valueEiE4typeELi0EEEONS1_ISG_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_18DerivedCRSTemplateINS6_26DerivedParametricCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISG_EE5valueEiE4typeELi0EEEONS1_ISG_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj3crs3CRSEEEEC2INS3_INS6_18DerivedCRSTemplateINS6_24DerivedTemporalCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISG_EE5valueEiE4typeELi0EEEONS1_ISG_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_6common12ObjectDomainEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 78 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj5datum22GeodeticReferenceFrameEEEEC2INS3_INS6_29DynamicGeodeticReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 28 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_12ParametricCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_18DateTimeTemporalCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_8AffineCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_17TemporalMeasureCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj2cs16CoordinateSystemEEEEC2INS3_INS6_15TemporalCountCSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj5datum22VerticalReferenceFrameEEEEC2INS3_INS6_29DynamicVerticalReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISE_EE5valueEiE4typeELi0EEEONS1_ISE_EE Line | Count | Source | 167 | 3 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11GeodeticCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11VerticalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 24 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
_ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11CompoundCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 4 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs13ParametricCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs11TemporalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedGeodeticCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs20DerivedGeographicCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs19DerivedProjectedCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedVerticalCRSEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_27DerivedEngineeringCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISH_EE5valueEiE4typeELi0EEEONS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_26DerivedParametricCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISH_EE5valueEiE4typeELi0EEEONS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_3crs18DerivedCRSTemplateINSB_24DerivedTemporalCRSTraitsEEEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISH_EE5valueEiE4typeELi0EEEONS1_ISH_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum22VerticalReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum29DynamicGeodeticReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum29DynamicVerticalReferenceFrameEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum16EngineeringDatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Line | Count | Source | 167 | 6 | nn(nn<OtherType> &&other) : ptr(std::move(other).operator OtherType &&()) {} |
Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum15ParametricDatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum13TemporalDatumEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum9EllipsoidEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_5datum13PrimeMeridianEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs16CoordinateSystemEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation20PointMotionOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_9operation21ConcatenatedOperationEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE Unexecuted instantiation: _ZN7dropbox6oxygen2nnINSt3__110shared_ptrIN5osgeo4proj4util10BaseObjectEEEEC2INS3_INS5_2cs20CoordinateSystemAxisEEETnNS2_9enable_ifIXaasr3std14is_convertibleIT_S8_EE5valuentsr3std10is_pointerISF_EE5valueEiE4typeELi0EEEONS1_ISF_EE |
168 | | |
169 | | // A type-converting move and copy assignment operator aren't necessary; |
170 | | // writing |
171 | | // "base_ptr = derived_ptr;" will run the type-converting constructor followed |
172 | | // by the |
173 | | // implicit move assignment operator. |
174 | | |
175 | | // Two-argument constructor, designed for use with the shared_ptr aliasing |
176 | | // constructor. |
177 | | // This will not be instantiated if PtrType doesn't have a suitable |
178 | | // constructor. |
179 | | template < |
180 | | typename OtherType, |
181 | | typename std::enable_if< |
182 | | std::is_constructible<PtrType, OtherType, element_type *>::value, |
183 | | int>::type = 0> |
184 | | nn(const nn<OtherType> &ownership_ptr, nn<element_type *> target_ptr) |
185 | | : ptr(ownership_ptr.operator const OtherType &(), target_ptr) {} |
186 | | |
187 | | // Comparisons. Other comparisons are implemented in terms of these. |
188 | | template <typename L, typename R> |
189 | | friend bool operator==(const nn<L> &, const R &); |
190 | | template <typename L, typename R> |
191 | | friend bool operator==(const L &, const nn<R> &); |
192 | | template <typename L, typename R> |
193 | | friend bool operator==(const nn<L> &, const nn<R> &); |
194 | | |
195 | | template <typename L, typename R> |
196 | | friend bool operator<(const nn<L> &, const R &); |
197 | | template <typename L, typename R> |
198 | | friend bool operator<(const L &, const nn<R> &); |
199 | | template <typename L, typename R> |
200 | | friend bool operator<(const nn<L> &, const nn<R> &); |
201 | | |
202 | | // ostream operator |
203 | | template <typename T> |
204 | | friend std::ostream &operator<<(std::ostream &, const nn<T> &); |
205 | | |
206 | 31.9M | template <typename T = PtrType> element_type *get() const { |
207 | 31.9M | return ptr.get(); |
208 | 31.9M | } osgeo::proj::util::ArrayOfBaseObject* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >::get<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >() const Line | Count | Source | 206 | 1.13M | template <typename T = PtrType> element_type *get() const { | 207 | 1.13M | return ptr.get(); | 208 | 1.13M | } |
osgeo::proj::util::BaseObject* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::get<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >() const Line | Count | Source | 206 | 12.7M | template <typename T = PtrType> element_type *get() const { | 207 | 12.7M | return ptr.get(); | 208 | 12.7M | } |
osgeo::proj::datum::PrimeMeridian* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::get<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >() const Line | Count | Source | 206 | 908k | template <typename T = PtrType> element_type *get() const { | 207 | 908k | return ptr.get(); | 208 | 908k | } |
osgeo::proj::datum::Ellipsoid* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::get<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >() const Line | Count | Source | 206 | 938k | template <typename T = PtrType> element_type *get() const { | 207 | 938k | return ptr.get(); | 208 | 938k | } |
Unexecuted instantiation: osgeo::proj::datum::DatumEnsemble* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::get<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >() const osgeo::proj::common::IdentifiedObject* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::get<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >() const Line | Count | Source | 206 | 43.7k | template <typename T = PtrType> element_type *get() const { | 207 | 43.7k | return ptr.get(); | 208 | 43.7k | } |
osgeo::proj::datum::Datum* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::get<std::__1::shared_ptr<osgeo::proj::datum::Datum> >() const Line | Count | Source | 206 | 1.83M | template <typename T = PtrType> element_type *get() const { | 207 | 1.83M | return ptr.get(); | 208 | 1.83M | } |
osgeo::proj::cs::CoordinateSystem* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::get<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >() const Line | Count | Source | 206 | 788k | template <typename T = PtrType> element_type *get() const { | 207 | 788k | return ptr.get(); | 208 | 788k | } |
osgeo::proj::metadata::GeographicExtent* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >::get<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >() const Line | Count | Source | 206 | 880k | template <typename T = PtrType> element_type *get() const { | 207 | 880k | return ptr.get(); | 208 | 880k | } |
osgeo::proj::datum::GeodeticReferenceFrame* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::get<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >() const Line | Count | Source | 206 | 255k | template <typename T = PtrType> element_type *get() const { | 207 | 255k | return ptr.get(); | 208 | 255k | } |
osgeo::proj::crs::GeodeticCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >() const Line | Count | Source | 206 | 44.0k | template <typename T = PtrType> element_type *get() const { | 207 | 44.0k | return ptr.get(); | 208 | 44.0k | } |
osgeo::proj::operation::GeneralParameterValue* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::GeneralParameterValue> >::get<std::__1::shared_ptr<osgeo::proj::operation::GeneralParameterValue> >() const Line | Count | Source | 206 | 3.79M | template <typename T = PtrType> element_type *get() const { | 207 | 3.79M | return ptr.get(); | 208 | 3.79M | } |
osgeo::proj::datum::VerticalReferenceFrame* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::get<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >() const Line | Count | Source | 206 | 1.23k | template <typename T = PtrType> element_type *get() const { | 207 | 1.23k | return ptr.get(); | 208 | 1.23k | } |
osgeo::proj::metadata::Extent* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::get<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >() const Line | Count | Source | 206 | 141k | template <typename T = PtrType> element_type *get() const { | 207 | 141k | return ptr.get(); | 208 | 141k | } |
Unexecuted instantiation: osgeo::proj::common::UnitOfMeasure* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::get<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >() const osgeo::proj::datum::EngineeringDatum* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::get<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >() const Line | Count | Source | 206 | 14 | template <typename T = PtrType> element_type *get() const { | 207 | 14 | return ptr.get(); | 208 | 14 | } |
osgeo::proj::crs::VerticalCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >() const Line | Count | Source | 206 | 644 | template <typename T = PtrType> element_type *get() const { | 207 | 644 | return ptr.get(); | 208 | 644 | } |
osgeo::proj::crs::ProjectedCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >() const Line | Count | Source | 206 | 6 | template <typename T = PtrType> element_type *get() const { | 207 | 6 | return ptr.get(); | 208 | 6 | } |
Unexecuted instantiation: osgeo::proj::crs::CompoundCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >() const osgeo::proj::crs::EngineeringCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> >() const Line | Count | Source | 206 | 376 | template <typename T = PtrType> element_type *get() const { | 207 | 376 | return ptr.get(); | 208 | 376 | } |
osgeo::proj::operation::Conversion* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::get<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >() const Line | Count | Source | 206 | 28.8k | template <typename T = PtrType> element_type *get() const { | 207 | 28.8k | return ptr.get(); | 208 | 28.8k | } |
osgeo::proj::datum::DynamicGeodeticReferenceFrame* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >::get<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> >() const Line | Count | Source | 206 | 24.1k | template <typename T = PtrType> element_type *get() const { | 207 | 24.1k | return ptr.get(); | 208 | 24.1k | } |
osgeo::proj::crs::CRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::CRS> >() const Line | Count | Source | 206 | 3.24M | template <typename T = PtrType> element_type *get() const { | 207 | 3.24M | return ptr.get(); | 208 | 3.24M | } |
osgeo::proj::operation::CoordinateOperation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::get<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >() const Line | Count | Source | 206 | 2.96M | template <typename T = PtrType> element_type *get() const { | 207 | 2.96M | return ptr.get(); | 208 | 2.96M | } |
osgeo::proj::operation::OperationMethod* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >::get<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >() const Line | Count | Source | 206 | 515k | template <typename T = PtrType> element_type *get() const { | 207 | 515k | return ptr.get(); | 208 | 515k | } |
osgeo::proj::io::PROJStringFormatter* dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::PROJStringFormatter, std::__1::default_delete<osgeo::proj::io::PROJStringFormatter> > >::get<std::__1::unique_ptr<osgeo::proj::io::PROJStringFormatter, std::__1::default_delete<osgeo::proj::io::PROJStringFormatter> > >() const Line | Count | Source | 206 | 194k | template <typename T = PtrType> element_type *get() const { | 207 | 194k | return ptr.get(); | 208 | 194k | } |
Unexecuted instantiation: osgeo::proj::io::WKTFormatter* dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTFormatter, std::__1::default_delete<osgeo::proj::io::WKTFormatter> > >::get<std::__1::unique_ptr<osgeo::proj::io::WKTFormatter, std::__1::default_delete<osgeo::proj::io::WKTFormatter> > >() const Unexecuted instantiation: osgeo::proj::io::JSONFormatter* dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::JSONFormatter, std::__1::default_delete<osgeo::proj::io::JSONFormatter> > >::get<std::__1::unique_ptr<osgeo::proj::io::JSONFormatter, std::__1::default_delete<osgeo::proj::io::JSONFormatter> > >() const osgeo::proj::operation::Transformation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::get<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >() const Line | Count | Source | 206 | 59.7k | template <typename T = PtrType> element_type *get() const { | 207 | 59.7k | return ptr.get(); | 208 | 59.7k | } |
osgeo::proj::crs::SingleCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >() const Line | Count | Source | 206 | 18.4k | template <typename T = PtrType> element_type *get() const { | 207 | 18.4k | return ptr.get(); | 208 | 18.4k | } |
osgeo::proj::operation::ConcatenatedOperation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::get<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >() const Line | Count | Source | 206 | 7.65k | template <typename T = PtrType> element_type *get() const { | 207 | 7.65k | return ptr.get(); | 208 | 7.65k | } |
osgeo::proj::operation::PROJBasedOperation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::get<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >() const Line | Count | Source | 206 | 96.9k | template <typename T = PtrType> element_type *get() const { | 207 | 96.9k | return ptr.get(); | 208 | 96.9k | } |
osgeo::proj::cs::EllipsoidalCS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::get<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >() const Line | Count | Source | 206 | 55.8k | template <typename T = PtrType> element_type *get() const { | 207 | 55.8k | return ptr.get(); | 208 | 55.8k | } |
Unexecuted instantiation: osgeo::proj::operation::PointMotionOperation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::get<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >() const osgeo::proj::crs::GeographicCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >() const Line | Count | Source | 206 | 18.8k | template <typename T = PtrType> element_type *get() const { | 207 | 18.8k | return ptr.get(); | 208 | 18.8k | } |
osgeo::proj::cs::CoordinateSystemAxis* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::get<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >() const Line | Count | Source | 206 | 1.05M | template <typename T = PtrType> element_type *get() const { | 207 | 1.05M | return ptr.get(); | 208 | 1.05M | } |
osgeo::proj::operation::InverseConversion* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::get<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >() const Line | Count | Source | 206 | 2.72k | template <typename T = PtrType> element_type *get() const { | 207 | 2.72k | return ptr.get(); | 208 | 2.72k | } |
osgeo::proj::operation::GeneralOperationParameter* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::GeneralOperationParameter> >::get<std::__1::shared_ptr<osgeo::proj::operation::GeneralOperationParameter> >() const Line | Count | Source | 206 | 36.1k | template <typename T = PtrType> element_type *get() const { | 207 | 36.1k | return ptr.get(); | 208 | 36.1k | } |
osgeo::proj::operation::OperationParameter* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >::get<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >() const Line | Count | Source | 206 | 59.8k | template <typename T = PtrType> element_type *get() const { | 207 | 59.8k | return ptr.get(); | 208 | 59.8k | } |
osgeo::proj::operation::ParameterValue* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::get<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >() const Line | Count | Source | 206 | 53.0k | template <typename T = PtrType> element_type *get() const { | 207 | 53.0k | return ptr.get(); | 208 | 53.0k | } |
osgeo::proj::operation::InverseTransformation* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >::get<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> >() const Line | Count | Source | 206 | 1.62k | template <typename T = PtrType> element_type *get() const { | 207 | 1.62k | return ptr.get(); | 208 | 1.62k | } |
osgeo::proj::metadata::GeographicBoundingBox* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >::get<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> >() const Line | Count | Source | 206 | 38.1k | template <typename T = PtrType> element_type *get() const { | 207 | 38.1k | return ptr.get(); | 208 | 38.1k | } |
osgeo::proj::metadata::VerticalExtent* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent> >::get<std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent> >() const Line | Count | Source | 206 | 18 | template <typename T = PtrType> element_type *get() const { | 207 | 18 | return ptr.get(); | 208 | 18 | } |
osgeo::proj::metadata::TemporalExtent* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent> >::get<std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent> >() const Line | Count | Source | 206 | 80 | template <typename T = PtrType> element_type *get() const { | 207 | 80 | return ptr.get(); | 208 | 80 | } |
Unexecuted instantiation: osgeo::proj::crs::DerivedProjectedCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> >() const osgeo::proj::crs::DerivedGeographicCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> >() const Line | Count | Source | 206 | 258 | template <typename T = PtrType> element_type *get() const { | 207 | 258 | return ptr.get(); | 208 | 258 | } |
Unexecuted instantiation: osgeo::proj::cs::CartesianCS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::get<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >() const osgeo::proj::metadata::Identifier* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::get<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >() const Line | Count | Source | 206 | 30 | template <typename T = PtrType> element_type *get() const { | 207 | 30 | return ptr.get(); | 208 | 30 | } |
osgeo::proj::common::ObjectDomain* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >::get<std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> >() const Line | Count | Source | 206 | 320 | template <typename T = PtrType> element_type *get() const { | 207 | 320 | return ptr.get(); | 208 | 320 | } |
osgeo::proj::crs::BoundCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >() const Line | Count | Source | 206 | 9 | template <typename T = PtrType> element_type *get() const { | 207 | 9 | return ptr.get(); | 208 | 9 | } |
Unexecuted instantiation: osgeo::proj::crs::DerivedVerticalCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> >() const Unexecuted instantiation: osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits>* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > >() const Unexecuted instantiation: osgeo::proj::crs::TemporalCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> >() const Unexecuted instantiation: osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits>* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > >() const Unexecuted instantiation: osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits>* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >::get<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > >() const Unexecuted instantiation: osgeo::proj::crs::ParametricCRS* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >::get<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> >() const osgeo::proj::datum::TemporalDatum* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >::get<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> >() const Line | Count | Source | 206 | 8 | template <typename T = PtrType> element_type *get() const { | 207 | 8 | return ptr.get(); | 208 | 8 | } |
osgeo::proj::datum::ParametricDatum* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >::get<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> >() const Line | Count | Source | 206 | 5 | template <typename T = PtrType> element_type *get() const { | 207 | 5 | return ptr.get(); | 208 | 5 | } |
osgeo::proj::coordinates::CoordinateMetadata* dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::get<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >() const Line | Count | Source | 206 | 2 | template <typename T = PtrType> element_type *get() const { | 207 | 2 | return ptr.get(); | 208 | 2 | } |
|
209 | | |
210 | | private: |
211 | | // Backing pointer |
212 | | PtrType ptr; |
213 | | }; |
214 | | |
215 | | // Base comparisons - these are friends of nn<PtrType>, so they can access .ptr |
216 | | // directly. |
217 | 980 | template <typename L, typename R> bool operator==(const nn<L> &l, const R &r) { |
218 | 980 | return l.ptr == r; |
219 | 980 | } bool dropbox::oxygen::operator==<std::__1::shared_ptr<osgeo::proj::crs::CRS>, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> const&) Line | Count | Source | 217 | 980 | template <typename L, typename R> bool operator==(const nn<L> &l, const R &r) { | 218 | 980 | return l.ptr == r; | 219 | 980 | } |
Unexecuted instantiation: bool dropbox::oxygen::operator==<std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> >, decltype(nullptr)>(dropbox::oxygen::nn<std::__1::unique_ptr<osgeo::proj::io::WKTNode, std::__1::default_delete<osgeo::proj::io::WKTNode> > > const&, decltype(nullptr) const&) |
220 | | template <typename L, typename R> bool operator==(const L &l, const nn<R> &r) { |
221 | | return l == r.ptr; |
222 | | } |
223 | | template <typename L, typename R> |
224 | 21.7k | bool operator==(const nn<L> &l, const nn<R> &r) { |
225 | 21.7k | return l.ptr == r.ptr; |
226 | 21.7k | } bool dropbox::oxygen::operator==<std::__1::shared_ptr<osgeo::proj::operation::Transformation>, std::__1::shared_ptr<osgeo::proj::operation::Transformation> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&) Line | Count | Source | 224 | 21.7k | bool operator==(const nn<L> &l, const nn<R> &r) { | 225 | 21.7k | return l.ptr == r.ptr; | 226 | 21.7k | } |
bool dropbox::oxygen::operator==<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure>, std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > const&) Line | Count | Source | 224 | 11 | bool operator==(const nn<L> &l, const nn<R> &r) { | 225 | 11 | return l.ptr == r.ptr; | 226 | 11 | } |
|
227 | | template <typename L, typename R> bool operator<(const nn<L> &l, const R &r) { |
228 | | return l.ptr < r; |
229 | | } |
230 | | template <typename L, typename R> bool operator<(const L &l, const nn<R> &r) { |
231 | | return l < r.ptr; |
232 | | } |
233 | | template <typename L, typename R> |
234 | | bool operator<(const nn<L> &l, const nn<R> &r) { |
235 | | return l.ptr < r.ptr; |
236 | | } |
237 | | template <typename T> |
238 | | std::ostream &operator<<(std::ostream &os, const nn<T> &p) { |
239 | | return os << p.ptr; |
240 | | } |
241 | | |
242 | | #define NN_DERIVED_OPERATORS(op, base) \ |
243 | | template <typename L, typename R> \ |
244 | 0 | bool operator op(const nn<L> &l, const R &r) { \ |
245 | 0 | return base; \ |
246 | 0 | } \ |
247 | | template <typename L, typename R> \ |
248 | | bool operator op(const L &l, const nn<R> &r) { \ |
249 | | return base; \ |
250 | | } \ |
251 | | template <typename L, typename R> \ |
252 | 21.7k | bool operator op(const nn<L> &l, const nn<R> &r) { \ |
253 | 21.7k | return base; \ |
254 | 21.7k | } |
255 | | |
256 | | NN_DERIVED_OPERATORS(>, r < l) |
257 | | NN_DERIVED_OPERATORS(<=, !(l > r)) |
258 | | NN_DERIVED_OPERATORS(>=, !(l < r)) |
259 | | NN_DERIVED_OPERATORS(!=, !(l == r)) |
260 | | |
261 | | #undef NN_DERIVED_OPERATORS |
262 | | |
263 | | // Convenience typedefs |
264 | | template <typename T> using nn_unique_ptr = nn<std::unique_ptr<T>>; |
265 | | template <typename T> using nn_shared_ptr = nn<std::shared_ptr<T>>; |
266 | | |
267 | | template <typename T, typename... Args> |
268 | | nn_unique_ptr<T> nn_make_unique(Args &&... args) { |
269 | | return nn_unique_ptr<T>( |
270 | | i_promise_i_checked_for_null, |
271 | | std::unique_ptr<T>(new T(std::forward<Args>(args)...))); |
272 | | } |
273 | | |
274 | | template <typename T, typename... Args> |
275 | 8.07M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { |
276 | 8.07M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
277 | 8.07M | std::make_shared<T>(std::forward<Args>(args)...)); |
278 | 8.07M | } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> > dropbox::oxygen::nn_make_shared<osgeo::proj::util::BoxedValue, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Line | Count | Source | 275 | 6.11M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 6.11M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 6.11M | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 6.11M | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> > dropbox::oxygen::nn_make_shared<osgeo::proj::util::BoxedValue, char const*&>(char const*&) Line | Count | Source | 275 | 851k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 851k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 851k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 851k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> > dropbox::oxygen::nn_make_shared<osgeo::proj::util::BoxedValue, int&>(int&) Line | Count | Source | 275 | 960k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 960k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 960k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 960k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BoxedValue> > dropbox::oxygen::nn_make_shared<osgeo::proj::util::BoxedValue, bool&>(bool&) Line | Count | Source | 275 | 25.4k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 25.4k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 25.4k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 25.4k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > dropbox::oxygen::nn_make_shared<osgeo::proj::common::UnitOfMeasure, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&, osgeo::proj::common::UnitOfMeasure::Type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&, osgeo::proj::common::UnitOfMeasure::Type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Line | Count | Source | 275 | 14.2k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 14.2k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 14.2k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 14.2k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableGeodToGeod> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::MyPROJStringExportableGeodToGeod, std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>, std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >(std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>&&, std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>&&) Line | Count | Source | 275 | 189 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 189 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 189 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 189 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::MyPROJStringExportableHorizVerticalHorizPROJBased, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> const&>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> const&) Line | Count | Source | 275 | 17.3k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 17.3k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 17.3k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 17.3k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizVertical> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::MyPROJStringExportableHorizVertical, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS>&>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&, std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS>&) Line | Count | Source | 275 | 315 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 315 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 315 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 315 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::MyPROJStringExportableHorizNullVertical, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) Line | Count | Source | 275 | 4 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 4 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 4 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 4 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::InverseConversion, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> > const&>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> > const&) Line | Count | Source | 275 | 26.0k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 26.0k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 26.0k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 26.0k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> > dropbox::oxygen::nn_make_shared<osgeo::proj::operation::InverseTransformation, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&) Line | Count | Source | 275 | 63.4k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 63.4k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 63.4k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 63.4k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > dropbox::oxygen::nn_make_shared<osgeo::proj::common::UnitOfMeasure, osgeo::proj::common::UnitOfMeasure const&>(osgeo::proj::common::UnitOfMeasure const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > dropbox::oxygen::nn_make_shared<osgeo::proj::common::UnitOfMeasure, osgeo::proj::common::UnitOfMeasure&>(osgeo::proj::common::UnitOfMeasure&) Line | Count | Source | 275 | 25 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 25 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 25 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 25 | } |
|
279 | | |
280 | | template <typename T> |
281 | | class nn_enable_shared_from_this : public std::enable_shared_from_this<T> { |
282 | | public: |
283 | | using std::enable_shared_from_this<T>::enable_shared_from_this; |
284 | | nn_shared_ptr<T> nn_shared_from_this() { |
285 | | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
286 | | this->shared_from_this()); |
287 | | } |
288 | | nn_shared_ptr<const T> nn_shared_from_this() const { |
289 | | return nn_shared_ptr<const T>(i_promise_i_checked_for_null, |
290 | | this->shared_from_this()); |
291 | | } |
292 | | }; |
293 | | |
294 | | template <typename T> nn<T *> nn_addr(T &object) { |
295 | | return nn<T *>(i_promise_i_checked_for_null, &object); |
296 | | } |
297 | | |
298 | | template <typename T> nn<const T *> nn_addr(const T &object) { |
299 | | return nn<const T *>(i_promise_i_checked_for_null, &object); |
300 | | } |
301 | | |
302 | | /* Non-nullable equivalents of shared_ptr's specialized casting functions. |
303 | | * These convert through a shared_ptr since nn<shared_ptr<T>> lacks the |
304 | | * ref-count-sharing cast |
305 | | * constructor, but thanks to moves there shouldn't be any significant extra |
306 | | * cost. */ |
307 | | template <typename T, typename U> |
308 | 919k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { |
309 | 919k | auto raw_ptr = |
310 | 919k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); |
311 | 919k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); |
312 | 919k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
313 | 919k | std::move(nullable_ptr)); |
314 | 919k | } Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::IComparable, osgeo::proj::datum::PrimeMeridian>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::IComparable, osgeo::proj::datum::Ellipsoid>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::IComparable, osgeo::proj::datum::GeodeticReferenceFrame>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::IComparable, osgeo::proj::datum::DatumEnsemble>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::IComparable> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::IComparable, osgeo::proj::datum::VerticalReferenceFrame>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::util::ArrayOfBaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> > const&) Line | Count | Source | 308 | 561k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 561k | auto raw_ptr = | 310 | 561k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 561k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 561k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 561k | std::move(nullable_ptr)); | 314 | 561k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::metadata::Extent>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::common::UnitOfMeasure>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::PrimeMeridian>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::Ellipsoid>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> > const&) Line | Count | Source | 308 | 584 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 584 | auto raw_ptr = | 310 | 584 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 584 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 584 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 584 | std::move(nullable_ptr)); | 314 | 584 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::DatumEnsemble>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::GeodeticReferenceFrame>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::VerticalReferenceFrame>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> > const&) Line | Count | Source | 308 | 125 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 125 | auto raw_ptr = | 310 | 125 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 125 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 125 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 125 | std::move(nullable_ptr)); | 314 | 125 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::EngineeringDatum>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> > const&) Line | Count | Source | 308 | 9 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 9 | auto raw_ptr = | 310 | 9 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 9 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 9 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 9 | std::move(nullable_ptr)); | 314 | 9 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::GeodeticCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::VerticalCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::ProjectedCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::CompoundCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::EngineeringCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::Conversion>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> > const&) Line | Count | Source | 308 | 299 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 299 | auto raw_ptr = | 310 | 299 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 299 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 299 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 299 | std::move(nullable_ptr)); | 314 | 299 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::datum::GeodeticReferenceFrame, osgeo::proj::datum::DynamicGeodeticReferenceFrame>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicGeodeticReferenceFrame> > const&) Line | Count | Source | 308 | 24.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 24.1k | auto raw_ptr = | 310 | 24.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 24.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 24.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 24.1k | std::move(nullable_ptr)); | 314 | 24.1k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::datum::GeodeticReferenceFrame, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::ConcatenatedOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> > const&) Line | Count | Source | 308 | 7.65k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 7.65k | auto raw_ptr = | 310 | 7.65k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 7.65k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 7.65k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 7.65k | std::move(nullable_ptr)); | 314 | 7.65k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::SingleOperation, osgeo::proj::operation::PROJBasedOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> > const&) Line | Count | Source | 308 | 23.5k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 23.5k | auto raw_ptr = | 310 | 23.5k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 23.5k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 23.5k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 23.5k | std::move(nullable_ptr)); | 314 | 23.5k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::VerticalCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> > const&) Line | Count | Source | 308 | 644 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 644 | auto raw_ptr = | 310 | 644 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 644 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 644 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 644 | std::move(nullable_ptr)); | 314 | 644 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::Transformation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&) Line | Count | Source | 308 | 28.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 28.1k | auto raw_ptr = | 310 | 28.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 28.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 28.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 28.1k | std::move(nullable_ptr)); | 314 | 28.1k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::GeographicCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> > const&) Line | Count | Source | 308 | 18.7k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 18.7k | auto raw_ptr = | 310 | 18.7k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 18.7k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 18.7k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 18.7k | std::move(nullable_ptr)); | 314 | 18.7k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::ProjectedCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> > const&) Line | Count | Source | 308 | 6 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 6 | auto raw_ptr = | 310 | 6 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 6 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 6 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 6 | std::move(nullable_ptr)); | 314 | 6 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::CompoundCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::Conversion>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> > const&) Line | Count | Source | 308 | 24.7k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 24.7k | auto raw_ptr = | 310 | 24.7k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 24.7k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 24.7k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 24.7k | std::move(nullable_ptr)); | 314 | 24.7k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::InverseConversion>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> > const&) Line | Count | Source | 308 | 2.72k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2.72k | auto raw_ptr = | 310 | 2.72k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2.72k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2.72k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2.72k | std::move(nullable_ptr)); | 314 | 2.72k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::PROJBasedOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> > const&) Line | Count | Source | 308 | 73.4k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 73.4k | auto raw_ptr = | 310 | 73.4k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 73.4k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 73.4k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 73.4k | std::move(nullable_ptr)); | 314 | 73.4k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::PointMotionOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::GeodeticCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> > const&) Line | Count | Source | 308 | 39 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 39 | auto raw_ptr = | 310 | 39 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 39 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 39 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 39 | std::move(nullable_ptr)); | 314 | 39 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::operation::InverseTransformation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseTransformation> > const&) Line | Count | Source | 308 | 1.62k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 1.62k | auto raw_ptr = | 310 | 1.62k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 1.62k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 1.62k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 1.62k | std::move(nullable_ptr)); | 314 | 1.62k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::metadata::GeographicExtent, osgeo::proj::metadata::GeographicBoundingBox>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicBoundingBox> > const&) Line | Count | Source | 308 | 38.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 38.1k | auto raw_ptr = | 310 | 38.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 38.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 38.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 38.1k | std::move(nullable_ptr)); | 314 | 38.1k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::metadata::Extent, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 308 | 100k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 100k | auto raw_ptr = | 310 | 100k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 100k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 100k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 100k | std::move(nullable_ptr)); | 314 | 100k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedProjectedCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedProjectedCRS> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedGeographicCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedGeographicCRS> > const&) Line | Count | Source | 308 | 258 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 258 | auto raw_ptr = | 310 | 258 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 258 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 258 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 258 | std::move(nullable_ptr)); | 314 | 258 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::GeodeticCRS, osgeo::proj::crs::GeographicCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> > const&) Line | Count | Source | 308 | 53 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 53 | auto raw_ptr = | 310 | 53 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 53 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 53 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 53 | std::move(nullable_ptr)); | 314 | 53 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::cs::VerticalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Line | Count | Source | 308 | 2.64k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2.64k | auto raw_ptr = | 310 | 2.64k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2.64k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2.64k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2.64k | std::move(nullable_ptr)); | 314 | 2.64k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::cs::TemporalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::cs::ParametricCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::BoundCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> > const&) Line | Count | Source | 308 | 9 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 9 | auto raw_ptr = | 310 | 9 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 9 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 9 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 9 | std::move(nullable_ptr)); | 314 | 9 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 308 | 1.52k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 1.52k | auto raw_ptr = | 310 | 1.52k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 1.52k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 1.52k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 1.52k | std::move(nullable_ptr)); | 314 | 1.52k | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedVerticalCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedVerticalCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedTemporalCRSTraits> > > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::TemporalCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedEngineeringCRSTraits> > > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::EngineeringCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> > const&) Line | Count | Source | 308 | 376 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 376 | auto raw_ptr = | 310 | 376 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 376 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 376 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 376 | std::move(nullable_ptr)); | 314 | 376 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> >(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::DerivedCRSTemplate<osgeo::proj::crs::DerivedParametricCRSTraits> > > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::crs::ParametricCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 308 | 8.90k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 8.90k | auto raw_ptr = | 310 | 8.90k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 8.90k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 8.90k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 8.90k | std::move(nullable_ptr)); | 314 | 8.90k | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::TemporalDatum>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::TemporalDatum> > const&) Line | Count | Source | 308 | 8 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 8 | auto raw_ptr = | 310 | 8 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 8 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 8 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 8 | std::move(nullable_ptr)); | 314 | 8 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::datum::ParametricDatum>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::ParametricDatum> > const&) Line | Count | Source | 308 | 5 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 5 | auto raw_ptr = | 310 | 5 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 5 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 5 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 5 | std::move(nullable_ptr)); | 314 | 5 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::PROJBasedOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> > const&) Line | Count | Source | 308 | 2 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2 | auto raw_ptr = | 310 | 2 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2 | std::move(nullable_ptr)); | 314 | 2 | } |
Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::Transformation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::ConcatenatedOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> > const&) Unexecuted instantiation: dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::operation::PointMotionOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> > const&) dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::metadata::Identifier>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> > const&) Line | Count | Source | 308 | 30 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 30 | auto raw_ptr = | 310 | 30 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 30 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 30 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 30 | std::move(nullable_ptr)); | 314 | 30 | } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > dropbox::oxygen::nn_static_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::coordinates::CoordinateMetadata>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> > const&) Line | Count | Source | 308 | 2 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2 | auto raw_ptr = | 310 | 2 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2 | std::move(nullable_ptr)); | 314 | 2 | } |
|
315 | | |
316 | | template <typename T, typename U> |
317 | 3.51M | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { |
318 | 3.51M | auto raw_ptr = |
319 | 3.51M | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); |
320 | 3.51M | if (!raw_ptr) { |
321 | 1.16M | return nullptr; |
322 | 2.34M | } else { |
323 | 2.34M | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); |
324 | 2.34M | } |
325 | 3.51M | } std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::VerticalReferenceFrame, osgeo::proj::datum::Datum>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> > const&) Line | Count | Source | 317 | 3.21k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 3.21k | auto raw_ptr = | 319 | 3.21k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 3.21k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 3.21k | } else { | 323 | 3.21k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 3.21k | } | 325 | 3.21k | } |
std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::GeodeticReferenceFrame, osgeo::proj::datum::Datum>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> > const&) Line | Count | Source | 317 | 346k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 346k | auto raw_ptr = | 319 | 346k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 346k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 346k | } else { | 323 | 346k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 346k | } | 325 | 346k | } |
std::__1::shared_ptr<osgeo::proj::crs::CRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Line | Count | Source | 317 | 6.83k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 6.83k | auto raw_ptr = | 319 | 6.83k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 6.83k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 6.83k | } else { | 323 | 6.83k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 6.83k | } | 325 | 6.83k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::PrimeMeridian, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::Ellipsoid, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::GeodeticReferenceFrame, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::DatumEnsemble, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::VerticalReferenceFrame, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeographicCRS, osgeo::proj::crs::GeodeticCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> > const&) Line | Count | Source | 317 | 1.96k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1.96k | auto raw_ptr = | 319 | 1.96k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1.96k | if (!raw_ptr) { | 321 | 44 | return nullptr; | 322 | 1.91k | } else { | 323 | 1.91k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.91k | } | 325 | 1.96k | } |
std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::EllipsoidalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Line | Count | Source | 317 | 34.2k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 34.2k | auto raw_ptr = | 319 | 34.2k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 34.2k | if (!raw_ptr) { | 321 | 7.71k | return nullptr; | 322 | 26.5k | } else { | 323 | 26.5k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 26.5k | } | 325 | 34.2k | } |
std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::CartesianCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Line | Count | Source | 317 | 11.6k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 11.6k | auto raw_ptr = | 319 | 11.6k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 11.6k | if (!raw_ptr) { | 321 | 32 | return nullptr; | 322 | 11.5k | } else { | 323 | 11.5k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 11.5k | } | 325 | 11.6k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeodeticCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeodeticCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 317 | 9.33k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 9.33k | auto raw_ptr = | 319 | 9.33k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 9.33k | if (!raw_ptr) { | 321 | 5.62k | return nullptr; | 322 | 5.62k | } else { | 323 | 3.71k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 3.71k | } | 325 | 9.33k | } |
std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::SphericalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Line | Count | Source | 317 | 32 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 32 | auto raw_ptr = | 319 | 32 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 32 | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 32 | } else { | 323 | 32 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 32 | } | 325 | 32 | } |
std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::VerticalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Line | Count | Source | 317 | 1.91k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1.91k | auto raw_ptr = | 319 | 1.91k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1.91k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 1.91k | } else { | 323 | 1.91k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.91k | } | 325 | 1.91k | } |
std::__1::shared_ptr<osgeo::proj::operation::Conversion> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::Conversion, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) Line | Count | Source | 317 | 2.77k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.77k | auto raw_ptr = | 319 | 2.77k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.77k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 2.77k | } else { | 323 | 2.77k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.77k | } | 325 | 2.77k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ProjectedCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) std::__1::shared_ptr<osgeo::proj::crs::CRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::CRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 575 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 575 | auto raw_ptr = | 319 | 575 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 575 | if (!raw_ptr) { | 321 | 355 | return nullptr; | 322 | 355 | } else { | 323 | 220 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 220 | } | 325 | 575 | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::CoordinateOperation, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::PointMotionOperation, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) Line | Count | Source | 317 | 1 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1 | auto raw_ptr = | 319 | 1 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1 | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 1 | } else { | 323 | 1 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1 | } | 325 | 1 | } |
std::__1::shared_ptr<osgeo::proj::util::BaseObject> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::util::BaseObject, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 11.3k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 11.3k | auto raw_ptr = | 319 | 11.3k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 11.3k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 11.3k | } else { | 323 | 11.3k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 11.3k | } | 325 | 11.3k | } |
std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::common::IdentifiedObject, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 1.50k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1.50k | auto raw_ptr = | 319 | 1.50k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1.50k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 1.50k | } else { | 323 | 1.50k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.50k | } | 325 | 1.50k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::InverseConversion, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeographicCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 317 | 553k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 553k | auto raw_ptr = | 319 | 553k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 553k | if (!raw_ptr) { | 321 | 8.75k | return nullptr; | 322 | 545k | } else { | 323 | 545k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 545k | } | 325 | 553k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::VerticalCRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::SingleCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::BoundCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 317 | 7.68k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 7.68k | auto raw_ptr = | 319 | 7.68k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 7.68k | if (!raw_ptr) { | 321 | 6.67k | return nullptr; | 322 | 6.67k | } else { | 323 | 1.01k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.01k | } | 325 | 7.68k | } |
std::__1::shared_ptr<osgeo::proj::operation::Conversion> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::Conversion, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 26.0k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 26.0k | auto raw_ptr = | 319 | 26.0k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 26.0k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 26.0k | } else { | 323 | 26.0k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 26.0k | } | 325 | 26.0k | } |
std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::CompoundCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 317 | 8.22k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 8.22k | auto raw_ptr = | 319 | 8.22k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 8.22k | if (!raw_ptr) { | 321 | 7.06k | return nullptr; | 322 | 7.06k | } else { | 323 | 1.16k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.16k | } | 325 | 8.22k | } |
std::__1::shared_ptr<osgeo::proj::operation::Transformation> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::Transformation, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 63.6k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 63.6k | auto raw_ptr = | 319 | 63.6k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 63.6k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 63.6k | } else { | 323 | 63.6k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 63.6k | } | 325 | 63.6k | } |
std::__1::shared_ptr<osgeo::proj::operation::Transformation> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::operation::Transformation, osgeo::proj::operation::CoordinateOperation>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> > const&) Line | Count | Source | 317 | 1.62k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1.62k | auto raw_ptr = | 319 | 1.62k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1.62k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 1.62k | } else { | 323 | 1.62k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.62k | } | 325 | 1.62k | } |
std::__1::shared_ptr<osgeo::proj::metadata::Identifier> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::metadata::Identifier, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 523k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 523k | auto raw_ptr = | 319 | 523k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 523k | if (!raw_ptr) { | 321 | 261k | return nullptr; | 322 | 262k | } else { | 323 | 262k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 262k | } | 325 | 523k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::util::GenericName> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::util::GenericName, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) std::__1::shared_ptr<osgeo::proj::metadata::Extent> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::metadata::Extent, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 141k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 141k | auto raw_ptr = | 319 | 141k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 141k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 141k | } else { | 323 | 141k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 141k | } | 325 | 141k | } |
std::__1::shared_ptr<osgeo::proj::common::ObjectDomain> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::common::ObjectDomain, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 1.74M | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 1.74M | auto raw_ptr = | 319 | 1.74M | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 1.74M | if (!raw_ptr) { | 321 | 871k | return nullptr; | 322 | 872k | } else { | 323 | 872k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 872k | } | 325 | 1.74M | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::Datum> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::Datum, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeodeticCRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeographicCRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) Line | Count | Source | 317 | 2.47k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.47k | auto raw_ptr = | 319 | 2.47k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.47k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 2.47k | } else { | 323 | 2.47k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.47k | } | 325 | 2.47k | } |
std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::util::ArrayOfBaseObject, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 152 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 152 | auto raw_ptr = | 319 | 152 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 152 | if (!raw_ptr) { | 321 | 70 | return nullptr; | 322 | 82 | } else { | 323 | 82 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 82 | } | 325 | 152 | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ProjectedCRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::VerticalCRS, osgeo::proj::crs::CRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> > const&) Line | Count | Source | 317 | 194 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 194 | auto raw_ptr = | 319 | 194 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 194 | if (!raw_ptr) { | 321 | 12 | return nullptr; | 322 | 182 | } else { | 323 | 182 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 182 | } | 325 | 194 | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::CompoundCRS, osgeo::proj::common::IdentifiedObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> > const&) std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::GeodeticCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) Line | Count | Source | 317 | 5.65k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 5.65k | auto raw_ptr = | 319 | 5.65k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 5.65k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 5.65k | } else { | 323 | 5.65k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 5.65k | } | 325 | 5.65k | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ProjectedCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ProjectedCRS, osgeo::proj::crs::ProjectedCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::VerticalCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::EngineeringCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ParametricCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::TemporalCRS, osgeo::proj::crs::SingleCRS>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> > const&) std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ProjectedCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Line | Count | Source | 317 | 3 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 3 | auto raw_ptr = | 319 | 3 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 3 | if (!raw_ptr) { | 321 | 3 | return nullptr; | 322 | 3 | } else { | 323 | 0 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 0 | } | 325 | 3 | } |
Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::cs::TemporalCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::TemporalCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::cs::ParametricCS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::ParametricCS, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::cs::CoordinateSystem, osgeo::proj::cs::CoordinateSystem>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::VerticalCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::EngineeringCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::EngineeringCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::ParametricCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::ParametricCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::crs::TemporalCRS> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::crs::TemporalCRS, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::GeodeticReferenceFrame, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) Unexecuted instantiation: std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> dropbox::oxygen::nn_dynamic_pointer_cast<osgeo::proj::datum::VerticalReferenceFrame, osgeo::proj::util::BaseObject>(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> > const&) |
326 | | |
327 | | template <typename T, typename U> |
328 | | nn_shared_ptr<T> nn_const_pointer_cast(const nn_shared_ptr<U> &org_ptr) { |
329 | | auto raw_ptr = |
330 | | const_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); |
331 | | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); |
332 | | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
333 | | std::move(nullable_ptr)); |
334 | | } |
335 | | } |
336 | | } /* end namespace dropbox::oxygen */ |
337 | | |
338 | | namespace std { |
339 | | template <typename T> struct hash<::dropbox::oxygen::nn<T>> { |
340 | | using argument_type = ::dropbox::oxygen::nn<T>; |
341 | | using result_type = size_t; |
342 | | result_type operator()(const argument_type &obj) const { |
343 | | return std::hash<T>{}(obj.as_nullable()); |
344 | | } |
345 | | }; |
346 | | } |
347 | | |
348 | | /* These have to be macros because our internal versions invoke other macros |
349 | | * that use |
350 | | * __FILE__ and __LINE__, which we want to correctly point to the call site. |
351 | | * We're looking |
352 | | * forward to std::source_location :) |
353 | | * |
354 | | * The lambdas ensure that we only evaluate _e once. |
355 | | */ |
356 | | #include <stdexcept> |
357 | | |
358 | | // NN_CHECK_ASSERT takes a pointer of type PT (e.g. raw pointer, std::shared_ptr |
359 | | // or std::unique_ptr) |
360 | | // and returns a non-nullable pointer of type nn<PT>. |
361 | | // Triggers an assertion if expression evaluates to null. |
362 | | #define NN_CHECK_ASSERT(_e) \ |
363 | 527k | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ |
364 | 527k | /* note: assert() alone is not sufficient here, because it might be \ |
365 | 527k | * compiled out. */ \ |
366 | 527k | assert(p &&#_e " must not be null"); \ |
367 | 527k | if (!p) \ |
368 | 527k | std::abort(); \ |
369 | 527k | return dropbox::oxygen::nn< \ |
370 | 527k | typename std::remove_reference<decltype(p)>::type>( \ |
371 | 527k | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ |
372 | 527k | })(_e)) util.cpp:osgeo::proj::util::BaseObject::shared_from_this() const::$_0::operator()(std::__1::shared_ptr<osgeo::proj::util::BaseObject>) const Line | Count | Source | 363 | 527k | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 364 | 527k | /* note: assert() alone is not sufficient here, because it might be \ | 365 | 527k | * compiled out. */ \ | 366 | 527k | assert(p &&#_e " must not be null"); \ | 367 | 527k | if (!p) \ | 368 | 527k | std::abort(); \ | 369 | 527k | return dropbox::oxygen::nn< \ | 370 | 527k | typename std::remove_reference<decltype(p)>::type>( \ | 371 | 527k | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 372 | 527k | })(_e)) |
Unexecuted instantiation: crs.cpp:osgeo::proj::crs::CRS::alterGeodeticCRS(dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> > const&) const::$_0::operator()(std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS>) const |
373 | | |
374 | | // NN_CHECK_THROW takes a pointer of type PT (e.g. raw pointer, std::shared_ptr |
375 | | // or std::unique_ptr) |
376 | | // and returns a non-nullable pointer of type nn<PT>. |
377 | | // Throws if expression evaluates to null. |
378 | | #define NN_CHECK_THROW(_e) \ |
379 | 304 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ |
380 | 304 | if (!p) \ |
381 | 304 | throw std::runtime_error(#_e " must not be null"); \ |
382 | 304 | return dropbox::oxygen::nn< \ |
383 | 304 | typename std::remove_reference<decltype(p)>::type>( \ |
384 | 304 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ |
385 | 304 | })(_e)) crs.cpp:osgeo::proj::crs::CRS::promoteTo3D(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> > const&) const::$_1::operator()(std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>) const Line | Count | Source | 379 | 258 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 380 | 258 | if (!p) \ | 381 | 258 | throw std::runtime_error(#_e " must not be null"); \ | 382 | 258 | return dropbox::oxygen::nn< \ | 383 | 258 | typename std::remove_reference<decltype(p)>::type>( \ | 384 | 258 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 385 | 258 | })(_e)) |
Unexecuted instantiation: crs.cpp:osgeo::proj::crs::CRS::promoteTo3D(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&, dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> > const&) const::$_2::operator()(std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS>) const crs.cpp:osgeo::proj::crs::DerivedGeographicCRS::demoteTo2D(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&) const::$_0::operator()(std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS>) const Line | Count | Source | 379 | 46 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 380 | 46 | if (!p) \ | 381 | 46 | throw std::runtime_error(#_e " must not be null"); \ | 382 | 46 | return dropbox::oxygen::nn< \ | 383 | 46 | typename std::remove_reference<decltype(p)>::type>( \ | 384 | 46 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 385 | 46 | })(_e)) |
Unexecuted instantiation: crs.cpp:osgeo::proj::crs::DerivedProjectedCRS::demoteTo2D(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> const&) const::$_0::operator()(std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS>) const |