Home
last modified time | relevance | path

Searched refs:gtype (Results 1 – 25 of 51) sorted by relevance

123

/third_party/gstreamer/gstreamer/libs/gst/helpers/
Dglib_gobject_helper.py37 def g_type_to_typenode (gtype): argument
46 gtype = long(gtype)
47 typenode = gtype - gtype % 4
54 def g_type_to_name (gtype): argument
55 typenode = g_type_to_typenode(gtype)
65 gtype = klass["g_type"]
66 name = g_type_to_name (gtype)
Dgst_gdb.py66 gtype = inst["type"]
67 name = g_type_to_name(gtype)
173 gtype = klass["g_type"]
174 return gtype
182 gtype = _g_type_from_instance(val)
183 if gtype is None:
185 typenode = g_type_to_typenode(gtype)
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/basecamerabinsrc/
Dgstcamerabin-enum.c32 static GType gtype = 0; in gst_camerabin_mode_get_type() local
34 if (gtype == 0) { in gst_camerabin_mode_get_type()
42 gtype = g_enum_register_static ("GstCameraBin2Mode", values); in gst_camerabin_mode_get_type()
44 return gtype; in gst_camerabin_mode_get_type()
/third_party/gstreamer/gstplugins_good/gst/audiofx/
Daudiowsinclimit.c90 static GType gtype = 0; in gst_audio_wsinclimit_mode_get_type() local
92 if (gtype == 0) { in gst_audio_wsinclimit_mode_get_type()
101 gtype = g_enum_register_static ("GstAudioWSincLimitMode", values); in gst_audio_wsinclimit_mode_get_type()
103 return gtype; in gst_audio_wsinclimit_mode_get_type()
119 static GType gtype = 0; in gst_audio_wsinclimit_window_get_type() local
121 if (gtype == 0) { in gst_audio_wsinclimit_window_get_type()
136 gtype = g_enum_register_static ("GstAudioWSincLimitWindow", values); in gst_audio_wsinclimit_window_get_type()
138 return gtype; in gst_audio_wsinclimit_window_get_type()
Daudiowsincband.c91 static GType gtype = 0; in gst_gst_audio_wsincband_mode_get_type() local
93 if (gtype == 0) { in gst_gst_audio_wsincband_mode_get_type()
102 gtype = g_enum_register_static ("GstAudioWSincBandMode", values); in gst_gst_audio_wsincband_mode_get_type()
104 return gtype; in gst_gst_audio_wsincband_mode_get_type()
120 static GType gtype = 0; in gst_gst_audio_wsincband_window_get_type() local
122 if (gtype == 0) { in gst_gst_audio_wsincband_window_get_type()
137 gtype = g_enum_register_static ("GstAudioWSincBandWindow", values); in gst_gst_audio_wsincband_window_get_type()
139 return gtype; in gst_gst_audio_wsincband_window_get_type()
Daudiodynamic.c144 static GType gtype = 0; in gst_audio_dynamic_characteristics_get_type() local
146 if (gtype == 0) { in gst_audio_dynamic_characteristics_get_type()
155 gtype = g_enum_register_static ("GstAudioDynamicCharacteristics", values); in gst_audio_dynamic_characteristics_get_type()
157 return gtype; in gst_audio_dynamic_characteristics_get_type()
170 static GType gtype = 0; in gst_audio_dynamic_mode_get_type() local
172 if (gtype == 0) { in gst_audio_dynamic_mode_get_type()
180 gtype = g_enum_register_static ("GstAudioDynamicMode", values); in gst_audio_dynamic_mode_get_type()
182 return gtype; in gst_audio_dynamic_mode_get_type()
Daudioamplify.c79 static GType gtype = 0; in gst_audio_amplify_clipping_method_get_type() local
81 if (gtype == 0) { in gst_audio_amplify_clipping_method_get_type()
92 gtype = g_enum_register_static ("GstAudioAmplifyClippingMethod", values); in gst_audio_amplify_clipping_method_get_type()
94 return gtype; in gst_audio_amplify_clipping_method_get_type()
Daudiopanorama.c72 static GType gtype = 0; in gst_audio_panorama_method_get_type() local
74 if (gtype == 0) { in gst_audio_panorama_method_get_type()
82 gtype = g_enum_register_static ("GstAudioPanoramaMethod", values); in gst_audio_panorama_method_get_type()
84 return gtype; in gst_audio_panorama_method_get_type()
Daudiocheblimit.c120 static GType gtype = 0; in gst_audio_cheb_limit_mode_get_type() local
122 if (gtype == 0) { in gst_audio_cheb_limit_mode_get_type()
131 gtype = g_enum_register_static ("GstAudioChebLimitMode", values); in gst_audio_cheb_limit_mode_get_type()
133 return gtype; in gst_audio_cheb_limit_mode_get_type()
Daudiochebband.c125 static GType gtype = 0; in gst_audio_cheb_band_mode_get_type() local
127 if (gtype == 0) { in gst_audio_cheb_band_mode_get_type()
136 gtype = g_enum_register_static ("GstAudioChebBandMode", values); in gst_audio_cheb_band_mode_get_type()
138 return gtype; in gst_audio_cheb_band_mode_get_type()
/third_party/gstreamer/gstreamer/docs/
Dgst-hotdoc-plugins-scanner.c15 GHashTable * seen_other_types, GObject * object, GType gtype,
105 _serialize_flags_default (GString * json, GType gtype, GValue * value) in _serialize_flags_default() argument
107 GFlagsValue *values = G_FLAGS_CLASS (g_type_class_ref (gtype))->values; in _serialize_flags_default()
116 _serialize_flags (GString * json, GType gtype) in _serialize_flags() argument
118 GFlagsValue *values = G_FLAGS_CLASS (g_type_class_ref (gtype))->values; in _serialize_flags()
122 g_type_name (gtype)); in _serialize_flags()
144 _serialize_enum_default (GString * json, GType gtype, GValue * value) in _serialize_enum_default() argument
151 values = G_ENUM_CLASS (g_type_class_ref (gtype))->values; in _serialize_enum_default()
169 _serialize_enum (GString * json, GType gtype, GstPluginAPIFlags api_flags) in _serialize_enum() argument
174 values = G_ENUM_CLASS (g_type_class_ref (gtype))->values; in _serialize_enum()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/debugutils/
Dgstchecksumsink.c59 static GType gtype = 0; in gst_checksum_sink_hash_get_type() local
61 if (gtype == 0) { in gst_checksum_sink_hash_get_type()
70 gtype = g_enum_register_static ("GstChecksumSinkHash", values); in gst_checksum_sink_hash_get_type()
72 return gtype; in gst_checksum_sink_hash_get_type()
/third_party/python/Lib/
Dmimetypes.py631 for gtype in args:
633 guess = guess_extension(gtype, strict)
634 if not guess: print("I don't know anything about type", gtype)
637 guess, encoding = guess_type(gtype, strict)
638 if not guess: print("I don't know anything about type", gtype)
/third_party/gstreamer/gstplugins_bad/ext/curl/
Dgstcurlsshsink.c101 static GType gtype = 0; in gst_curl_ssh_sink_auth_get_type() local
103 if (!gtype) { in gst_curl_ssh_sink_auth_get_type()
110 gtype = g_enum_register_static ("GstCurlSshAuthType", auth_types); in gst_curl_ssh_sink_auth_get_type()
112 return gtype; in gst_curl_ssh_sink_auth_get_type()
/third_party/gstreamer/gstreamer/gst/
Dgstpadtemplate.h105 #define GST_PAD_TEMPLATE_GTYPE(templ) (((GstPadTemplate *)(templ))->ABI.abi.gtype)
143 GType gtype; member
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/
Dgstwavescope.c89 static GType gtype = 0; in gst_wave_scope_style_get_type() local
91 if (gtype == 0) { in gst_wave_scope_style_get_type()
100 gtype = g_enum_register_static ("GstWaveScopeStyle", values); in gst_wave_scope_style_get_type()
102 return gtype; in gst_wave_scope_style_get_type()
Dgstspacescope.c89 static GType gtype = 0; in gst_space_scope_style_get_type() local
91 if (gtype == 0) { in gst_space_scope_style_get_type()
100 gtype = g_enum_register_static ("GstSpaceScopeStyle", values); in gst_space_scope_style_get_type()
102 return gtype; in gst_space_scope_style_get_type()
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglmixerbin.c49 static GType gtype = 0; in gst_gl_mixer_bin_start_time_selection_get_type() local
51 if (gtype == 0) { in gst_gl_mixer_bin_start_time_selection_get_type()
62 gtype = g_enum_register_static ("GstGLMixerBinStartTimeSelection", values); in gst_gl_mixer_bin_start_time_selection_get_type()
64 return gtype; in gst_gl_mixer_bin_start_time_selection_get_type()
/third_party/mesa3d/src/compiler/glsl/
Dglsl_lexer.ll96 alt_expr, gtype) \
100 yylval->type = gtype; \
114 gtype) \
117 false, gtype)
139 #define DEPRECATED_ES_TYPE_WITH_ALT(alt_expr, gtype) \
146 yylval->type = gtype; \
153 #define DEPRECATED_ES_TYPE(gtype) \
154 DEPRECATED_ES_TYPE_WITH_ALT(true, gtype)
/third_party/ffmpeg/libavfilter/
Daf_afir.h67 int gtype; member
/third_party/gstreamer/gstplugins_good/gst/equalizer/
Dgstiirequalizer.c91 static GType gtype = 0; in gst_iir_equalizer_band_type_get_type() local
93 if (gtype == 0) { in gst_iir_equalizer_band_type_get_type()
103 gtype = g_enum_register_static ("GstIirEqualizerBandType", values); in gst_iir_equalizer_band_type_get_type()
105 return gtype; in gst_iir_equalizer_band_type_get_type()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-gobject-enums.cc.tmpl32 /* g++ didn't like older gtype.h gcc-only code path. */
/third_party/harfbuzz/src/
Dhb-gobject-enums.cc.tmpl32 /* g++ didn't like older gtype.h gcc-only code path. */
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-gobject-enums.cc.tmpl30 /* g++ didn't like older gtype.h gcc-only code path. */
/third_party/gstreamer/gstplugins_bad/gst/timecode/
Dgstavwait.c139 static GType gtype = 0; in gst_avwait_mode_get_type() local
141 if (gtype == 0) { in gst_avwait_mode_get_type()
149 gtype = g_enum_register_static ("GstAvWaitMode", values); in gst_avwait_mode_get_type()
151 return gtype; in gst_avwait_mode_get_type()

123