Home
last modified time | relevance | path

Searched refs:CppType (Results 1 – 25 of 504) sorted by relevance

12345678910>>...21

/dports/multimedia/gstreamermm/gstreamermm-1.10.0/gstreamer/gstreamermm/
H A Diterator.h211 IteratorBase<CppType>& operator=(const IteratorBase<CppType>& other);
344 IteratorBase<CppType>::IteratorBase(const IteratorBase<CppType>& other) in IteratorBase()
367 IteratorBase<CppType>& IteratorBase<CppType>::operator=(const IteratorBase<CppType>& other)
468 CppType IteratorBasic<CppType>::operator*() const
479 CppType* IteratorBasic<CppType>::operator->() const
493 IteratorBasic<CppType>& IteratorBasic<CppType>::operator++()
507 IteratorBasic<CppType> IteratorBasic<CppType>::operator++(int)
535 Glib::RefPtr<CppType> Iterator<CppType>::operator*() const
550 CppType* Iterator<CppType>::operator->() const
565 Iterator<CppType>& Iterator<CppType>::operator++()
[all …]
/dports/multimedia/gstreamermm/gstreamermm-1.10.0/gstreamer/src/
H A Diterator.hg116 IteratorBase<CppType>& operator=(const IteratorBase<CppType>& other);
249 IteratorBase<CppType>::IteratorBase(const IteratorBase<CppType>& other)
272 IteratorBase<CppType>& IteratorBase<CppType>::operator=(const IteratorBase<CppType>& other)
373 CppType IteratorBasic<CppType>::operator*() const
384 CppType* IteratorBasic<CppType>::operator->() const
398 IteratorBasic<CppType>& IteratorBasic<CppType>::operator++()
412 IteratorBasic<CppType> IteratorBasic<CppType>::operator++(int)
440 Glib::RefPtr<CppType> Iterator<CppType>::operator*() const
455 CppType* Iterator<CppType>::operator->() const
470 Iterator<CppType>& Iterator<CppType>::operator++()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/objects/
H A Dmanaged.h40 template <class CppType>
44 V8_INLINE CppType* raw() { return GetSharedPtrPtr()->get(); } in raw()
49 static Managed<CppType>* cast(Object* obj) { in cast()
51 return reinterpret_cast<Managed<CppType>*>(obj); in cast()
57 CppType* ptr = new CppType(std::forward<Args>(args)...); in Allocate()
63 static Handle<Managed<CppType>> FromRawPtr(Isolate* isolate, CppType* ptr) { in FromRawPtr()
70 static Handle<Managed<CppType>> FromUniquePtr( in FromUniquePtr()
76 static Handle<Managed<CppType>> FromSharedPtr( in FromSharedPtr()
80 Handle<Managed<CppType>> handle = Handle<Managed<CppType>>::cast( in FromSharedPtr()
94 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/objects/
H A Dmanaged-inl.h15 template <class CppType>
17 Handle<Managed<CppType>> Managed<CppType>::Allocate(Isolate* isolate, in Allocate()
25 template <class CppType>
26 Handle<Managed<CppType>> Managed<CppType>::FromRawPtr(Isolate* isolate, in FromRawPtr()
33 template <class CppType>
34 Handle<Managed<CppType>> Managed<CppType>::FromUniquePtr( in FromUniquePtr()
36 std::unique_ptr<CppType> unique_ptr) { in FromUniquePtr()
41 template <class CppType>
42 Handle<Managed<CppType>> Managed<CppType>::FromSharedPtr( in FromSharedPtr()
44 std::shared_ptr<CppType> shared_ptr) { in FromSharedPtr()
[all …]
H A Dmanaged.h48 template <class CppType>
55 V8_INLINE CppType* raw() { return GetSharedPtrPtr()->get(); } in raw()
65 static Handle<Managed<CppType>> Allocate(Isolate* isolate,
71 static Handle<Managed<CppType>> FromRawPtr(Isolate* isolate,
73 CppType* ptr);
78 static Handle<Managed<CppType>> FromUniquePtr(
80 std::unique_ptr<CppType> unique_ptr);
83 static Handle<Managed<CppType>> FromSharedPtr(
85 std::shared_ptr<CppType> shared_ptr);
90 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openscreen/src/tools/cddl/
H A Dcodegen.cc54 case CppType::Which::kUint64: in CppTypeToString()
56 case CppType::Which::kString: in CppTypeToString()
58 case CppType::Which::kBytes: { in CppTypeToString()
67 case CppType::Which::kVector: { in CppTypeToString()
74 case CppType::Which::kEnum: in CppTypeToString()
76 case CppType::Which::kStruct: in CppTypeToString()
178 const CppType& type, in WriteDiscriminatedUnionEqualityOperator()
195 case CppType::Which::kBytes: in WriteDiscriminatedUnionEqualityOperator()
346 case CppType::Which::kEnum: { in WriteTypeDefinition()
385 case CppType::Which::kEnum: { in EnsureDependentTypeDefinitionsWritten()
[all …]
H A Dsema.h204 struct CppType { struct
220 CppType* element_type; argument
256 CppType* type) { in CppMember() argument
270 CppType* type;
290 CppType* real_type; argument
293 CppType();
294 ~CppType();
309 CppType* optional_type; argument
321 case CppType::Which::kUint64:
327 case CppType::Which::kBytes:
[all …]
H A Dsema.cc77 CppType::CppType() : vector_type() {} in CppType() function in CppType
78 CppType::~CppType() { in ~CppType()
82 case CppType::Which::kUint64: in ~CppType()
84 case CppType::Which::kString: in ~CppType()
86 case CppType::Which::kBytes: in ~CppType()
90 case CppType::Which::kEnum: in ~CppType()
106 void CppType::InitVector() { in InitVector()
111 void CppType::InitEnum() { in InitEnum()
116 void CppType::InitStruct() { in InitStruct()
126 void CppType::InitBytes() { in InitBytes()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openscreen/src/tools/cddl/
H A Dcodegen.cc54 case CppType::Which::kUint64: in CppTypeToString()
56 case CppType::Which::kString: in CppTypeToString()
58 case CppType::Which::kBytes: { in CppTypeToString()
67 case CppType::Which::kVector: { in CppTypeToString()
74 case CppType::Which::kEnum: in CppTypeToString()
76 case CppType::Which::kStruct: in CppTypeToString()
178 const CppType& type, in WriteDiscriminatedUnionEqualityOperator()
195 case CppType::Which::kBytes: in WriteDiscriminatedUnionEqualityOperator()
346 case CppType::Which::kEnum: { in WriteTypeDefinition()
385 case CppType::Which::kEnum: { in EnsureDependentTypeDefinitionsWritten()
[all …]
H A Dsema.h204 struct CppType { struct
220 CppType* element_type; argument
256 CppType* type) { in CppMember() argument
270 CppType* type;
290 CppType* real_type; argument
293 CppType();
294 ~CppType();
309 CppType* optional_type; argument
321 case CppType::Which::kUint64:
327 case CppType::Which::kBytes:
[all …]
H A Dsema.cc77 CppType::CppType() : vector_type() {} in CppType() function in CppType
78 CppType::~CppType() { in ~CppType()
82 case CppType::Which::kUint64: in ~CppType()
84 case CppType::Which::kString: in ~CppType()
86 case CppType::Which::kBytes: in ~CppType()
90 case CppType::Which::kEnum: in ~CppType()
106 void CppType::InitVector() { in InitVector()
111 void CppType::InitEnum() { in InitEnum()
116 void CppType::InitStruct() { in InitStruct()
126 void CppType::InitBytes() { in InitBytes()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/objects/
H A Dmanaged.h49 template <class CppType>
66 static Handle<Managed<CppType>> Allocate(Isolate* isolate, in Allocate()
78 CppType* ptr) { in FromRawPtr()
80 std::shared_ptr<CppType>{ptr}); in FromRawPtr()
86 static Handle<Managed<CppType>> FromUniquePtr( in FromUniquePtr()
88 std::unique_ptr<CppType> unique_ptr) { in FromUniquePtr()
93 static Handle<Managed<CppType>> FromSharedPtr( in FromSharedPtr()
95 const std::shared_ptr<CppType>& shared_ptr) { in FromSharedPtr()
100 Handle<Managed<CppType>> handle = Handle<Managed<CppType>>::cast( in FromSharedPtr()
114 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/objects/
H A Dmanaged.h49 template <class CppType>
66 static Handle<Managed<CppType>> Allocate(Isolate* isolate, in Allocate()
78 CppType* ptr) { in FromRawPtr()
80 std::shared_ptr<CppType>{ptr}); in FromRawPtr()
86 static Handle<Managed<CppType>> FromUniquePtr( in FromUniquePtr()
88 std::unique_ptr<CppType> unique_ptr) { in FromUniquePtr()
93 static Handle<Managed<CppType>> FromSharedPtr( in FromSharedPtr()
95 std::shared_ptr<CppType> shared_ptr) { in FromSharedPtr()
101 Handle<Managed<CppType>> handle = Handle<Managed<CppType>>::cast( in FromSharedPtr()
115 std::shared_ptr<CppType>* GetSharedPtrPtr() { in GetSharedPtrPtr()
[all …]
/dports/devel/glibmm/glibmm-2.64.2/glib/glibmm/
H A Dvalue.h238 using CppType = T;
244 CppType get() const { return CppType(static_cast<CType>(get_boxed())); } in get()
326 using CppType = std::string;
339 using CppType = Glib::ustring;
356 void set(const CppType& data);
357 CppType get() const;
372 CppType get() const;
382 using CppType = T;
385 CppType get() const { return CppType(get_enum()); } in get()
395 using CppType = T;
[all …]
H A Dcontainerhandle_shared.h109 using CppType = T; member
130 using CppType = T*;
136 static CppType to_cpp_type(CType ptr)
162 using CppType = const T*;
168 static CppType to_cpp_type(CType ptr)
193 using CppType = Glib::RefPtr<T>;
199 static CppType to_cpp_type(CType ptr)
269 using CppType = Glib::ustring;
291 using CppType = std::string;
310 using CppType = bool;
[all …]
H A Dvalue_custom.h66 using CppType = PtrT;
71 inline void set(CppType data);
72 inline CppType get() const;
78 inline void set_(CppType data, Glib::Object*);
79 inline void set_(CppType data, void*);
81 inline CppType get_(Glib::Object*) const;
82 inline CppType get_(void*) const;
105 using CppType = T;
110 inline void set(const CppType& data);
111 inline CppType get() const;
[all …]
H A Dobject.h175 using CppType = Glib::RefPtr<T>;
179 static CType to_c_type(const CppType& ptr) { return Glib::unwrap(ptr); }
181 static CppType to_cpp_type(CType ptr)
211 using CppType = Glib::RefPtr<const T>;
215 static CType to_c_type(const CppType& ptr) { return Glib::unwrap(ptr); }
217 static CppType to_cpp_type(CType ptr)
256 using CppType = Glib::RefPtr<T>;
261 void set(const CppType& data) { set_object(data.operator->()); }
262 CppType get() const { return Glib::RefPtr<T>::cast_dynamic(get_object_copy()); }
275 using CppType = Glib::RefPtr<const T>;
[all …]
H A Dvalue_basictypes.h25 using CppType = bool;
50 using CppType = char;
75 using CppType = signed char;
98 using CppType = unsigned char;
121 using CppType = int;
144 using CppType = unsigned int;
167 using CppType = long;
213 using CppType = long long;
259 using CppType = float;
282 using CppType = double;
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/generator/templates/
H A Dwebgpu_cpp.cpp20 {% set CppType = as_cppType(type.name) %}
23 static_assert(sizeof({{CppType}}) == sizeof({{CType}}), "sizeof mismatch for {{CppType}}");
33 {% set CppType = as_cppType(type.name) %}
36 static_assert(sizeof({{CppType}}) == sizeof({{CType}}), "sizeof mismatch for {{CppType}}");
55 {% set CppType = as_cppType(type.name) %}
62 static_assert(offsetof({{CppType}}, nextInChain) == offsetof({{CType}}, nextInChain),
74 {% set CppType = as_cppType(type.name) %}
81 {% set CppType = as_cppType(type.name) %}
82 {{as_cppType(method.return_type.name)}} {{CppType}}::{{method.name.CamelCase()}}(
124 void {{CppType}}::WGPUReference({{CType}} handle) {
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/generator/templates/
H A Dwebgpu_cpp.cpp18 {% set CppType = as_cppType(type.name) %}
23 static_assert(sizeof({{CppType}}) == sizeof({{CType}}), "sizeof mismatch for {{CppType}}");
32 {% set CppType = as_cppType(type.name) %}
37 static_assert(sizeof({{CppType}}) == sizeof({{CType}}), "sizeof mismatch for {{CppType}}");
56 {% set CppType = as_cppType(type.name) %}
65 static_assert(offsetof({{CppType}}, nextInChain) == offsetof({{CType}}, nextInChain),
76 {% set CppType = as_cppType(type.name) %}
85 {% set CppType = as_cppType(type.name) %}
86 {{as_cppType(method.return_type.name)}} {{CppType}}::{{method.name.CamelCase()}}(
128 void {{CppType}}::WGPUReference({{CType}} handle) {
[all …]
/dports/devel/swig/swig-4.0.2/Lib/scilab/
H A Dscisequence.swg91 %define %traits_sequence(CppType, ScilabType)
94 fragment=SWIG_AsCheck_Sequence_frag(CppType),
95 fragment=SWIG_AsGet_Sequence_frag(CppType),
96 fragment=SWIG_AsSize_Sequence_frag(CppType),
98 fragment=SWIG_FromSet_Sequence_frag(CppType)) {
101 template <> struct traits_as_sequence<CppType > {
162 %define %traits_sequenceitem(CppType, ScilabType)
183 %define %add_traits_sequence(CppType, ScilabType)
184 %traits_sequence(CppType, ScilabType);
185 %fragment(SWIG_Traits_Sequence_frag(CppType));
[all …]
/dports/math/py-or-tools/or-tools-9.2/ortools/util/python/
H A Dproto.i19 %define PY_PROTO_TYPEMAP(PythonModule, PythonType, CppType)
20 %typecheck(SWIG_TYPECHECK_POINTER) const CppType&, CppType* {
38 %typemap(in) const CppType&, CppType* const, CppType* {
39 $1 = new CppType;
53 %typemap(freearg) const CppType&, CppType* const, CppType* {
57 %typemap(argout) CppType* const, CppType* {
78 %typemap(out) CppType {
105 %typemap(newfree) CppType {
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/plugin/x/tests/driver/common/
H A Dmessage_matcher.cc36 using CppType = FieldDescriptor::CppType; typedef
83 case CppType::CPPTYPE_BOOL: in match_field_value()
87 case CppType::CPPTYPE_DOUBLE: in match_field_value()
91 case CppType::CPPTYPE_FLOAT: in match_field_value()
95 case CppType::CPPTYPE_ENUM: in match_field_value()
100 case CppType::CPPTYPE_INT32: in match_field_value()
104 case CppType::CPPTYPE_INT64: in match_field_value()
133 case CppType::CPPTYPE_BOOL: in match_field_value()
143 case CppType::CPPTYPE_FLOAT: in match_field_value()
148 case CppType::CPPTYPE_ENUM: in match_field_value()
[all …]
/dports/devel/gconfmm26/gconfmm-2.28.3/gconf/gconfmm/
H A Dvalue_listhelpers.h49 typedef Schema CppType; typedef
51 static CType to_c_type (const CppType& ptr);
52 static CppType to_cpp_type (CType ptr);
58 typedef Glib::ustring CppType; typedef
60 static CType to_c_type (const CppType& ptr);
61 static CppType to_cpp_type (CType ptr);
67 typedef int CppType; typedef
69 static CType to_c_type (const CppType& ptr);
70 static CppType to_cpp_type (CType ptr);
76 typedef bool CppType; typedef
[all …]
H A Dclient.h205 typedef T CppType; typedef
206 typedef CppType* CType;
207 typedef CppType* CTypeNonConst;
211 CType pVal = new CppType; in to_c_type()
226 return CppType(); in to_cpp_type()
241 typedef int CppType;
242 typedef CppType* CType;
243 typedef CppType* CTypeNonConst;
258 return CppType();
269 typedef bool CppType;
[all …]

12345678910>>...21