/third_party/gstreamer/gstreamer/gst/ |
D | gstobject.c | 119 static void gst_object_set_property (GObject * object, guint prop_id, 121 static void gst_object_get_property (GObject * object, guint prop_id, 124 static void gst_object_dispatch_properties_changed (GObject * object, 127 static void gst_object_dispose (GObject * object); 128 static void gst_object_finalize (GObject * object); 130 static gboolean gst_object_set_name_default (GstObject * object); 139 gst_object_constructed (GObject * object) in gst_object_constructed() argument 141 GST_TRACER_OBJECT_CREATED (GST_OBJECT_CAST (object)); in gst_object_constructed() 143 ((GObjectClass *) gst_object_parent_class)->constructed (object); in gst_object_constructed() 203 gst_object_init (GstObject * object) in gst_object_init() argument [all …]
|
/third_party/boost/boost/python/ |
D | exec.hpp | 19 object 21 eval(str string, object global = object(), object local = object()); 23 object 25 eval(char const *string, object global = object(), object local = object()); 30 object 32 exec_statement(str string, object global = object(), object local = object()); 34 object 36 exec_statement(char const *string, object global = object(), object local = object()); 41 object 43 exec(str string, object global = object(), object local = object()); [all …]
|
D | object_protocol_core.hpp | 16 class object; 18 BOOST_PYTHON_DECL object getattr(object const& target, object const& key); 19 BOOST_PYTHON_DECL object getattr(object const& target, object const& key, object const& default_); 20 BOOST_PYTHON_DECL void setattr(object const& target, object const& key, object const& value); 21 BOOST_PYTHON_DECL void delattr(object const& target, object const& key); 25 BOOST_PYTHON_DECL object getattr(object const& target, char const* key); 26 BOOST_PYTHON_DECL object getattr(object const& target, char const* key, object const& default_); 27 BOOST_PYTHON_DECL void setattr(object const& target, char const* key, object const& value); 28 BOOST_PYTHON_DECL void delattr(object const& target, char const* key); 30 BOOST_PYTHON_DECL object getitem(object const& target, object const& key); [all …]
|
D | object_attributes.hpp | 19 static object get(object const& target, char const* key); 20 static object get(object const& target, object const& key); 25 static object const& set(object const& target, char const* key, object const& value); 26 static void del(object const&target, char const* key); 31 typedef object const key_type; 32 static object get(object const& target, object const& key); 37 static object const& set(object const& target, object const& key, object const& value); 38 static void del(object const&target, object const& key); 59 inline object_objattribute object_operators<U>::attr(object const& name) in attr() 66 inline const_object_objattribute object_operators<U>::attr(object const& name) const in attr() [all …]
|
D | str.hpp | 28 struct BOOST_PYTHON_DECL str_base : object 41 object decode() const; 42 object decode(object_cref encoding) const; 44 object decode(object_cref encoding, object_cref errors) const; 47 object encode() const; 48 object encode(object_cref encoding) const; 49 object encode(object_cref encoding, object_cref errors) const; 137 BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS(str_base, object) 139 static new_reference call(object const&); 162 : base(object(other)) in str() [all …]
|
D | object_protocol.hpp | 27 object getattr(Target const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) in getattr() 29 return getattr(object(target), object(key)); in getattr() 33 object getattr(Target const& target, Key const& key, Default const& default_ BOOST_PYTHON_NO_ARRAY_… in getattr() 35 return getattr(object(target), object(key), object(default_)); in getattr() 40 void setattr(object const& target, Key const& key, Value const& value BOOST_PYTHON_NO_ARRAY_ARG(Key… in setattr() 42 setattr(target, object(key), object(value)); in setattr() 46 void delattr(object const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) in delattr() 48 delattr(target, object(key)); in delattr() 52 object getitem(Target const& target, Key const& key BOOST_PYTHON_NO_ARRAY_ARG(Key)) in getitem() 54 return getitem(object(target), object(key)); in getitem() [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/dvb/ |
D | gstdvbsrc.c | 539 static void gst_dvbsrc_finalize (GObject * object); 540 static void gst_dvbsrc_set_property (GObject * object, guint prop_id, 542 static void gst_dvbsrc_get_property (GObject * object, guint prop_id, 559 static gboolean gst_dvbsrc_tune (GstDvbSrc * object); 560 static gboolean gst_dvbsrc_set_fe_params (GstDvbSrc * object, 562 static void gst_dvbsrc_guess_delsys (GstDvbSrc * object); 563 static gboolean gst_dvbsrc_tune_fe (GstDvbSrc * object); 565 static void gst_dvbsrc_set_pes_filters (GstDvbSrc * object); 566 static void gst_dvbsrc_unset_pes_filters (GstDvbSrc * object); 1040 gst_dvbsrc_init (GstDvbSrc * object) in gst_dvbsrc_init() argument [all …]
|
/third_party/ffmpeg/compat/atomics/win32/ |
D | stdatomic.h | 83 #define atomic_store(object, desired) \ argument 85 *(object) = (desired); \ 89 #define atomic_store_explicit(object, desired, order) \ argument 90 atomic_store(object, desired) 92 #define atomic_load(object) \ argument 93 (MemoryBarrier(), *(object)) 95 #define atomic_load_explicit(object, order) \ argument 96 atomic_load(object) 98 #define atomic_exchange(object, desired) \ argument 99 InterlockedExchangePointer(object, desired); [all …]
|
/third_party/ffmpeg/compat/atomics/gcc/ |
D | stdatomic.h | 86 #define atomic_store(object, desired) \ argument 88 *(object) = (desired); \ 92 #define atomic_store_explicit(object, desired, order) \ argument 93 atomic_store(object, desired) 95 #define atomic_load(object) \ argument 96 (__sync_synchronize(), *(object)) 98 #define atomic_load_explicit(object, order) \ argument 99 atomic_load(object) 101 #define atomic_exchange(object, desired) \ argument 103 __typeof__(object) _obj = (object); \ [all …]
|
/third_party/boost/libs/python/test/ |
D | object.cpp | 16 object ref_to_noncopyable() in ref_to_noncopyable() 18 return object(boost::ref(not_copyable)); in ref_to_noncopyable() 21 object call_object_3(object f) in call_object_3() 26 object message() in message() 28 return object("hello, world!"); in message() 31 object number() in number() 33 return object(42); in number() 36 object obj_getattr(object x, char const* name) in obj_getattr() 41 object obj_objgetattr(object x, object const& name) in obj_objgetattr() 46 object obj_const_getattr(object const& x, char const* name) in obj_const_getattr() [all …]
|
/third_party/ffmpeg/compat/atomics/suncc/ |
D | stdatomic.h | 83 static inline void atomic_store(intptr_t *object, intptr_t desired) in atomic_store() argument 85 *object = desired; in atomic_store() 89 #define atomic_store_explicit(object, desired, order) \ argument 90 atomic_store(object, desired) 92 static inline intptr_t atomic_load(intptr_t *object) in atomic_load() argument 95 return *object; in atomic_load() 98 #define atomic_load_explicit(object, order) \ argument 99 atomic_load(object) 101 #define atomic_exchange(object, desired) \ argument 102 atomic_swap_ptr(object, desired) [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | nonPrimitiveStrictNull.types | 2 var a: object 3 >a : object 5 declare var b: object | null 6 >b : object | null 9 declare var c: object | undefined 10 >c : object | undefined 12 declare var d: object | null | undefined 13 >d : object | null | undefined 16 var e: object | null 17 >e : object | null [all …]
|
D | narrowingTruthyObject.types | 7 if (typeof x === 'object') { 8 >typeof x === 'object' : boolean 9 >typeof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct… 11 >'object' : "object" 16 >x : object | null 19 if (typeof x === 'object' && x) { 20 >typeof x === 'object' && x : false | object | null 21 >typeof x === 'object' : boolean 22 >typeof x : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "funct… 24 >'object' : "object" [all …]
|
D | emitCompoundExponentiationAssignmentWithIndexingOnLHS3.types | 2 var object = { 3 >object : { _0: number; 0: number; } 32 object[0] **= object[0]; 33 >object[0] **= object[0] : number 34 >object[0] : number 35 >object : { _0: number; 0: number; } 37 >object[0] : number 38 >object : { _0: number; 0: number; } 41 object[0] **= object[0] **= 2; 42 >object[0] **= object[0] **= 2 : number [all …]
|
D | objectCreate2.types | 11 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 13 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } 19 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 21 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } 31 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 33 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } 39 >Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>)… 41 >create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; } 44 var o = Object.create(<object>{}); // object 46 >Object.create(<object>{}) : any [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/ |
D | gstmftransform.cpp | 103 QueryInterface (REFIID riid, void ** object) in QueryInterface() argument 234 GstObject object; member 274 static void gst_mf_transform_constructed (GObject * object); 275 static void gst_mf_transform_finalize (GObject * object); 276 static void gst_mf_transform_get_property (GObject * object, 278 static void gst_mf_transform_set_property (GObject * object, 330 gst_mf_transform_constructed (GObject * object) in gst_mf_transform_constructed() argument 332 GstMFTransform *self = GST_MF_TRANSFORM (object); in gst_mf_transform_constructed() 342 G_OBJECT_CLASS (parent_class)->constructed (object); in gst_mf_transform_constructed() 363 gst_mf_transform_finalize (GObject * object) in gst_mf_transform_finalize() argument [all …]
|
/third_party/ffmpeg/compat/atomics/dummy/ |
D | stdatomic.h | 85 #define atomic_store(object, desired) \ argument 87 *(object) = (desired); \ 90 #define atomic_store_explicit(object, desired, order) \ argument 91 atomic_store(object, desired) 93 #define atomic_load(object) \ argument 94 (*(object)) 96 #define atomic_load_explicit(object, order) \ argument 97 atomic_load(object) 99 static inline intptr_t atomic_exchange(intptr_t *object, intptr_t desired) in atomic_exchange() argument 101 intptr_t ret = *object; in atomic_exchange() [all …]
|
/third_party/glib/gio/ |
D | gdbusobjectskeleton.c | 77 GDBusObjectSkeleton *object = G_DBUS_OBJECT_SKELETON (_object); in G_DEFINE_TYPE_WITH_CODE() local 79 g_free (object->priv->object_path); in G_DEFINE_TYPE_WITH_CODE() 80 g_hash_table_unref (object->priv->map_name_to_iface); in G_DEFINE_TYPE_WITH_CODE() 82 g_mutex_clear (&object->priv->lock); in G_DEFINE_TYPE_WITH_CODE() 94 GDBusObjectSkeleton *object = G_DBUS_OBJECT_SKELETON (_object); in g_dbus_object_skeleton_get_property() local 99 g_mutex_lock (&object->priv->lock); in g_dbus_object_skeleton_get_property() 100 g_value_set_string (value, object->priv->object_path); in g_dbus_object_skeleton_get_property() 101 g_mutex_unlock (&object->priv->lock); in g_dbus_object_skeleton_get_property() 105 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); in g_dbus_object_skeleton_get_property() 116 GDBusObjectSkeleton *object = G_DBUS_OBJECT_SKELETON (_object); in g_dbus_object_skeleton_set_property() local [all …]
|
/third_party/boost/boost/icl/concept/ |
D | interval_associator.hpp | 111 iterative_size(const Type& object) in iterative_size() argument 113 return object.iterative_size(); in iterative_size() 122 cardinality(const Type& object) in cardinality() argument 128 ICL_const_FORALL(typename Type, it, object) in cardinality() 140 cardinality(const Type& object) in cardinality() argument 147 ICL_const_FORALL(typename Type, it, object) in cardinality() 160 size(const Type& object) in size() argument 162 return icl::cardinality(object); in size() 167 length(const Type& object) in length() argument 172 const_iterator it_ = object.begin(); in length() [all …]
|
D | element_associator.hpp | 27 iterative_size(const Type& object) in iterative_size() argument 29 return object.size(); in iterative_size() 34 size(const Type& object) in size() argument 36 return icl::iterative_size(object); in size() 41 cardinality(const Type& object) in cardinality() argument 43 return icl::iterative_size(object); in cardinality() 171 operator += (Type& object, const typename Type::value_type& operand) in operator +=() argument 173 return icl::add(object, operand); in operator +=() 178 operator + (Type object, const typename Type::value_type& operand) in operator +() argument 180 return object += operand; in operator +() [all …]
|
D | element_map.hpp | 30 erase_if(const Predicate& pred, Type& object); 80 add(Type& object, const typename Type::value_type& value_pair) in add() argument 82 return object.add(value_pair); in add() 89 add(Type& object, typename Type::iterator prior, in add() argument 92 return object.add(prior, value_pair); in add() 103 erase(Type& object, const typename Type::element_type& value_pair) in erase() argument 112 iterator it_ = object.find(value_pair.first); in erase() 113 if(it_ != object.end() && value_pair.second == (*it_).second) in erase() 115 object.erase(it_); in erase() 124 erase(Type& object, const typename Type::set_type& erasure) in erase() argument [all …]
|
/third_party/ffmpeg/compat/atomics/pthread/ |
D | stdatomic.h | 91 static inline void atomic_store(intptr_t *object, intptr_t desired) in atomic_store() argument 94 *object = desired; in atomic_store() 98 #define atomic_store_explicit(object, desired, order) \ argument 99 atomic_store(object, desired) 101 static inline intptr_t atomic_load(intptr_t *object) in atomic_load() argument 105 ret = *object; in atomic_load() 110 #define atomic_load_explicit(object, order) \ argument 111 atomic_load(object) 113 static inline intptr_t atomic_exchange(intptr_t *object, intptr_t desired) in atomic_exchange() argument 117 ret = *object; in atomic_exchange() [all …]
|
/third_party/glib/gobject/ |
D | gobject.c | 137 #define OBJECT_HAS_TOGGLE_REF(object) \ argument 138 ((g_datalist_get_flags (&(object)->qdata) & OBJECT_HAS_TOGGLE_REF_FLAG) != 0) 193 static void g_object_init (GObject *object, 198 static void g_object_constructed (GObject *object); 199 static void g_object_real_dispose (GObject *object); 200 static void g_object_finalize (GObject *object); 201 static void g_object_do_set_property (GObject *object, 205 static void g_object_do_get_property (GObject *object, 224 static void g_object_dispatch_properties_changed (GObject *object, 227 static guint object_floating_flag_handler (GObject *object, [all …]
|
D | gobject.h | 56 #define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject)) argument 71 #define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_FUNDAMENTAL_TYPE ((object), G_TYPE_OBJEC… argument 73 #define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT)) 91 #define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectCla… argument 100 #define G_OBJECT_TYPE(object) (G_TYPE_FROM_INSTANCE (object)) argument 110 #define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object))) argument 155 #define G_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_INITIAL… argument 170 #define G_IS_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_INITIAL… argument 187 #define G_INITIALLY_UNOWNED_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_INITIALL… argument 207 typedef void (*GObjectGetPropertyFunc) (GObject *object, [all …]
|
/third_party/boost/libs/python/doc/reference/ |
D | object.qbk | 1 [section boost/python/object.hpp] 3 …object wrapper class object, and related classes. In order to avoid some potenential problems with… 22 The policies which are used for proxies representing an attribute access to a const object. 29 static object get(object const& target, char const* key); 36 static object get(object const& target, char const* key); 41 [[Returns][An object managing the result of the attribute access.]] 46 The policies which are used for proxies representing an attribute access to a mutable object. 52 static object const& set(object const& target, char const* key, object const& value); 53 static void del(object const&target, char const* key); 60 static object const& set(object const& target, char const* key, object const& value); [all …]
|