Home
last modified time | relevance | path

Searched refs:DerivedType (Results 1 – 25 of 763) sorted by relevance

12345678910>>...31

/dports/math/dune-common/dune-common-df65b1282ea89ad40d2cb6565983f7e633ccce31/dune/common/
H A Diteratorfacades.hh173 typedef T DerivedType; typedef in Dune::ForwardIteratorFacade
207 DerivedType& operator++() in operator ++()
216 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator ++()
307 typedef T DerivedType; typedef in Dune::BidirectionalIteratorFacade
350 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator ++()
366 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator --()
475 typedef T DerivedType; typedef in Dune::RandomAccessIteratorFacade
528 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator ++()
541 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator +()
557 DerivedType tmp(static_cast<DerivedType const&>(*this)); in operator --()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/source/helpers/
H A Dbase_object.h37 template <typename DerivedType>
38 NO_SANITIZE inline DerivedType *castToObject(typename DerivedType::BaseType *object) { in castToObject()
44 if (((derivedObject->getMagic() & DerivedType::maskMagic) == DerivedType::objectMagic) && in castToObject()
52 template <typename DerivedType>
53 inline DerivedType *castToObjectOrAbort(typename DerivedType::BaseType *object) { in castToObjectOrAbort()
62 template <typename DerivedType>
63 inline const DerivedType *castToObject(const typename DerivedType::BaseType *object) { in castToObject()
64 return castToObject<DerivedType>(const_cast<typename DerivedType::BaseType *>(object)); in castToObject()
67 template <typename DerivedType>
142 typedef DerivedType_t<B> DerivedType; typedef
[all …]
/dports/games/openage/openage-0.3.0-1262-ga554ab49/libopenage/util/
H A Denum.h46 template<typename DerivedType, typename NumericType=int>
60 constexpr bool operator ==(const DerivedType &other) const {
72 constexpr bool operator <(const DerivedType &other) const {
80 constexpr bool operator >(const DerivedType &other) const {
125 template<typename DerivedType>
127 using this_type = Enum<DerivedType>;
134 constexpr operator const DerivedType &() const {
138 constexpr Enum &operator =(const DerivedType &value) {
142 constexpr const DerivedType *operator ->() const {
170 constexpr const DerivedType &get() const { in get()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/internal/
H A DVirtualObjectTransferInstantiate.h13 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_FOR_DEVICE(DerivedType, DeviceDapterTagType) \ argument
14 template class vtkm::cont::internal::VirtualObjectTransfer<DerivedType, DeviceDapterTagType>
18 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_CUDA(DerivedType) \ argument
19 VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_FOR_DEVICE(DerivedType, vtkm::cont::DeviceAdapterTagCuda)
21 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_CUDA(DerivedType) argument
26 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_KOKKOS(DerivedType) \ argument
27 VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_FOR_DEVICE(DerivedType, vtkm::cont::DeviceAdapterTagKokkos)
29 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_KOKKOS(DerivedType) argument
32 #define VTKM_EXPLICITLY_INSTANTIATE_TRANSFER(DerivedType) \ argument
33 VTKM_EXPLICITLY_INSTANTIATE_TRANSFER_CUDA(DerivedType) \
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/os_interface/
H A Dos_interface.h36 template <typename DerivedType>
37 DerivedType *as() { in as()
39 return static_cast<DerivedType *>(this); in as()
42 template <typename DerivedType>
43 DerivedType *as() const { in as()
45 return static_cast<const DerivedType *>(this); in as()
60 template <typename DerivedType>
61 DerivedType *as() { in as()
63 return static_cast<DerivedType *>(this); in as()
66 template <typename DerivedType>
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/oracle/oci-go-sdk/dataintegration/
H A Dderived_type.go18 type DerivedType struct { struct
39 func (m DerivedType) GetKey() *string { argument
44 func (m DerivedType) GetModelVersion() *string { argument
49 func (m DerivedType) GetParentRef() *ParentReference { argument
54 func (m DerivedType) GetName() *string { argument
59 func (m DerivedType) GetObjectStatus() *int { argument
64 func (m DerivedType) GetDescription() *string { argument
68 func (m DerivedType) String() string { argument
73 func (m DerivedType) MarshalJSON() (buff []byte, e error) { argument
74 type MarshalTypeDerivedType DerivedType
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/performance_manager/public/graph/
H A Dgraph.h37 template <typename DerivedType>
76 template <typename DerivedType>
77 DerivedType* PassToGraph(std::unique_ptr<DerivedType> graph_owned) { in PassToGraph()
78 DerivedType* object = graph_owned.get(); in PassToGraph()
85 template <typename DerivedType>
86 std::unique_ptr<DerivedType> TakeFromGraphAs(DerivedType* graph_owned) { in TakeFromGraphAs()
88 static_cast<DerivedType*>(TakeFromGraph(graph_owned).release())); in TakeFromGraphAs()
103 template <typename DerivedType>
104 DerivedType* GetRegisteredObjectAs() { in GetRegisteredObjectAs()
108 GetRegisteredObject(GraphRegisteredImpl<DerivedType>::TypeId()); in GetRegisteredObjectAs()
[all …]
/dports/devel/grpc134/grpc-1.34.1/src/core/lib/gprpp/
H A Dmanual_constructor.h122 template <class DerivedType>
124 FinishInit(new (&space_) DerivedType); in Init()
133 template <class DerivedType, typename... Ts>
142 template <class DerivedType>
143 void Init(const DerivedType& x) { in Init()
144 FinishInit(new (&space_) DerivedType(x)); in Init()
146 template <class DerivedType>
147 void Init(DerivedType&& x) { in Init()
148 FinishInit(new (&space_) DerivedType(std::forward<DerivedType>(x))); in Init()
154 template <class DerivedType>
[all …]
/dports/devel/grpc/grpc-1.42.0/src/core/lib/gprpp/
H A Dmanual_constructor.h125 template <class DerivedType>
127 FinishInit(new (&space_) DerivedType); in Init()
136 template <class DerivedType, typename... Ts>
145 template <class DerivedType>
146 void Init(const DerivedType& x) { in Init()
147 FinishInit(new (&space_) DerivedType(x)); in Init()
149 template <class DerivedType>
150 void Init(DerivedType&& x) { in Init()
151 FinishInit(new (&space_) DerivedType(std::forward<DerivedType>(x))); in Init()
157 template <class DerivedType>
[all …]
/dports/devel/pecl-grpc/grpc-1.42.0/src/core/lib/gprpp/
H A Dmanual_constructor.h125 template <class DerivedType>
127 FinishInit(new (&space_) DerivedType); in Init()
136 template <class DerivedType, typename... Ts>
145 template <class DerivedType>
146 void Init(const DerivedType& x) { in Init()
147 FinishInit(new (&space_) DerivedType(x)); in Init()
149 template <class DerivedType>
150 void Init(DerivedType&& x) { in Init()
151 FinishInit(new (&space_) DerivedType(std::forward<DerivedType>(x))); in Init()
157 template <class DerivedType>
[all …]
/dports/devel/py-grpcio/grpcio-1.43.0/src/core/lib/gprpp/
H A Dmanual_constructor.h125 template <class DerivedType>
127 FinishInit(new (&space_) DerivedType); in Init()
136 template <class DerivedType, typename... Ts>
145 template <class DerivedType>
146 void Init(const DerivedType& x) { in Init()
147 FinishInit(new (&space_) DerivedType(x)); in Init()
149 template <class DerivedType>
150 void Init(DerivedType&& x) { in Init()
151 FinishInit(new (&space_) DerivedType(std::forward<DerivedType>(x))); in Init()
157 template <class DerivedType>
[all …]
/dports/devel/grpc130/grpc-1.30.2/src/core/lib/gprpp/
H A Dmanual_constructor.h122 template <class DerivedType>
124 FinishInit(new (&space_) DerivedType); in Init()
133 template <class DerivedType, typename... Ts>
142 template <class DerivedType>
143 void Init(const DerivedType& x) { in Init()
144 FinishInit(new (&space_) DerivedType(x)); in Init()
146 template <class DerivedType>
147 void Init(DerivedType&& x) { in Init()
148 FinishInit(new (&space_) DerivedType(std::move(x))); in Init()
154 template <class DerivedType>
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/core/lib/gprpp/
H A Dmanual_constructor.h122 template <class DerivedType>
124 FinishInit(new (&space_) DerivedType); in Init()
133 template <class DerivedType, typename... Ts>
142 template <class DerivedType>
143 void Init(const DerivedType& x) { in Init()
144 FinishInit(new (&space_) DerivedType(x)); in Init()
146 template <class DerivedType>
147 void Init(DerivedType&& x) { in Init()
148 FinishInit(new (&space_) DerivedType(std::move(x))); in Init()
154 template <class DerivedType>
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/performance_manager/public/
H A Dperformance_manager.h35 template <typename DerivedType>
133 template <typename DerivedType>
134 static std::unique_ptr<DerivedType> TakeFromPMAs(DerivedType* pm_owned) { in TakeFromPMAs()
136 static_cast<DerivedType*>(TakeFromPM(pm_owned).release())); in TakeFromPMAs()
154 template <typename DerivedType>
155 static DerivedType* GetRegisteredObjectAs() { in GetRegisteredObjectAs()
159 PerformanceManagerRegisteredImpl<DerivedType>::TypeId()); in GetRegisteredObjectAs()
160 return static_cast<DerivedType*>(object); in GetRegisteredObjectAs()
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/include/llvm/
H A DDerivedTypes.h36 class DerivedType : public Type {
40 explicit DerivedType(LLVMContext &C, TypeID id) : Type(C, id) {} in DerivedType() function
81 class IntegerType : public DerivedType {
86 DerivedType(C, IntegerTyID) { in IntegerType()
143 class FunctionType : public DerivedType {
196 virtual void typeBecameConcrete(const DerivedType *AbsTy);
208 class CompositeType : public DerivedType {
211 DerivedType(C, id) { } in CompositeType()
288 virtual void typeBecameConcrete(const DerivedType *AbsTy);
372 virtual void typeBecameConcrete(const DerivedType *AbsTy);
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/flang/runtime/
H A Dtype-info.cpp80 const DerivedType *type{derivedType()}; in SizeInBytes()
96 const DerivedType *type{derivedType()}; in EstablishDescriptor()
127 const DerivedType *DerivedType::GetParentType() const { in GetParentType()
137 const Component *DerivedType::FindDataComponent( in FindDataComponent()
152 const DerivedType *parent{GetParentType()}; in FindDataComponent()
156 const SpecialBinding *DerivedType::FindSpecialBinding( in FindSpecialBinding()
184 FILE *DerivedType::Dump(FILE *f) const { in Dump()
193 if (offset == offsetof(DerivedType, binding_)) { in Dump()
195 } else if (offset == offsetof(DerivedType, name_)) { in Dump()
209 } else if (offset == offsetof(DerivedType, procPtr_)) { in Dump()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/flang/runtime/
H A Dtype-info.cpp80 const DerivedType *type{derivedType()}; in SizeInBytes()
96 const DerivedType *type{derivedType()}; in EstablishDescriptor()
127 const DerivedType *DerivedType::GetParentType() const { in GetParentType()
137 const Component *DerivedType::FindDataComponent( in FindDataComponent()
152 const DerivedType *parent{GetParentType()}; in FindDataComponent()
156 const SpecialBinding *DerivedType::FindSpecialBinding( in FindSpecialBinding()
184 FILE *DerivedType::Dump(FILE *f) const { in Dump()
193 if (offset == offsetof(DerivedType, binding_)) { in Dump()
195 } else if (offset == offsetof(DerivedType, name_)) { in Dump()
209 } else if (offset == offsetof(DerivedType, procPtr_)) { in Dump()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/flang/runtime/
H A Dtype-info.cpp80 const DerivedType *type{derivedType()}; in SizeInBytes()
96 const DerivedType *type{derivedType()}; in EstablishDescriptor()
127 const DerivedType *DerivedType::GetParentType() const { in GetParentType()
137 const Component *DerivedType::FindDataComponent( in FindDataComponent()
152 const DerivedType *parent{GetParentType()}; in FindDataComponent()
156 const SpecialBinding *DerivedType::FindSpecialBinding( in FindSpecialBinding()
184 FILE *DerivedType::Dump(FILE *f) const { in Dump()
193 if (offset == offsetof(DerivedType, binding_)) { in Dump()
195 } else if (offset == offsetof(DerivedType, name_)) { in Dump()
209 } else if (offset == offsetof(DerivedType, procPtr_)) { in Dump()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/flang/runtime/
H A Dtype-info.cpp80 const DerivedType *type{derivedType()}; in SizeInBytes()
96 const DerivedType *type{derivedType()}; in EstablishDescriptor()
127 const DerivedType *DerivedType::GetParentType() const { in GetParentType()
137 const Component *DerivedType::FindDataComponent( in FindDataComponent()
152 const DerivedType *parent{GetParentType()}; in FindDataComponent()
169 FILE *DerivedType::Dump(FILE *f) const { in Dump()
178 if (offset == offsetof(DerivedType, binding_)) { in Dump()
180 } else if (offset == offsetof(DerivedType, name_)) { in Dump()
190 } else if (offset == offsetof(DerivedType, component_)) { in Dump()
192 } else if (offset == offsetof(DerivedType, procPtr_)) { in Dump()
[all …]
/dports/devel/avr-gdb/gdb-7.3.1/gdb/testsuite/gdb.cp/
H A Dpr9167.cc12 typename DerivedType >
16 static DerivedType const DEFAULT_INSTANCE;
19 template<typename DATA, typename DerivedType>
20 const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE;
/dports/devel/gdb761/gdb-7.6.1/gdb/testsuite/gdb.cp/
H A Dpr9167.cc12 typename DerivedType >
16 static DerivedType const DEFAULT_INSTANCE;
19 template<typename DATA, typename DerivedType>
20 const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE;
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.cp/
H A Dpr9167.cc12 typename DerivedType >
16 static DerivedType const DEFAULT_INSTANCE;
19 template<typename DATA, typename DerivedType>
20 const DerivedType A<DATA, DerivedType>::DEFAULT_INSTANCE;
/dports/math/casadi/casadi-3.5.5/casadi/core/
H A Dx_function.hpp227 XFunction<DerivedType, MatType, NodeType>::
249 XFunction<DerivedType, MatType, NodeType>::
257 void XFunction<DerivedType, MatType, NodeType>::
263 void XFunction<DerivedType, MatType, NodeType>::
269 void XFunction<DerivedType, MatType, NodeType>::
343 MatType XFunction<DerivedType, MatType, NodeType>
724 Function XFunction<DerivedType, MatType, NodeType>
930 void XFunction<DerivedType, MatType, NodeType>
998 bool XFunction<DerivedType, MatType, NodeType>
1012 void XFunction<DerivedType, MatType, NodeType>::
[all …]
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/lib/VMCore/
H A DTypeSymbolTable.cpp31 cast<DerivedType>(TI->second)->removeAbstractTypeUser(this); in ~TypeSymbolTable()
75 cast<DerivedType>(Result)->removeAbstractTypeUser(this); in remove()
113 cast<DerivedType>(T)->addAbstractTypeUser(this); in insert()
121 void TypeSymbolTable::refineAbstractType(const DerivedType *OldType, in refineAbstractType()
130 if (I->second == const_cast<DerivedType *>(OldType)) { in refineAbstractType()
142 cast<DerivedType>(NewType)->addAbstractTypeUser(this); in refineAbstractType()
150 void TypeSymbolTable::typeBecameConcrete(const DerivedType *AbsTy) { in typeBecameConcrete()
/dports/lang/gcc48/gcc-4.8.5/libstdc++-v3/testsuite/tr1/4_metaprogramming/is_convertible/
H A Dvalue.cc52 VERIFY( (test_relationship<is_convertible, DerivedType, ClassType>(true)) ); in test01()
53 VERIFY( (test_relationship<is_convertible, DerivedType*, ClassType*>(true)) ); in test01()
54 VERIFY( (test_relationship<is_convertible, DerivedType&, ClassType&>(true)) ); in test01()
73 VERIFY( (test_relationship<is_convertible, ClassType, DerivedType>(false)) ); in test01()
74 VERIFY( (test_relationship<is_convertible, ClassType*, DerivedType*>(false)) ); in test01()
75 VERIFY( (test_relationship<is_convertible, ClassType&, DerivedType&>(false)) ); in test01()

12345678910>>...31