/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | protobuf.h | 196 void DescriptorPool_mark(void* _self); 197 void DescriptorPool_free(void* _self); 201 VALUE DescriptorPool_build(int argc, VALUE* argv, VALUE _self); 202 VALUE DescriptorPool_lookup(VALUE _self, VALUE name); 203 VALUE DescriptorPool_generated_pool(VALUE _self); 207 void Descriptor_mark(void* _self); 208 void Descriptor_free(void* _self); 212 VALUE Descriptor_initialize(VALUE _self, VALUE cookie, VALUE descriptor_pool, 214 VALUE Descriptor_name(VALUE _self); 215 VALUE Descriptor_each(VALUE _self); [all …]
|
D | repeated_field.c | 44 RepeatedField* ruby_to_RepeatedField(VALUE _self) { in ruby_to_RepeatedField() argument 46 TypedData_Get_Struct(_self, RepeatedField, &RepeatedField_type, self); in ruby_to_RepeatedField() 62 VALUE RepeatedField_subarray(VALUE _self, long beg, long len) { in RepeatedField_subarray() argument 63 RepeatedField* self = ruby_to_RepeatedField(_self); in RepeatedField_subarray() 87 VALUE RepeatedField_each(VALUE _self) { in RepeatedField_each() argument 88 RepeatedField* self = ruby_to_RepeatedField(_self); in RepeatedField_each() 100 return _self; in RepeatedField_each() 110 VALUE RepeatedField_index(int argc, VALUE* argv, VALUE _self) { in RepeatedField_index() argument 111 RepeatedField* self = ruby_to_RepeatedField(_self); in RepeatedField_index() 137 return RepeatedField_subarray(_self, beg, len); in RepeatedField_index() [all …]
|
D | defs.c | 362 void DescriptorPool_mark(void* _self) { in DescriptorPool_mark() argument 363 DescriptorPool* self = _self; in DescriptorPool_mark() 367 void DescriptorPool_free(void* _self) { in DescriptorPool_free() argument 368 DescriptorPool* self = _self; in DescriptorPool_free() 433 VALUE DescriptorPool_build(int argc, VALUE* argv, VALUE _self) { in DescriptorPool_build() argument 434 VALUE ctx = rb_class_new_instance(1, &_self, cBuilder); in DescriptorPool_build() 448 VALUE DescriptorPool_lookup(VALUE _self, VALUE name) { in DescriptorPool_lookup() argument 449 DEFINE_SELF(DescriptorPool, self, _self); in DescriptorPool_lookup() 456 return get_msgdef_obj(_self, msgdef); in DescriptorPool_lookup() 461 return get_enumdef_obj(_self, enumdef); in DescriptorPool_lookup() [all …]
|
D | map.c | 142 Map* ruby_to_Map(VALUE _self) { in ruby_to_Map() argument 144 TypedData_Get_Struct(_self, Map, &Map_type, self); in ruby_to_Map() 148 void Map_mark(void* _self) { in Map_mark() argument 149 Map* self = _self; in Map_mark() 168 void Map_free(void* _self) { in Map_free() argument 169 Map* self = _self; in Map_free() 227 VALUE Map_init(int argc, VALUE* argv, VALUE _self) { in Map_init() argument 228 Map* self = ruby_to_Map(_self); in Map_init() 271 Map_merge_into_self(_self, argv[init_value_arg]); in Map_init() 285 VALUE Map_each(VALUE _self) { in Map_each() argument [all …]
|
D | message.c | 41 void Message_mark(void* _self) { in Message_mark() argument 42 MessageHeader* self = (MessageHeader *)_self; in Message_mark() 287 VALUE Message_method_missing(int argc, VALUE* argv, VALUE _self) { in Message_method_missing() argument 293 TypedData_Get_Struct(_self, MessageHeader, &Message_type, self); in Message_method_missing() 305 rb_check_frozen(_self); in Message_method_missing() 380 VALUE Message_respond_to_missing(int argc, VALUE* argv, VALUE _self) { in Message_respond_to_missing() argument 386 TypedData_Get_Struct(_self, MessageHeader, &Message_type, self); in Message_respond_to_missing() 407 int Message_initialize_kwarg(VALUE key, VALUE val, VALUE _self) { in Message_initialize_kwarg() argument 411 TypedData_Get_Struct(_self, MessageHeader, &Message_type, self); in Message_initialize_kwarg() 482 VALUE Message_initialize(int argc, VALUE* argv, VALUE _self) { in Message_initialize() argument [all …]
|
/third_party/boost/libs/type_erasure/test/ |
D | test_param.cpp | 21 extern any<copy_constructible<>, _self> a1; 22 extern const any<copy_constructible<>, _self> a2; 23 extern any<copy_constructible<>, _self&> a3; 24 extern const any<copy_constructible<>, _self&> a4; 25 extern any<copy_constructible<>, const _self&> a5; 26 extern const any<copy_constructible<>, const _self&> a6; 29 any<copy_constructible<>, _self> a7(); 30 const any<copy_constructible<>, _self> a8(); 31 any<copy_constructible<>, _self&> a9(); 32 const any<copy_constructible<>, _self&> a10(); [all …]
|
D | test_limits.cpp | 41 template<class T = _self> 49 any<mpl::vector<common<>, has_func<int(_self, _self, _self, _self, _self, _self)> > > x(t); in BOOST_AUTO_TEST_CASE() 56 any<mpl::vector<common<>, has_func<int(_self, _self, _self, _self, _self, _self)>, relaxed> > x; in BOOST_AUTO_TEST_CASE() 68 typedef my_concept<_self, int, int, int, int, int, int> concept1; in BOOST_AUTO_TEST_CASE() 78 typedef has_func<int(_self, tester<T::value>)> type;
|
D | test_construct_cref.cpp | 23 template<class T = _self> 36 any<common<>, const _self&> x = i; in BOOST_AUTO_TEST_CASE() 44 …any<test_concept, const _self&> x(i, make_binding<boost::mpl::map<boost::mpl::pair<_self, int> > >… in BOOST_AUTO_TEST_CASE() 52 any<test_concept, const _self&> x(i); in BOOST_AUTO_TEST_CASE() 54 any<test_concept, const _self&> y(x); in BOOST_AUTO_TEST_CASE() 56 any<test_concept, const _self&> z = as_rvalue(x); in BOOST_AUTO_TEST_CASE() 58 any<test_concept, const _self&> w = as_const(x); in BOOST_AUTO_TEST_CASE() 67 any<src_concept, const _self&> x(i); in BOOST_AUTO_TEST_CASE() 69 any<dst_concept, const _self&> y(x); in BOOST_AUTO_TEST_CASE() 71 any<dst_concept, const _self&> z = as_rvalue(x); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_callable.cpp | 27 template<class T = _self> 70 callable<void(), const _self> in BOOST_AUTO_TEST_CASE() 84 callable<int(), const _self> in BOOST_AUTO_TEST_CASE() 130 callable<void(int), const _self> in BOOST_AUTO_TEST_CASE() 144 callable<int(int), const _self> in BOOST_AUTO_TEST_CASE() 160 tuple<test_concept, _self, _a> t1(&f3, 3); in BOOST_AUTO_TEST_CASE() 166 tuple<test_concept, _self, _a> t2(&f4, 2); in BOOST_AUTO_TEST_CASE() 177 tuple<test_concept_int, _self, _a> t3(&f4, 4); in BOOST_AUTO_TEST_CASE() 190 callable<void(_a), const _self> in BOOST_AUTO_TEST_CASE() 192 tuple<test_concept, _self, _a> t1(&f3, 3); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_member.cpp | 46 const any<concept_type, _self&> x(m); in BOOST_AUTO_TEST_CASE() 70 ns1::ns2::ns_has_f1_0<int(), const _self>, in BOOST_AUTO_TEST_CASE() 79 ns1::ns2::ns_has_f1_0<int(), const _self>, in BOOST_AUTO_TEST_CASE() 82 const any<concept_type, _self&> x(m); in BOOST_AUTO_TEST_CASE() 88 ns1::ns2::ns_has_f1_0<int(), const _self>, in BOOST_AUTO_TEST_CASE() 91 const any<concept_type, const _self&> x(m); in BOOST_AUTO_TEST_CASE() 119 global_has_f1_0<int(), const _self>, in BOOST_AUTO_TEST_CASE() 120 global_has_f1_1<int(int), const _self>, in BOOST_AUTO_TEST_CASE() 135 global_has_f1_0<int(), _self>, in BOOST_AUTO_TEST_CASE() 136 global_has_f1_0<int(), const _self>, in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_construct_ref.cpp | 23 template<class T = _self> 36 any<common<>, _self&> x = i; in BOOST_AUTO_TEST_CASE() 44 any<test_concept, _self&> x(i, make_binding<boost::mpl::map<boost::mpl::pair<_self, int> > >()); in BOOST_AUTO_TEST_CASE() 52 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 54 any<test_concept, _self&> y(x); in BOOST_AUTO_TEST_CASE() 56 any<test_concept, _self&> z = as_rvalue(x); in BOOST_AUTO_TEST_CASE() 58 any<test_concept, _self&> w = as_const(x); in BOOST_AUTO_TEST_CASE() 67 any<src_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 69 any<dst_concept, _self&> y(x); in BOOST_AUTO_TEST_CASE() 71 any<dst_concept, _self&> z = as_rvalue(x); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_reference.cpp | 35 template<class T = _self> 46 any<test_concept, _self&> x(static_cast<no_destroy&>(val)); in BOOST_AUTO_TEST_CASE() 55 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 65 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 66 any<test_concept, _self&> y(j); in BOOST_AUTO_TEST_CASE() 67 any<test_concept, _self> z(x + y); in BOOST_AUTO_TEST_CASE() 77 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 78 any<test_concept, _self> y(j); in BOOST_AUTO_TEST_CASE() 79 any<test_concept, _self> z(x + y); in BOOST_AUTO_TEST_CASE()
|
D | test_free.cpp | 33 global_has_f1_1<int(_self&)>, in BOOST_AUTO_TEST_CASE() 44 ns1::ns2::ns_has_f1_1<int(_self&)>, in BOOST_AUTO_TEST_CASE() 61 ns1::ns2::ns_has_f1_1<int(const _self&)>, in BOOST_AUTO_TEST_CASE() 70 global_has_f1_1<void(_self&)>, in BOOST_AUTO_TEST_CASE() 81 global_has_f1_1<int(_self&)>, in BOOST_AUTO_TEST_CASE() 82 global_has_f1_2<int(_self&, int)>, in BOOST_AUTO_TEST_CASE() 92 global_has_f1_1<int(const _self&)>, in BOOST_AUTO_TEST_CASE() 93 global_has_f1_2<int(const _self&, int)>, in BOOST_AUTO_TEST_CASE() 105 global_has_f1_2<int(_self&&, int&&)>, in BOOST_AUTO_TEST_CASE() 126 ns3::has_f1<int(_self&)>, in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_dynamic_any_cast.cpp | 24 template<class T = _self> 36 …register_binding<addable<_self, _self, _a> >(make_binding<boost::mpl::map<boost::mpl::pair<_self, … in fixture() 111 typedef deduced<choose_second<_self, int> > _p2; in BOOST_AUTO_TEST_CASE() 113 …typedef ::boost::mpl::vector<common<>, common<_p2>, incrementable<_p2>, addable<_self, _self, _p2>… in BOOST_AUTO_TEST_CASE() 161 any<common<>, _self&> r(x); in BOOST_AUTO_TEST_CASE() 170 any<common<>, const _self&> cr(x); in BOOST_AUTO_TEST_CASE() 180 any<common<>, _self&&> rr(std::move(x)); in BOOST_AUTO_TEST_CASE() 194 any<common<>, _self&> y = dynamic_any_cast<any<common<>, _self&> >(x); in BOOST_AUTO_TEST_CASE() 197 any<common<>, _self&> z = dynamic_any_cast<any<common<>, _self&> >(y); in BOOST_AUTO_TEST_CASE() 199 any<common<>, _self&> w = dynamic_any_cast<any<common<>, _self&> >(as_rvalue(y)); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_same_type.cpp | 32 dereferenceable<deduced<boost::remove_pointer<_self> >&>, in BOOST_AUTO_TEST_CASE() 33 same_type<deduced<boost::remove_pointer<_self> >, _a> in BOOST_AUTO_TEST_CASE() 44 deduced<boost::remove_pointer<_self> >::type, 45 deduced<boost::remove_pointer<_self> > >)); 55 dereferenceable<deduced<boost::remove_pointer<_self> >&>, in BOOST_AUTO_TEST_CASE() 56 same_type<deduced<boost::remove_pointer<_self> >, _a>, in BOOST_AUTO_TEST_CASE() 57 same_type<deduced<boost::remove_pointer<_self> >, _a> in BOOST_AUTO_TEST_CASE() 71 dereferenceable<deduced<boost::remove_pointer<_self> >&>, in BOOST_AUTO_TEST_CASE() 72 same_type<deduced<boost::remove_pointer<_self> >, _a> in BOOST_AUTO_TEST_CASE()
|
D | test_any_cast.cpp | 23 template<class T = _self> 78 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 81 const any<test_concept, _self&> y(x); in BOOST_AUTO_TEST_CASE() 90 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 95 const any<test_concept, _self&> y(x); in BOOST_AUTO_TEST_CASE() 106 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 113 const any<test_concept, _self&> y(x); in BOOST_AUTO_TEST_CASE() 126 any<test_concept, const _self&> x(i); in BOOST_AUTO_TEST_CASE() 129 const any<test_concept, const _self&> y(x); in BOOST_AUTO_TEST_CASE() 138 any<test_concept, const _self&> x(i); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_deduced.cpp | 26 template<class T = _self> 36 typeid_<deduced<boost::remove_pointer<_self> >::type>, in BOOST_AUTO_TEST_CASE() 37 dereferenceable<deduced<boost::remove_pointer<_self> >&> in BOOST_AUTO_TEST_CASE() 41 any<test_concept, deduced<boost::remove_pointer<_self> >&> y(*x); in BOOST_AUTO_TEST_CASE() 47 deduced<boost::remove_pointer<_self> >::type, 48 deduced<boost::remove_pointer<_self> > >));
|
D | test_stream.cpp | 66 tuple<test_concept, _a&, _self> t(ss, val); in BOOST_AUTO_TEST_CASE() 76 tuple<test_concept, _a&, _self> t(ss, val); in BOOST_AUTO_TEST_CASE() 96 tuple<test_concept, _a&, _b&, _self> t(ss, wss, val); in BOOST_AUTO_TEST_CASE() 106 tuple<test_concept, _a&, _b&, _self> t(ss, wss, val); in BOOST_AUTO_TEST_CASE() 116 tuple<test_concept, _a&, _b&, _self> t(ss, wss, val); in BOOST_AUTO_TEST_CASE() 126 tuple<test_concept, _a&, _b&, _self> t(ss, wss, val); in BOOST_AUTO_TEST_CASE() 160 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 170 any<test_concept, _self&> x(i); in BOOST_AUTO_TEST_CASE() 180 tuple<test_concept, _a&, _self&> t(ss, i); in BOOST_AUTO_TEST_CASE() 190 tuple<test_concept, _a&, _self&> t(ss, i); in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_subscript.cpp | 22 template<class T = _self> 38 typedef ::boost::mpl::vector<common<>, subscriptable<int&, const _self> > test_concept; in BOOST_AUTO_TEST_CASE() 46 … typedef ::boost::mpl::vector<common<>, common<_a>, subscriptable<_a&, const _self> > test_concept; in BOOST_AUTO_TEST_CASE() 48 ::boost::mpl::pair<_self, int*>, in BOOST_AUTO_TEST_CASE() 59 …typedef ::boost::mpl::vector<common<>, common<_a>, subscriptable<const _a&, const _self> > test_co… in BOOST_AUTO_TEST_CASE() 61 ::boost::mpl::pair<_self, const int*>, in BOOST_AUTO_TEST_CASE()
|
/third_party/typescript/tests/baselines/reference/ |
D | fatarrowfunctionsInFunctions.types | 10 …llo World", start: function() { var _self = this; setTimeout(function() { … 18 >function() { var _self = this; setTimeout(function() { _self.message.toSt… 20 var _self = this; 21 >_self : any 25 >setTimeout(function() { _self.message.toString(); }, 3000) : number 27 >function() { _self.message.toString(); } : () => void 29 _self.message.toString(); 30 >_self.message.toString() : any 31 >_self.message.toString : any 32 >_self.message : any [all …]
|
D | fatarrowfunctionsInFunctions.symbols | 17 var _self = this; 18 >_self : Symbol(_self, Decl(fatarrowfunctionsInFunctions.ts, 5, 11)) 23 _self.message.toString(); 24 >_self : Symbol(_self, Decl(fatarrowfunctionsInFunctions.ts, 5, 11))
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | map_container.cc | 62 static PyObject* Contains(PyObject* _self, PyObject* key); 63 static Py_ssize_t Length(PyObject* _self); 64 static PyObject* GetIterator(PyObject *_self); 65 static PyObject* IterNext(PyObject* _self); 66 static PyObject* MergeFrom(PyObject* _self, PyObject* arg); 69 static PyObject* ScalarMapGetItem(PyObject* _self, PyObject* key); 70 static PyObject* MessageMapGetItem(PyObject* _self, PyObject* key); 71 static int ScalarMapSetItem(PyObject* _self, PyObject* key, PyObject* v); 72 static int MessageMapSetItem(PyObject* _self, PyObject* key, PyObject* v); 73 static PyObject* ScalarMapToStr(PyObject* _self); [all …]
|
/third_party/boost/libs/type_erasure/example/ |
D | references.cpp | 29 any<typeid_<>, _self&> x(i); in references1() 71 any<requirements, _self&> y(x); in references3() 88 any<requirements, _self&> y(x); in references4() 106 boost::shared_ptr<any<requirements, _self&> > p( in references5() 107 new any<requirements, _self&>(x)); in references5() 108 any<requirements, _self&> y(*p); // equivalent to y(x); in references5() 120 any<incrementable<>, _self&> x(i); in references6() 121 any<incrementable<>, const _self&> y(x); in references6()
|
D | basic.cpp | 79 void append_many(any<has_push_back<void(int)>, _self&> container) { in BOOST_TYPE_ERASURE_MEMBER() 113 bool is_empty(any<has_empty<bool() const>, const _self&> x) { in BOOST_TYPE_ERASURE_MEMBER() 122 std::vector<std::string> read_lines(any<has_getline<bool(_self&, std::string&)>, _self&> stream) in BOOST_TYPE_ERASURE_FREE() 141 void read_line(any<has_getline<bool(std::istream&, _self&)>, _self&> str) in read_line() argument
|
/third_party/gstreamer/gstreamer/libs/gst/controller/ |
D | gstdirectcontrolbinding.c | 59 _self, GstObject * object, GstClockTime timestamp, GstClockTime last_sync); 60 static GValue *gst_direct_control_binding_get_value (GstControlBinding * _self, 63 _self, GstClockTime timestamp, GstClockTime interval, guint n_values, 66 * _self, GstClockTime timestamp, GstClockTime interval, guint n_values, 361 gst_direct_control_binding_sync_values (GstControlBinding * _self, in gst_direct_control_binding_sync_values() argument 364 GstDirectControlBinding *self = GST_DIRECT_CONTROL_BINDING (_self); in gst_direct_control_binding_sync_values() 372 _self->name, GST_TIME_ARGS (timestamp)); in gst_direct_control_binding_sync_values() 384 GST_LOG_OBJECT (object, " mapping %s to value of type %s", _self->name, in gst_direct_control_binding_sync_values() 391 g_object_set_property ((GObject *) object, _self->name, dst_val); in gst_direct_control_binding_sync_values() 395 GST_DEBUG_OBJECT (object, "no control value for param %s", _self->name); in gst_direct_control_binding_sync_values() [all …]
|