/third_party/boost/boost/tuple/detail/ |
D | tuple_basic.hpp | 194 typedef const typename boost::remove_cv<T>::type& parameter_type; typedef 208 typedef T& parameter_type; typedef 293 cons(typename access_traits<stored_head_type>::parameter_type h, in cons() 377 cons(typename access_traits<stored_head_type>::parameter_type h, in cons() 491 explicit tuple(typename access_traits<T0>::parameter_type t0) in tuple() 496 tuple(typename access_traits<T0>::parameter_type t0, in tuple() 497 typename access_traits<T1>::parameter_type t1) in tuple() 502 tuple(typename access_traits<T0>::parameter_type t0, in tuple() 503 typename access_traits<T1>::parameter_type t1, in tuple() 504 typename access_traits<T2>::parameter_type t2) in tuple() [all …]
|
/third_party/glib/gio/ |
D | gactionmap.c | 226 const GVariantType *parameter_type; in g_action_map_add_action_entries() local 229 if (entry->parameter_type) in g_action_map_add_action_entries() 231 if (!g_variant_type_string_is_valid (entry->parameter_type)) in g_action_map_add_action_entries() 237 entry->parameter_type, entry->name); in g_action_map_add_action_entries() 241 parameter_type = G_VARIANT_TYPE (entry->parameter_type); in g_action_map_add_action_entries() 244 parameter_type = NULL; in g_action_map_add_action_entries() 263 parameter_type, in g_action_map_add_action_entries() 271 parameter_type); in g_action_map_add_action_entries()
|
D | gsimpleaction.c | 52 GVariantType *parameter_type; member 97 return simple->parameter_type; in g_simple_action_get_parameter_type() 210 g_return_if_fail (simple->parameter_type == NULL ? in g_simple_action_activate() 214 simple->parameter_type))); in g_simple_action_activate() 262 action->parameter_type = g_value_dup_boxed (value); in g_simple_action_set_property() 332 if (simple->parameter_type) in g_simple_action_finalize() 333 g_variant_type_free (simple->parameter_type); in g_simple_action_finalize() 612 const GVariantType *parameter_type) in g_simple_action_new() argument 618 "parameter-type", parameter_type, in g_simple_action_new() 642 const GVariantType *parameter_type, in g_simple_action_new_stateful() argument [all …]
|
D | gdbusactiongroup.c | 80 GVariantType *parameter_type; member 95 if (info->parameter_type) in action_info_free() 96 g_variant_type_free (info->parameter_type); in action_info_free() 125 info->parameter_type = g_variant_type_copy ((GVariantType *) param_str); in action_info_new_from_iter() 127 info->parameter_type = NULL; in action_info_new_from_iter() 333 const GVariantType **parameter_type, in g_dbus_action_group_query_action() argument 354 if (parameter_type) in g_dbus_action_group_query_action() 355 *parameter_type = info->parameter_type; in g_dbus_action_group_query_action()
|
D | gsimpleaction.h | 42 … const GVariantType *parameter_type); 46 … const GVariantType *parameter_type,
|
D | gactiongroup.c | 189 const GVariantType **parameter_type, in g_action_group_real_query_action() argument 221 if (parameter_type != NULL) in g_action_group_real_query_action() 222 *parameter_type = (* iface->get_action_parameter_type) (action_group, action_name); in g_action_group_real_query_action() 783 const GVariantType **parameter_type, in g_action_group_query_action() argument 789 …->query_action (action_group, action_name, enabled, parameter_type, state_type, state_hint, state); in g_action_group_query_action()
|
D | gsimpleactiongroup.c | 78 const GVariantType **parameter_type, in g_simple_action_group_query_action() argument 94 if (parameter_type) in g_simple_action_group_query_action() 95 *parameter_type = g_action_get_parameter_type (action); in g_simple_action_group_query_action()
|
D | gactiongroup.h | 91 const GVariantType **parameter_type, 154 … const GVariantType **parameter_type,
|
D | gapplicationimpl.h | 9 GVariantType *parameter_type; member
|
D | gactionmap.h | 63 const gchar *parameter_type; member
|
/third_party/mindspore/mindspore/nn/probability/distribution/ |
D | gumbel.py | 149 return self.loc * self.fill(self.parameter_type, self.shape(self.scale), 1.0) 158 scale = self.scale * self.fill(self.parameter_type, self.broadcast_shape, 1.0) 168 scale = self.scale * self.fill(self.parameter_type, self.broadcast_shape, 1.0) 219 loc_b = self.cast(loc_b, self.parameter_type) 220 scale_b = self.cast(scale_b, self.parameter_type)
|
D | bernoulli.py | 243 value = self.cast(value, self.parameter_type) 265 value = self.cast(value, self.parameter_type) 273 zeros = self.fill(self.parameter_type, self.shape( 275 ones = self.fill(self.parameter_type, self.shape( 295 probs1_b = self.cast(probs1_b, self.parameter_type)
|
D | geometric.py | 250 value = self.cast(value, self.parameter_type) 272 value = self.cast(value, self.parameter_type) 295 probs1_b = self.cast(probs1_b, self.parameter_type)
|
D | transformed_distribution.py | 111 self.parameter_type = self.distribution.parameter_type
|
D | normal.py | 291 mean_b = self.cast(mean_b, self.parameter_type) 292 sd_b = self.cast(sd_b, self.parameter_type)
|
D | gamma.py | 333 concentration_b = self.cast(concentration_b, self.parameter_type) 334 rate_b = self.cast(rate_b, self.parameter_type)
|
D | cauchy.py | 317 loc_b = self.cast(loc_b, self.parameter_type) 319 scale_b = self.cast(scale_b, self.parameter_type)
|
D | beta.py | 318 concentration1_b = self.cast(concentration1_b, self.parameter_type) 319 concentration0_b = self.cast(concentration0_b, self.parameter_type)
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_function.cpp | 278 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local 279 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 281 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall() 290 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall() 292 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
D | validate_function.cpp | 278 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local 279 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 281 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall() 290 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall() 292 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
|
/third_party/spirv-tools/source/val/ |
D | validate_function.cpp | 278 const auto parameter_type = _.FindDef(parameter_type_id); in ValidateFunctionCall() local 279 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 281 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall() 290 if (parameter_type->opcode() == SpvOpTypePointer && in ValidateFunctionCall() 292 SpvStorageClass sc = parameter_type->GetOperandAs<SpvStorageClass>(1u); in ValidateFunctionCall()
|
/third_party/boost/libs/math/include_private/boost/math/tools/ |
D | test_data.hpp | 50 enum parameter_type enum 60 parameter_type operator | (parameter_type a, parameter_type b) in operator |() 62 return static_cast<parameter_type>((int)a|(int)b); in operator |() 64 parameter_type& operator |= (parameter_type& a, parameter_type b) in operator |=() 66 a = static_cast<parameter_type>(a|b); in operator |=() 90 parameter_type type;
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | tsa_atomic_add_to_first_tensor.cc | 108 TypeId parameter_type; in ProcessTsaFirstNode() local 113 parameter_type = tensor->data_type(); in ProcessTsaFirstNode() 116 …parameter_type = AnfAlgo::GetOutputDeviceDataType(kernel_with_index.first, kernel_with_index.secon… in ProcessTsaFirstNode() 121 para_info_builder.SetOutputsDeviceType({parameter_type}); in ProcessTsaFirstNode()
|
/third_party/boost/boost/range/adaptor/ |
D | indexed.hpp | 87 index_value(typename tuples::access_traits<Indexable>::parameter_type t0, in index_value() 88 typename tuples::access_traits<T>::parameter_type t1) in index_value()
|
/third_party/mindspore/mindspore/nn/probability/bijector/ |
D | bijector.py | 144 shape_tensor = self.fill_base(self.parameter_type, shape, 0.0) 146 self.parameter_type, self.batch_shape, 0.0)
|