/third_party/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 204 #define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type 206 , typename p0##_type, typename p1##_type 208 , typename p0##_type, typename p1##_type, typename p2##_type 210 , typename p0##_type, typename p1##_type, typename p2##_type, \ 211 typename p3##_type 213 , typename p0##_type, typename p1##_type, typename p2##_type, \ 214 typename p3##_type, typename p4##_type 216 , typename p0##_type, typename p1##_type, typename p2##_type, \ 217 typename p3##_type, typename p4##_type, typename p5##_type 220 , typename p0##_type, typename p1##_type, typename p2##_type, \ [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
D | tr_dump.h | 120 #define trace_dump_arg(_type, _arg) \ argument 123 trace_dump_##_type(_arg); \ 134 #define trace_dump_arg_struct(_type, _arg) \ argument 137 trace_dump_##_type(&_arg); \ 141 #define trace_dump_ret(_type, _arg) \ argument 144 trace_dump_##_type(_arg); \ 148 #define trace_dump_array(_type, _obj, _size) \ argument 155 trace_dump_##_type((_obj)[idx]); \ 164 #define trace_dump_struct_array(_type, _obj, _size) \ argument 171 trace_dump_##_type(&(_obj)[idx]); \ [all …]
|
/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_physical_device_features.py | 146 for _type in doc.findall('./types/type'): 147 if _type.attrib.get('name') != 'VkPhysicalDeviceFeatures': 152 for p in _type.findall('./member'): 173 for _type in doc.findall('./types/type'): 174 if _type.attrib.get('category') != 'struct': 176 if _type.attrib.get('structextends') != 'VkPhysicalDeviceFeatures2,VkDeviceCreateInfo': 178 if _type.attrib.get('name') in provisional_structs: 182 for elem in _type: 189 for p in _type.findall('./member'): 199 feat = Feature(name=_type.attrib.get('name'), vk_type=s_type, vk_flags=flags) [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_vla.h | 35 #define NIR_VLA(_type, _name, _length) \ argument 36 _type *_name = alloca((_length) * sizeof *_name) 44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ argument 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name) 53 #define NIR_VLA_ZERO(_type, _name, _length) \ argument 54 NIR_VLA_FILL(_type, _name, _length, 0)
|
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/ |
D | misc.h | 71 #define PARENT(_ptr, _type, _member) ({ \ argument 72 __typeof__ (&((_type *) 0)->_member) _p = (_ptr); \ 73 (_p != 0) ? (_type *)(((char *) _p) - offsetof (_type, \ 74 _member)) : (_type *) 0; \ 78 #define CONST_PARENT(_ptr, _type, _member) ({ \ argument 79 __typeof__ (&((const _type *) 0)->_member) _p = (_ptr); \ 80 (_p != 0) ? (const _type *)(((const char *) _p) - offsetof \ 81 (const _type, _member)) : (const _type *) 0; \ 171 #define PARENT(_ptr, _type, _member) \ argument 172 ((0 == offsetof (_type, _member)) ? (_type *)(_ptr) \ [all …]
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_alloc.h | 211 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \ argument 213 _type **_tmp = (_ptr); \ 216 (_size), alignof(_type)); \ 219 #define vk_multialloc_add(_ma, _ptr, _type, _count) \ argument 220 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr))); 222 #define VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, _size) \ argument 223 _type *_name; \ 224 vk_multialloc_add_size(_ma, &_name, _type, _size); 226 #define VK_MULTIALLOC_DECL(_ma, _type, _name, _count) \ argument 227 VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, (_count) * sizeof(_type));
|
D | vk_cmd_queue_gen.py | 504 for _type in doc.findall('./types/type'): 505 if _type.attrib.get('category') != 'struct': 509 for p in _type.findall('./member'): 525 …types[_type.attrib['name']] = EntrypointType(name=_type.attrib['name'], enum=type_enum, members=me… 527 for _type in doc.findall('./types/type'): 528 if _type.attrib.get('category') != 'struct': 530 if _type.attrib.get('structextends') is None: 532 for extended in _type.attrib.get('structextends').split(','): 533 types[extended].extended_by.append(types[_type.attrib['name']])
|
/third_party/node/deps/v8/testing/ |
D | gtest-support.h | 37 #define TRACED_FOREACH(_type, _var, _container) \ argument 38 for (_type const _var : _container) \ 47 #define TRACED_FORRANGE(_type, _var, _low, _high) \ argument 48 for (_type _var##_i = _low; _var##_i <= _high; ++_var##_i) \ 50 for (_type const _var = _var##_i; !_var##_done;) \
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstjniutils.h | 124 #define DEF_CALL_STATIC_TYPE_METHOD(_type, _name, _jname, _retval) \ argument 125 …##_name##_method (JNIEnv *env, GError ** err, jclass klass, jmethodID methodID, _type * value, ...) 142 #define DEF_CALL_TYPE_METHOD(_type, _name, _jname, _retval) \ argument 143 …_##_name##_method (JNIEnv *env, GError ** err, jobject obj, jmethodID methodID, _type * value, ...) 160 #define DEF_GET_TYPE_FIELD(_type, _name, _jname) \ argument 161 …_jni_get_##_name##_field (JNIEnv *env, GError ** err, jobject obj, jfieldID fieldID, _type * value) 173 #define DEF_GET_STATIC_TYPE_FIELD(_type, _name, _jname) \ argument 174 …_static_##_name##_field (JNIEnv *env, GError ** err, jclass klass, jfieldID fieldID, _type * value)
|
/third_party/python/Include/internal/ |
D | pycore_initconfig.h | 25 (PyStatus){._type = _PyStatus_TYPE_OK,} 29 ._type = _PyStatus_TYPE_ERROR, \ 36 ._type = _PyStatus_TYPE_EXIT, \ 39 (err._type == _PyStatus_TYPE_ERROR) 41 (err._type == _PyStatus_TYPE_EXIT) 43 (err._type != _PyStatus_TYPE_OK)
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_llvm.h | 197 #define draw_jit_context_planes(_gallivm, _type, _ptr) \ argument 198 lp_build_struct_get2(_gallivm, _type, _ptr, DRAW_JIT_CTX_PLANES, "planes") 222 #define draw_jit_header_id(_gallivm, _type, _ptr) \ argument 223 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_VERTEX_ID, "id") 225 #define draw_jit_header_clip_pos(_gallivm, _type, _ptr) \ argument 226 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_CLIP_POS, "clip_pos") 228 #define draw_jit_header_data(_gallivm, _type, _ptr) \ argument 229 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_DATA, "data") 232 #define draw_jit_vbuffer_stride(_gallivm, _type, _ptr) \ argument 233 lp_build_struct_get2(_gallivm, _type, _ptr, 0, "stride") [all …]
|
/third_party/node/deps/npm/node_modules/delegates/test/ |
D | index.js | 44 return this._type.toUpperCase(); 48 this._type = val; 65 return this._type.toUpperCase(); 69 this._type = val;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | YAMLTraits.h | 1284 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type) \ 1285 struct _type { \ 1286 _type() = default; \ 1287 _type(const _base v) : value(v) {} \ 1288 _type(const _type &v) = default; \ 1289 _type &operator=(const _type &rhs) = default; \ 1290 _type &operator=(const _base &rhs) { value = rhs; return *this; } \ 1292 bool operator==(const _type &rhs) const { return value == rhs.value; } \ 1294 bool operator<(const _type &rhs) const { return value < rhs.value; } \ 1470 typedef typename T::value_type _type; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | YAMLTraits.h | 1637 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type) \ 1638 struct _type { \ 1639 _type() = default; \ 1640 _type(const _base v) : value(v) {} \ 1641 _type(const _type &v) = default; \ 1642 _type &operator=(const _type &rhs) = default; \ 1643 _type &operator=(const _base &rhs) { value = rhs; return *this; } \ 1645 bool operator==(const _type &rhs) const { return value == rhs.value; } \ 1647 bool operator<(const _type &rhs) const { return value < rhs.value; } \ 2015 #define LLVM_YAML_IS_DOCUMENT_LIST_VECTOR(_type) \ [all …]
|
/third_party/mesa3d/src/compiler/ |
D | glsl_types.h | 382 static const glsl_type *const NAME##_type; 385 static const glsl_type *const struct_##NAME##_type; 1354 #define DECL_TYPE(NAME, ...) static const glsl_type _##NAME##_type; 1356 #define STRUCT_TYPE(NAME) static const glsl_type _struct_##NAME##_type; 1480 #define DEFAULT_CONSTRUCTORS(_type, _name) \ argument 1481 type(_type), name(_name), location(-1), component(-1), offset(-1), \ 1484 glsl_struct_field(const struct glsl_type *_type, in glsl_struct_field() 1487 : DEFAULT_CONSTRUCTORS(_type, _name) in glsl_struct_field() 1493 glsl_struct_field(const struct glsl_type *_type, const char *_name) in glsl_struct_field() 1494 : DEFAULT_CONSTRUCTORS(_type, _name) in glsl_struct_field()
|
/third_party/jsframework/test/ut/model/ |
D | index.ts | 116 expect(vm._type).eql('parent'); 117 expect(subVm._type).eql('child'); 167 expect(subVm.$root()._type).eql('parent'); 171 expect(subVm.$parent()._type).eql('parent'); 175 expect(vm.$child('myChild')._type).eql('child');
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_query.c | 108 #define _Q(_name, _query_type, _type, _result_type) { \ argument 110 .type = PIPE_DRIVER_QUERY_TYPE_##_type, \ 115 #define FQ(_name, _query_type, _type, _result_type) \ argument 116 _Q(_name, FD_QUERY_##_query_type, _type, _result_type) 118 #define PQ(_name, _query_type, _type, _result_type) \ argument 119 _Q(_name, PIPE_QUERY_##_query_type, _type, _result_type)
|
/third_party/jsframework/runtime/main/model/ |
D | events.ts | 43 private _type: string; property in Evt 49 this._type = type; 127 return this._type;
|
/third_party/jsframework/runtime/vdom/ |
D | Node.ts | 72 protected _type: string; property in Node 164 this._type = newType; 168 return this._type;
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | gstaudiometa.c | 185 GType _type = gst_meta_api_type_register ("GstAudioDownmixMetaAPI", tags); in gst_audio_downmix_meta_api_get_type() local 186 g_once_init_leave (&type, _type); in gst_audio_downmix_meta_api_get_type() 288 GType _type = gst_meta_api_type_register ("GstAudioClippingMetaAPI", tags); in gst_audio_clipping_meta_api_get_type() local 289 g_once_init_leave (&type, _type); in gst_audio_clipping_meta_api_get_type() 473 GType _type = gst_meta_api_type_register ("GstAudioMetaAPI", tags); in gst_audio_meta_api_get_type() local 474 g_once_init_leave (&type, _type); in gst_audio_meta_api_get_type() 512 GType _type = gst_meta_api_type_register ("GstAudioLevelMetaAPI", tags); in gst_audio_level_meta_api_get_type() local 513 g_once_init_leave (&type, _type); in gst_audio_level_meta_api_get_type()
|
/third_party/node/deps/v8/tools/system-analyzer/log/ |
D | log.mjs | 8 this._type = type; 17 return this._type; 30 return `${name}(${this._type})`;
|
/third_party/python/Lib/tkinter/ |
D | messagebox.py | 71 def _show(title=None, message=None, _icon=None, _type=None, **options): argument 73 if _type and "type" not in options: options["type"] = _type
|
/third_party/node/deps/v8/src/codegen/ppc/ |
D | macro-assembler-ppc.h | 300 template <class _type> 302 switch (sizeof(_type)) { in SignedExtend() 320 template <class _type> 322 switch (sizeof(_type)) { in ZeroExtend() 339 template <class _type> 341 if (std::is_signed<_type>::value) { in ExtendValue() 342 SignedExtend<_type>(dst, value); in ExtendValue() 344 ZeroExtend<_type>(dst, value); in ExtendValue() 348 template <class _type> 350 switch (sizeof(_type)) { in LoadReserve() [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/opencv/ |
D | gstcvdilateerode.cpp | 93 GType _type; in gst_cv_dilate_erode_get_type() local 106 _type = g_type_register_static (GST_TYPE_OPENCV_VIDEO_FILTER, in gst_cv_dilate_erode_get_type() 112 g_once_init_leave (&opencv_dilate_erode_type, _type); in gst_cv_dilate_erode_get_type()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | xmpwriter.c | 59 GType _type; in gst_tag_xmp_writer_get_type() local 72 _type = g_type_register_static (G_TYPE_INTERFACE, "GstTagXmpWriter", in gst_tag_xmp_writer_get_type() 75 g_type_interface_add_prerequisite (_type, GST_TYPE_ELEMENT); in gst_tag_xmp_writer_get_type() 77 g_once_init_leave (&xmp_config_type, _type); in gst_tag_xmp_writer_get_type()
|