/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 | 147k | element_type &operator*() const { return *ptr; } |
97 | 145M | element_type *operator->() const { return &*ptr; } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::ArrayOfBaseObject> >::operator->() const Line | Count | Source | 97 | 2.84M | 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 | 272k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::operator->() const Line | Count | Source | 97 | 4.19M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::IdentifiedObject> >::operator->() const Line | Count | Source | 97 | 126k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Identifier> >::operator->() const Line | Count | Source | 97 | 55.0M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::AuthorityFactory> >::operator->() const Line | Count | Source | 97 | 3.70M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DatumEnsemble> >::operator->() const Line | Count | Source | 97 | 4.07k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystem> >::operator->() const Line | Count | Source | 97 | 3.26M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CoordinateSystemAxis> >::operator->() const Line | Count | Source | 97 | 9.42M | 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 | 507k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::PrimeMeridian> >::operator->() const Line | Count | Source | 97 | 2.46M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Ellipsoid> >::operator->() const Line | Count | Source | 97 | 3.23M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::GeodeticReferenceFrame> >::operator->() const Line | Count | Source | 97 | 2.35M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::PositionalAccuracy> >::operator->() const Line | Count | Source | 97 | 166k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::VerticalReferenceFrame> >::operator->() const Line | Count | Source | 97 | 43.0k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeodeticCRS> >::operator->() const Line | Count | Source | 97 | 616k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::ProjectedCRS> >::operator->() const Line | Count | Source | 97 | 65.3k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::operator->() const Line | Count | Source | 97 | 1.02M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationMethod> >::operator->() const Line | Count | Source | 97 | 16.5M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::OperationParameter> >::operator->() const Line | Count | Source | 97 | 7.44M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ParameterValue> >::operator->() const Line | Count | Source | 97 | 850k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::VerticalCRS> >::operator->() const Line | Count | Source | 97 | 42.9k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CompoundCRS> >::operator->() const Line | Count | Source | 97 | 22.4k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::CRS> >::operator->() const Line | Count | Source | 97 | 2.72M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::CoordinateOperation> >::operator->() const Line | Count | Source | 97 | 10.3M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::BoundCRS> >::operator->() const Line | Count | Source | 97 | 26.9k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PointMotionOperation> >::operator->() const Line | Count | Source | 97 | 452 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::operator->() const Line | Count | Source | 97 | 2.49M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::SingleOperation> >::operator->() const Line | Count | Source | 97 | 647 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::operator->() const Line | Count | Source | 97 | 3.42M | 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 | 18.2k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::EllipsoidalCS> >::operator->() const Line | Count | Source | 97 | 2.04M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::GeographicCRS> >::operator->() const Line | Count | Source | 97 | 457k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::operator->() const Line | Count | Source | 97 | 123k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::common::UnitOfMeasure> >::operator->() const Line | Count | Source | 97 | 32 | 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 | 954k | 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 | 53.7k | 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 | 3.14M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::ConcatenatedOperation> >::operator->() const Line | Count | Source | 97 | 1.47M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::operator->() const Line | Count | Source | 97 | 4.84k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::crs::SingleCRS> >::operator->() const Line | Count | Source | 97 | 56.2k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::coordinates::CoordinateMetadata> >::operator->() const Line | Count | Source | 97 | 199 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::InverseConversion> >::operator->() const Line | Count | Source | 97 | 49.1k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::GeneralParameterValue> >::operator->() const Line | Count | Source | 97 | 77.7k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::PROJBasedOperation> >::operator->() const Line | Count | Source | 97 | 1.18M | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::IPROJStringExportable> >::operator->() const Line | Count | Source | 97 | 70.0k | 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 | 84.4k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::VerticalExtent> >::operator->() const Line | Count | Source | 97 | 74 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::TemporalExtent> >::operator->() const Line | Count | Source | 97 | 341 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::GeographicExtent> >::operator->() const Line | Count | Source | 97 | 547k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::Datum> >::operator->() const Line | Count | Source | 97 | 678k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS const*>::operator->() const Line | Count | Source | 97 | 33.4k | 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 | 6.73k | 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 | 27 | 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 | 826 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::EngineeringDatum> >::operator->() const Line | Count | Source | 97 | 898 | 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 | 20 | 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 | 68.3k | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::datum::DynamicVerticalReferenceFrame> >::operator->() const Line | Count | Source | 97 | 34 | element_type *operator->() const { return &*ptr; } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::SphericalCS> >::operator->() const Line | Count | Source | 97 | 323 | 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.29M | element_type *operator->() const { return &*ptr; } |
|
98 | | |
99 | | // Expose the underlying PtrType |
100 | 22.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 | 10.9M | 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 | 618k | 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 | 2.65k | 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 | 263 | 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 | 215k | 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 | 8.87k | 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 | 370k | 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 | 20.0k | 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 | 47.0k | 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 | 21.3k | 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 | 32.7k | 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 | 14.0k | 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 | 1.21M | 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 | 296k | 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 | 202k | 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 | 438 | 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 | 261k | 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 | 117k | 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 | 29.5k | 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 | 2.24k | 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 | 618k | 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 | 117k | 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 | 33.8k | 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 | 3.95k | 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 | 246k | 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 | 343 | 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 | 14.5k | 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 | 380 | 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 | 7 | 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 | 193 | 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 | 837k | 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 | 22.7k | 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 | 44.9k | 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 | 147k | 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 | 969k | 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 | 2.12M | 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 | 2.27M | 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 | 81.6k | 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 | 99 | operator const PtrType &() const & { return ptr; } |
dropbox::oxygen::nn<osgeo::proj::crs::GeographicCRS*>::operator osgeo::proj::crs::GeographicCRS* const&() const & Line | Count | Source | 100 | 10.4k | 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 | 155k | 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 | 339 | 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 | 48 | 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 | 2.20k | operator const PtrType &() const & { return ptr; } |
|
101 | 3.64M | 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 | 122 | 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 | 887k | 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 | 331 | 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 | 4 | 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 | 616 | 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 | 20 | 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 | 38.1k | 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 | 19.3k | 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 | 10.9k | 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 | 9.80k | 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 | 183k | 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 | 17.8k | 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 | 6.32k | 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 | 16 | 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.76k | 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 | 132k | 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 | 489k | 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 | 75 | 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 | 36.6k | 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 | 233k | 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 | 3.53k | 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 | 4.14k | 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 | 33.4k | 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 | 97 | 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 | 2.65k | 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 | 1.06M | 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 | 40.6k | 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 | 331k | 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 | 78.8k | 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 | 11.6k | 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 | 2.49k | 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 | 109 | 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 | 30 | 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 | 4 | 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 | 17.7M | 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 | 7.69M | 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.54M | 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 | 565k | 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 | 18.8k | 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 | 1.34M | 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 | 4.32M | 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 | 19.8k | 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 | 308k | 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 | 7.97k | 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 | 9.65k | 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 | 4.98k | 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 | 79.4k | 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 | 461k | 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 | 440k | 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 | 19.1k | 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 | 433 | 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 | 3.89k | 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 | 988 | 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 | 14 | 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 | 388 | 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 | 37.7k | 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 | 34.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 | 61.2k | 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 | 11 | 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 | 41.2k | 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 | 2.28k | 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 | 28.3k | 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 | 99 | 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 | 2.65k | 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 | 26.4k | 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 | 12.8k | 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 | 147k | 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 | 4.27k | 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 | 329k | 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 | 70.0k | 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 | 2.77k | 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 | 67.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 | 342 | 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 | 10 | 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 | 10 | 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 | 529 | 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 | 1.04M | PtrType &&as_nullable() && { return std::move(ptr); } dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::io::DatabaseContext> >::as_nullable() && Line | Count | Source | 112 | 140k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::metadata::Extent> >::as_nullable() && Line | Count | Source | 112 | 328k | 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.96k | 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 | 275 | 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.83k | 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 | 72 | 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 | 3.92k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::util::BaseObject> >::as_nullable() && Line | Count | Source | 112 | 447k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Transformation> >::as_nullable() && Line | Count | Source | 112 | 101k | 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 | 529 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::Meridian> >::as_nullable() && Line | Count | Source | 112 | 200 | 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.32k | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::CartesianCS> >::as_nullable() && Line | Count | Source | 112 | 45 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::cs::VerticalCS> >::as_nullable() && Line | Count | Source | 112 | 24 | PtrType &&as_nullable() && { return std::move(ptr); } |
dropbox::oxygen::nn<std::__1::shared_ptr<osgeo::proj::operation::Conversion> >::as_nullable() && Line | Count | Source | 112 | 13.7k | 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 | 9.83M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { |
132 | 9.83M | } 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 | 793k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 793k | } |
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 | 466k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 466k | } |
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 | 355 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 355 | } |
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 | 4 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 4 | } |
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 | 41.1k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 41.1k | } |
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 | 38.5k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 38.5k | } |
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 | 130k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 130k | } |
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 | 76 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 76 | } |
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 | 371 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 371 | } |
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 | 506k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 506k | } |
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 | 127k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 127k | } |
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 | 33.0k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 33.0k | } |
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 | 13.5k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 13.5k | } |
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 | 43.0k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 43.0k | } |
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 | 15.4k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 15.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.70k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 2.70k | } |
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 | 13.7k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 13.7k | } |
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 | 3.87M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 3.87M | } |
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 | 25.0k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 25.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 | 571k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 571k | } |
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 | 4.74k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 4.74k | } |
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 | 109k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 109k | } |
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 | 9 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 9 | } |
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 | 2.28k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 2.28k | } |
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 | 147 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 147 | } |
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 | 1.07M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 1.07M | } |
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 | 230 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 230 | } |
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 | 660k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 660k | } |
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 | 54.7k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 54.7k | } |
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 | 11.6k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 11.6k | } |
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 | 1.21M | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 1.21M | } |
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 | 11 | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 11 | } |
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 | 3.52k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 3.52k | } |
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 | 10.4k | explicit nn(i_promise_i_checked_for_null_t, const PtrType &arg) noexcept : ptr(arg) { | 132 | 10.4k | } |
|
133 | | explicit nn(i_promise_i_checked_for_null_t, PtrType &&arg) noexcept |
134 | 42.7M | : ptr(std::move(arg)) { |
135 | 42.7M | } 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 | 3.28M | : ptr(std::move(arg)) { | 135 | 3.28M | } |
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 | 2.08M | : ptr(std::move(arg)) { | 135 | 2.08M | } |
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 | 10.9M | : ptr(std::move(arg)) { | 135 | 10.9M | } |
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 | 12.7k | : ptr(std::move(arg)) { | 135 | 12.7k | } |
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 | 2.30M | : ptr(std::move(arg)) { | 135 | 2.30M | } |
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 | 19.9k | : ptr(std::move(arg)) { | 135 | 19.9k | } |
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 | 2.22M | : ptr(std::move(arg)) { | 135 | 2.22M | } |
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 | 23.1k | : ptr(std::move(arg)) { | 135 | 23.1k | } |
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 | 19.3k | : ptr(std::move(arg)) { | 135 | 19.3k | } |
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 | 2.32k | : ptr(std::move(arg)) { | 135 | 2.32k | } |
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 | 246k | : ptr(std::move(arg)) { | 135 | 246k | } |
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 | 209k | : ptr(std::move(arg)) { | 135 | 209k | } |
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 | 343 | : ptr(std::move(arg)) { | 135 | 343 | } |
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 | 36.6k | : ptr(std::move(arg)) { | 135 | 36.6k | } |
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 | 50.6k | : ptr(std::move(arg)) { | 135 | 50.6k | } |
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 | 24.3k | : ptr(std::move(arg)) { | 135 | 24.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 | 380 | : ptr(std::move(arg)) { | 135 | 380 | } |
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 | 7 | : ptr(std::move(arg)) { | 135 | 7 | } |
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 | 18.9k | : ptr(std::move(arg)) { | 135 | 18.9k | } |
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 | 21.3k | : ptr(std::move(arg)) { | 135 | 21.3k | } |
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 | 959 | : ptr(std::move(arg)) { | 135 | 959 | } |
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 | 17.8k | : ptr(std::move(arg)) { | 135 | 17.8k | } |
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 | 340k | : ptr(std::move(arg)) { | 135 | 340k | } |
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 | 44.9k | : ptr(std::move(arg)) { | 135 | 44.9k | } |
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 | 1.06M | : ptr(std::move(arg)) { | 135 | 1.06M | } |
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 | 147k | : ptr(std::move(arg)) { | 135 | 147k | } |
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 | 968k | : ptr(std::move(arg)) { | 135 | 968k | } |
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 | 1.06M | : ptr(std::move(arg)) { | 135 | 1.06M | } |
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 | 1.06M | : ptr(std::move(arg)) { | 135 | 1.06M | } |
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 | 896k | : ptr(std::move(arg)) { | 135 | 896k | } |
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 | 196 | : ptr(std::move(arg)) { | 135 | 196 | } |
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 | 81.6k | : ptr(std::move(arg)) { | 135 | 81.6k | } |
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 | 931k | : ptr(std::move(arg)) { | 135 | 931k | } |
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 | 31 | : ptr(std::move(arg)) { | 135 | 31 | } |
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 | 98 | : ptr(std::move(arg)) { | 135 | 98 | } |
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 | 533k | : ptr(std::move(arg)) { | 135 | 533k | } |
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 | 56.1k | : ptr(std::move(arg)) { | 135 | 56.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 | 11.8M | : ptr(std::move(arg)) { | 135 | 11.8M | } |
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 | 334k | : ptr(std::move(arg)) { | 135 | 334k | } |
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 | 548k | : ptr(std::move(arg)) { | 135 | 548k | } |
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 | 99 | : ptr(std::move(arg)) { | 135 | 99 | } |
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 | 158k | : ptr(std::move(arg)) { | 135 | 158k | } |
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 | 24.3k | : ptr(std::move(arg)) { | 135 | 24.3k | } |
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 | 17.5k | : ptr(std::move(arg)) { | 135 | 17.5k | } |
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 | 11.2k | : ptr(std::move(arg)) { | 135 | 11.2k | } |
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 | 13.4k | : ptr(std::move(arg)) { | 135 | 13.4k | } |
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 | 2.83k | : ptr(std::move(arg)) { | 135 | 2.83k | } |
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 | 27 | : ptr(std::move(arg)) { | 135 | 27 | } |
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 | 461 | : ptr(std::move(arg)) { | 135 | 461 | } |
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 | 10 | : ptr(std::move(arg)) { | 135 | 10 | } |
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 | 413 | : ptr(std::move(arg)) { | 135 | 413 | } |
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 | 17.5k | : ptr(std::move(arg)) { | 135 | 17.5k | } |
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 | 19.0k | : ptr(std::move(arg)) { | 135 | 19.0k | } |
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 | 34.1k | : ptr(std::move(arg)) { | 135 | 34.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 | 4.07k | : ptr(std::move(arg)) { | 135 | 4.07k | } |
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 | 17 | : ptr(std::move(arg)) { | 135 | 17 | } |
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 | 370 | : ptr(std::move(arg)) { | 135 | 370 | } |
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 | 312k | : ptr(std::move(arg)) { | 135 | 312k | } |
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 | 323 | : ptr(std::move(arg)) { | 135 | 323 | } |
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 | 129k | : ptr(std::move(arg)) { | 135 | 129k | } |
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 | 21.3k | : ptr(std::move(arg)) { | 135 | 21.3k | } |
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 | 90.2k | : ptr(std::move(arg)) { | 135 | 90.2k | } |
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 | 501k | : ptr(std::move(arg)) { | 135 | 501k | } |
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 | 18.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 | 10.9M | 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 | 618k | 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 | 47.0k | 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 | 21.3k | 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 | 1.21M | 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 | 181k | 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 | 49.4k | 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 | 11.3k | 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.70k | 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 | 75.2k | 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 | 295k | 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 | 10 | 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 | 2.65k | 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 | 153k | 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 | 14.7k | 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 | 2.24k | 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 | 21.3k | 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 | 11.2k | 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 | 32.9k | 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 | 33.8k | 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 | 3.95k | 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 | 246k | 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 | 343 | 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 | 14.5k | 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 | 380 | 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 | 7 | 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 | 59 | 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 | 219k | 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 | 9.35k | 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 | 21.6k | 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.84k | 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 | 44.9k | 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 | 147k | 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 | 968k | 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 | 1.06M | 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 | 1.06M | 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 | 1.65k | 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 | 134 | 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 | 618k | 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 | 81.6k | 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 | 396k | 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 | 99 | 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 | 155k | 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 | 339 | 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 | 18.5k | 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 | 16.3k | 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 | 118 | 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 | 13.4k | 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 | 413 | 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 | 3.62M | 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 | 538 | 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 | 331 | 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 | 4 | 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 | 213 | 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 | 9 | 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 | 20.2k | 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.65k | 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 | 1.16k | 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 | 286 | 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 | 24 | 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 | 612 | 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 | 886k | 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 | 403 | 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 | 15.1k | 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 | 6.32k | 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 | 16 | 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.76k | 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 | 60.6k | 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 | 17.9k | 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 | 15.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 | 9.79k | 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 | 2 | 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 | 9.51k | 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 | 183k | 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 | 489k | 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 | 75 | 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 | 34.3k | 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 | 233k | 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 | 3.53k | 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 | 31.0k | 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 | 32 | 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 | 2.28k | 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 | 97 | 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 | 2.65k | 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 | 2.65k | 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 | 71.3k | 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 | 4.14k | 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 | 1.06M | 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 | 40.6k | 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 | 329k | 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 | 78.8k | 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 | 2.49k | 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 | 109 | 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 | 30 | 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 | 4 | 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 | 35 | 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 | 11 | 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 | 46.5M | template <typename T = PtrType> element_type *get() const { |
207 | 46.5M | return ptr.get(); |
208 | 46.5M | } 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.54M | template <typename T = PtrType> element_type *get() const { | 207 | 1.54M | return ptr.get(); | 208 | 1.54M | } |
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 | 17.3M | template <typename T = PtrType> element_type *get() const { | 207 | 17.3M | return ptr.get(); | 208 | 17.3M | } |
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 | 1.43M | template <typename T = PtrType> element_type *get() const { | 207 | 1.43M | return ptr.get(); | 208 | 1.43M | } |
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 | 1.48M | template <typename T = PtrType> element_type *get() const { | 207 | 1.48M | return ptr.get(); | 208 | 1.48M | } |
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 | 59.0k | template <typename T = PtrType> element_type *get() const { | 207 | 59.0k | return ptr.get(); | 208 | 59.0k | } |
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 | 2.93M | template <typename T = PtrType> element_type *get() const { | 207 | 2.93M | return ptr.get(); | 208 | 2.93M | } |
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 | 1.29M | template <typename T = PtrType> element_type *get() const { | 207 | 1.29M | return ptr.get(); | 208 | 1.29M | } |
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 | 1.21M | template <typename T = PtrType> element_type *get() const { | 207 | 1.21M | return ptr.get(); | 208 | 1.21M | } |
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 | 422k | template <typename T = PtrType> element_type *get() const { | 207 | 422k | return ptr.get(); | 208 | 422k | } |
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 | 71.1k | template <typename T = PtrType> element_type *get() const { | 207 | 71.1k | return ptr.get(); | 208 | 71.1k | } |
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 | 5.83M | template <typename T = PtrType> element_type *get() const { | 207 | 5.83M | return ptr.get(); | 208 | 5.83M | } |
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.79k | template <typename T = PtrType> element_type *get() const { | 207 | 1.79k | return ptr.get(); | 208 | 1.79k | } |
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 | 212k | template <typename T = PtrType> element_type *get() const { | 207 | 212k | return ptr.get(); | 208 | 212k | } |
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 | 17 | template <typename T = PtrType> element_type *get() const { | 207 | 17 | return ptr.get(); | 208 | 17 | } |
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 | 953 | template <typename T = PtrType> element_type *get() const { | 207 | 953 | return ptr.get(); | 208 | 953 | } |
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 | 388 | template <typename T = PtrType> element_type *get() const { | 207 | 388 | return ptr.get(); | 208 | 388 | } |
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 | 43.4k | template <typename T = PtrType> element_type *get() const { | 207 | 43.4k | return ptr.get(); | 208 | 43.4k | } |
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 | 34.1k | template <typename T = PtrType> element_type *get() const { | 207 | 34.1k | return ptr.get(); | 208 | 34.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 | 5.05M | template <typename T = PtrType> element_type *get() const { | 207 | 5.05M | return ptr.get(); | 208 | 5.05M | } |
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 | 4.13M | template <typename T = PtrType> element_type *get() const { | 207 | 4.13M | return ptr.get(); | 208 | 4.13M | } |
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 | 764k | template <typename T = PtrType> element_type *get() const { | 207 | 764k | return ptr.get(); | 208 | 764k | } |
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 | 297k | template <typename T = PtrType> element_type *get() const { | 207 | 297k | return ptr.get(); | 208 | 297k | } |
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 | 87.1k | template <typename T = PtrType> element_type *get() const { | 207 | 87.1k | return ptr.get(); | 208 | 87.1k | } |
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 | 29.2k | template <typename T = PtrType> element_type *get() const { | 207 | 29.2k | return ptr.get(); | 208 | 29.2k | } |
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 | 12.8k | template <typename T = PtrType> element_type *get() const { | 207 | 12.8k | return ptr.get(); | 208 | 12.8k | } |
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 | 147k | template <typename T = PtrType> element_type *get() const { | 207 | 147k | return ptr.get(); | 208 | 147k | } |
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 | 89.2k | template <typename T = PtrType> element_type *get() const { | 207 | 89.2k | return ptr.get(); | 208 | 89.2k | } |
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 | 28.4k | template <typename T = PtrType> element_type *get() const { | 207 | 28.4k | return ptr.get(); | 208 | 28.4k | } |
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.69M | template <typename T = PtrType> element_type *get() const { | 207 | 1.69M | return ptr.get(); | 208 | 1.69M | } |
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 | 4.27k | template <typename T = PtrType> element_type *get() const { | 207 | 4.27k | return ptr.get(); | 208 | 4.27k | } |
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 | 53.7k | template <typename T = PtrType> element_type *get() const { | 207 | 53.7k | return ptr.get(); | 208 | 53.7k | } |
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 | 86.1k | template <typename T = PtrType> element_type *get() const { | 207 | 86.1k | return ptr.get(); | 208 | 86.1k | } |
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 | 77.7k | template <typename T = PtrType> element_type *get() const { | 207 | 77.7k | return ptr.get(); | 208 | 77.7k | } |
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 | 2.77k | template <typename T = PtrType> element_type *get() const { | 207 | 2.77k | return ptr.get(); | 208 | 2.77k | } |
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 | 56.1k | template <typename T = PtrType> element_type *get() const { | 207 | 56.1k | return ptr.get(); | 208 | 56.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 | 20 | template <typename T = PtrType> element_type *get() const { | 207 | 20 | return ptr.get(); | 208 | 20 | } |
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 | 99 | template <typename T = PtrType> element_type *get() const { | 207 | 99 | return ptr.get(); | 208 | 99 | } |
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 | 342 | template <typename T = PtrType> element_type *get() const { | 207 | 342 | return ptr.get(); | 208 | 342 | } |
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 | 51 | template <typename T = PtrType> element_type *get() const { | 207 | 51 | return ptr.get(); | 208 | 51 | } |
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 | 420 | template <typename T = PtrType> element_type *get() const { | 207 | 420 | return ptr.get(); | 208 | 420 | } |
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 | 11 | template <typename T = PtrType> element_type *get() const { | 207 | 11 | return ptr.get(); | 208 | 11 | } |
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 | 10 | template <typename T = PtrType> element_type *get() const { | 207 | 10 | return ptr.get(); | 208 | 10 | } |
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 | 10 | template <typename T = PtrType> element_type *get() const { | 207 | 10 | return ptr.get(); | 208 | 10 | } |
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 | 1.37k | template <typename L, typename R> bool operator==(const nn<L> &l, const R &r) { |
218 | 1.37k | return l.ptr == r; |
219 | 1.37k | } 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 | 1.37k | template <typename L, typename R> bool operator==(const nn<L> &l, const R &r) { | 218 | 1.37k | return l.ptr == r; | 219 | 1.37k | } |
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 | 31.4k | bool operator==(const nn<L> &l, const nn<R> &r) { |
225 | 31.4k | return l.ptr == r.ptr; |
226 | 31.4k | } 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 | 31.4k | bool operator==(const nn<L> &l, const nn<R> &r) { | 225 | 31.4k | return l.ptr == r.ptr; | 226 | 31.4k | } |
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 | 13 | bool operator==(const nn<L> &l, const nn<R> &r) { | 225 | 13 | return l.ptr == r.ptr; | 226 | 13 | } |
|
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 | 31.4k | bool operator op(const nn<L> &l, const nn<R> &r) { \ |
253 | 31.4k | return base; \ |
254 | 31.4k | } |
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 | 11.0M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { |
276 | 11.0M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
277 | 11.0M | std::make_shared<T>(std::forward<Args>(args)...)); |
278 | 11.0M | } 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 | 8.22M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 8.22M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 8.22M | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 8.22M | } |
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 | 1.20M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 1.20M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 1.20M | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 1.20M | } |
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 | 1.43M | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 1.43M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 1.43M | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 1.43M | } |
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 | 35.8k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 35.8k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 35.8k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 35.8k | } |
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 | 19.8k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 19.8k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 19.8k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 19.8k | } |
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 | 343 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 343 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 343 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 343 | } |
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 | 24.3k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 24.3k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 24.3k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 24.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 | 380 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 380 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 380 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 380 | } |
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 | 7 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 7 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 7 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 7 | } |
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 | 40.6k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 40.6k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 40.6k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 40.6k | } |
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 | 78.8k | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 78.8k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 78.8k | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 78.8k | } |
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 | 31 | nn_shared_ptr<T> nn_make_shared(Args &&... args) { | 276 | 31 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 277 | 31 | std::make_shared<T>(std::forward<Args>(args)...)); | 278 | 31 | } |
|
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 | 1.33M | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { |
309 | 1.33M | auto raw_ptr = |
310 | 1.33M | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); |
311 | 1.33M | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); |
312 | 1.33M | return nn_shared_ptr<T>(i_promise_i_checked_for_null, |
313 | 1.33M | std::move(nullable_ptr)); |
314 | 1.33M | } 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 | 808k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 808k | auto raw_ptr = | 310 | 808k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 808k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 808k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 808k | std::move(nullable_ptr)); | 314 | 808k | } |
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 | 851 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 851 | auto raw_ptr = | 310 | 851 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 851 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 851 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 851 | std::move(nullable_ptr)); | 314 | 851 | } |
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 | 174 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 174 | auto raw_ptr = | 310 | 174 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 174 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 174 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 174 | std::move(nullable_ptr)); | 314 | 174 | } |
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 | 374 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 374 | auto raw_ptr = | 310 | 374 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 374 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 374 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 374 | std::move(nullable_ptr)); | 314 | 374 | } |
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 | 34.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 34.1k | auto raw_ptr = | 310 | 34.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 34.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 34.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 34.1k | std::move(nullable_ptr)); | 314 | 34.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 | 12.8k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 12.8k | auto raw_ptr = | 310 | 12.8k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 12.8k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 12.8k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 12.8k | std::move(nullable_ptr)); | 314 | 12.8k | } |
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 | 36.6k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 36.6k | auto raw_ptr = | 310 | 36.6k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 36.6k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 36.6k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 36.6k | std::move(nullable_ptr)); | 314 | 36.6k | } |
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 | 953 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 953 | auto raw_ptr = | 310 | 953 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 953 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 953 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 953 | std::move(nullable_ptr)); | 314 | 953 | } |
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 | 41.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 41.1k | auto raw_ptr = | 310 | 41.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 41.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 41.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 41.1k | std::move(nullable_ptr)); | 314 | 41.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 | 28.2k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 28.2k | auto raw_ptr = | 310 | 28.2k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 28.2k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 28.2k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 28.2k | std::move(nullable_ptr)); | 314 | 28.2k | } |
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 | 37.3k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 37.3k | auto raw_ptr = | 310 | 37.3k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 37.3k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 37.3k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 37.3k | std::move(nullable_ptr)); | 314 | 37.3k | } |
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 | 4.27k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 4.27k | auto raw_ptr = | 310 | 4.27k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 4.27k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 4.27k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 4.27k | std::move(nullable_ptr)); | 314 | 4.27k | } |
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 | 111k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 111k | auto raw_ptr = | 310 | 111k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 111k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 111k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 111k | std::move(nullable_ptr)); | 314 | 111k | } |
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 | 51 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 51 | auto raw_ptr = | 310 | 51 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 51 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 51 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 51 | std::move(nullable_ptr)); | 314 | 51 | } |
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 | 2.77k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2.77k | auto raw_ptr = | 310 | 2.77k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2.77k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2.77k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2.77k | std::move(nullable_ptr)); | 314 | 2.77k | } |
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 | 56.1k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 56.1k | auto raw_ptr = | 310 | 56.1k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 56.1k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 56.1k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 56.1k | std::move(nullable_ptr)); | 314 | 56.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 | 137k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 137k | auto raw_ptr = | 310 | 137k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 137k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 137k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 137k | std::move(nullable_ptr)); | 314 | 137k | } |
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 | 342 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 342 | auto raw_ptr = | 310 | 342 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 342 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 342 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 342 | std::move(nullable_ptr)); | 314 | 342 | } |
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 | 77 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 77 | auto raw_ptr = | 310 | 77 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 77 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 77 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 77 | std::move(nullable_ptr)); | 314 | 77 | } |
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 | 3.87k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 3.87k | auto raw_ptr = | 310 | 3.87k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 3.87k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 3.87k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 3.87k | std::move(nullable_ptr)); | 314 | 3.87k | } |
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 | 11 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 11 | auto raw_ptr = | 310 | 11 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 11 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 11 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 11 | std::move(nullable_ptr)); | 314 | 11 | } |
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 | 2.00k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 2.00k | auto raw_ptr = | 310 | 2.00k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 2.00k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 2.00k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 2.00k | std::move(nullable_ptr)); | 314 | 2.00k | } |
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 | 388 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 388 | auto raw_ptr = | 310 | 388 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 388 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 388 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 388 | std::move(nullable_ptr)); | 314 | 388 | } |
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 | 12.6k | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 12.6k | auto raw_ptr = | 310 | 12.6k | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 12.6k | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 12.6k | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 12.6k | std::move(nullable_ptr)); | 314 | 12.6k | } |
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 | 10 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 10 | auto raw_ptr = | 310 | 10 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 10 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 10 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 10 | std::move(nullable_ptr)); | 314 | 10 | } |
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 | 10 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 10 | auto raw_ptr = | 310 | 10 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 10 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 10 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 10 | std::move(nullable_ptr)); | 314 | 10 | } |
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 | 51 | nn_shared_ptr<T> nn_static_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 309 | 51 | auto raw_ptr = | 310 | 51 | static_cast<typename nn_shared_ptr<T>::element_type *>(org_ptr.get()); | 311 | 51 | std::shared_ptr<T> nullable_ptr(org_ptr.as_nullable(), raw_ptr); | 312 | 51 | return nn_shared_ptr<T>(i_promise_i_checked_for_null, | 313 | 51 | std::move(nullable_ptr)); | 314 | 51 | } |
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 | 4.97M | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { |
318 | 4.97M | auto raw_ptr = |
319 | 4.97M | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); |
320 | 4.97M | if (!raw_ptr) { |
321 | 1.61M | return nullptr; |
322 | 3.35M | } else { |
323 | 3.35M | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); |
324 | 3.35M | } |
325 | 4.97M | } 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 | 4.68k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 4.68k | auto raw_ptr = | 319 | 4.68k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 4.68k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 4.68k | } else { | 323 | 4.68k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 4.68k | } | 325 | 4.68k | } |
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 | 557k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 557k | auto raw_ptr = | 319 | 557k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 557k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 557k | } else { | 323 | 557k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 557k | } | 325 | 557k | } |
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 | 10.4k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 10.4k | auto raw_ptr = | 319 | 10.4k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 10.4k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 10.4k | } else { | 323 | 10.4k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 10.4k | } | 325 | 10.4k | } |
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 | 2.89k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.89k | auto raw_ptr = | 319 | 2.89k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.89k | if (!raw_ptr) { | 321 | 73 | return nullptr; | 322 | 2.82k | } else { | 323 | 2.82k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.82k | } | 325 | 2.89k | } |
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 | 49.2k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 49.2k | auto raw_ptr = | 319 | 49.2k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 49.2k | if (!raw_ptr) { | 321 | 11.5k | return nullptr; | 322 | 37.7k | } else { | 323 | 37.7k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 37.7k | } | 325 | 49.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 | 15.6k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 15.6k | auto raw_ptr = | 319 | 15.6k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 15.6k | if (!raw_ptr) { | 321 | 32 | return nullptr; | 322 | 15.6k | } else { | 323 | 15.6k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 15.6k | } | 325 | 15.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 | 13.3k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 13.3k | auto raw_ptr = | 319 | 13.3k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 13.3k | if (!raw_ptr) { | 321 | 8.27k | return nullptr; | 322 | 8.27k | } else { | 323 | 5.09k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 5.09k | } | 325 | 13.3k | } |
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 | 2.46k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.46k | auto raw_ptr = | 319 | 2.46k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.46k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 2.46k | } else { | 323 | 2.46k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.46k | } | 325 | 2.46k | } |
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 | 4.34k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 4.34k | auto raw_ptr = | 319 | 4.34k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 4.34k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 4.34k | } else { | 323 | 4.34k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 4.34k | } | 325 | 4.34k | } |
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 | 768 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 768 | auto raw_ptr = | 319 | 768 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 768 | if (!raw_ptr) { | 321 | 480 | return nullptr; | 322 | 480 | } else { | 323 | 288 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 288 | } | 325 | 768 | } |
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 | 16.1k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 16.1k | auto raw_ptr = | 319 | 16.1k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 16.1k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 16.1k | } else { | 323 | 16.1k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 16.1k | } | 325 | 16.1k | } |
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 | 2.32k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.32k | auto raw_ptr = | 319 | 2.32k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.32k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 2.32k | } else { | 323 | 2.32k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.32k | } | 325 | 2.32k | } |
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 | 823k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 823k | auto raw_ptr = | 319 | 823k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 823k | if (!raw_ptr) { | 321 | 19.7k | return nullptr; | 322 | 804k | } else { | 323 | 804k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 804k | } | 325 | 823k | } |
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 | 17.7k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 17.7k | auto raw_ptr = | 319 | 17.7k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 17.7k | if (!raw_ptr) { | 321 | 16.1k | return nullptr; | 322 | 16.1k | } else { | 323 | 1.64k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.64k | } | 325 | 17.7k | } |
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 | 40.6k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 40.6k | auto raw_ptr = | 319 | 40.6k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 40.6k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 40.6k | } else { | 323 | 40.6k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 40.6k | } | 325 | 40.6k | } |
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 | 18.7k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 18.7k | auto raw_ptr = | 319 | 18.7k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 18.7k | if (!raw_ptr) { | 321 | 16.6k | return nullptr; | 322 | 16.6k | } else { | 323 | 2.16k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 2.16k | } | 325 | 18.7k | } |
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 | 79.1k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 79.1k | auto raw_ptr = | 319 | 79.1k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 79.1k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 79.1k | } else { | 323 | 79.1k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 79.1k | } | 325 | 79.1k | } |
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 | 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 | } |
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 | 657k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 657k | auto raw_ptr = | 319 | 657k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 657k | if (!raw_ptr) { | 321 | 328k | return nullptr; | 322 | 329k | } else { | 323 | 329k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 329k | } | 325 | 657k | } |
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 | 212k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 212k | auto raw_ptr = | 319 | 212k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 212k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 212k | } else { | 323 | 212k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 212k | } | 325 | 212k | } |
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 | 2.42M | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 2.42M | auto raw_ptr = | 319 | 2.42M | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 2.42M | if (!raw_ptr) { | 321 | 1.21M | return nullptr; | 322 | 1.21M | } else { | 323 | 1.21M | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 1.21M | } | 325 | 2.42M | } |
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 | 3.64k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 3.64k | auto raw_ptr = | 319 | 3.64k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 3.64k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 3.64k | } else { | 323 | 3.64k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 3.64k | } | 325 | 3.64k | } |
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 | 238 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 238 | auto raw_ptr = | 319 | 238 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 238 | if (!raw_ptr) { | 321 | 129 | return nullptr; | 322 | 129 | } else { | 323 | 109 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 109 | } | 325 | 238 | } |
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 | 247 | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 247 | auto raw_ptr = | 319 | 247 | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 247 | if (!raw_ptr) { | 321 | 16 | return nullptr; | 322 | 231 | } else { | 323 | 231 | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 231 | } | 325 | 247 | } |
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 | 7.90k | std::shared_ptr<T> nn_dynamic_pointer_cast(const nn_shared_ptr<U> &org_ptr) { | 318 | 7.90k | auto raw_ptr = | 319 | 7.90k | dynamic_cast<typename std::shared_ptr<T>::element_type *>(org_ptr.get()); | 320 | 7.90k | if (!raw_ptr) { | 321 | 0 | return nullptr; | 322 | 7.90k | } else { | 323 | 7.90k | return std::shared_ptr<T>(org_ptr.as_nullable(), raw_ptr); | 324 | 7.90k | } | 325 | 7.90k | } |
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 | 707k | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ |
364 | 707k | /* note: assert() alone is not sufficient here, because it might be \ |
365 | 707k | * compiled out. */ \ |
366 | 707k | assert(p &&#_e " must not be null"); \ |
367 | 707k | if (!p) \ |
368 | 707k | std::abort(); \ |
369 | 707k | return dropbox::oxygen::nn< \ |
370 | 707k | typename std::remove_reference<decltype(p)>::type>( \ |
371 | 707k | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ |
372 | 707k | })(_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 | 707k | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 364 | 707k | /* note: assert() alone is not sufficient here, because it might be \ | 365 | 707k | * compiled out. */ \ | 366 | 707k | assert(p &&#_e " must not be null"); \ | 367 | 707k | if (!p) \ | 368 | 707k | std::abort(); \ | 369 | 707k | return dropbox::oxygen::nn< \ | 370 | 707k | typename std::remove_reference<decltype(p)>::type>( \ | 371 | 707k | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 372 | 707k | })(_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 | 392 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ |
380 | 392 | if (!p) \ |
381 | 392 | throw std::runtime_error(#_e " must not be null"); \ |
382 | 392 | return dropbox::oxygen::nn< \ |
383 | 392 | typename std::remove_reference<decltype(p)>::type>( \ |
384 | 392 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ |
385 | 392 | })(_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 | 342 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 380 | 342 | if (!p) \ | 381 | 342 | throw std::runtime_error(#_e " must not be null"); \ | 382 | 342 | return dropbox::oxygen::nn< \ | 383 | 342 | typename std::remove_reference<decltype(p)>::type>( \ | 384 | 342 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 385 | 342 | })(_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 | 50 | (([&](typename std::remove_reference<decltype(_e)>::type p) { \ | 380 | 50 | if (!p) \ | 381 | 50 | throw std::runtime_error(#_e " must not be null"); \ | 382 | 50 | return dropbox::oxygen::nn< \ | 383 | 50 | typename std::remove_reference<decltype(p)>::type>( \ | 384 | 50 | dropbox::oxygen::i_promise_i_checked_for_null, std::move(p)); \ | 385 | 50 | })(_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 |