Home
last modified time | relevance | path

Searched refs:supported_types (Results 1 – 25 of 571) sorted by relevance

12345678910>>...23

/dports/graphics/mupdf/mupdf-1.18.0-source/platform/gl/
H A Dgl-win32.c18 HKEY supported_types, shell, open, command; in win_install() local
30 OPEN_KEY(mupdf, "SupportedTypes", &supported_types); in win_install()
32 SET_VALUE(supported_types, ".pdf", ""); in win_install()
33 SET_VALUE(supported_types, ".xps", ""); in win_install()
34 SET_VALUE(supported_types, ".cbz", ""); in win_install()
35 SET_VALUE(supported_types, ".epub", ""); in win_install()
36 SET_VALUE(supported_types, ".fb2", ""); in win_install()
38 RegCloseKey(supported_types); in win_install()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/autofill/core/browser/data_model/
H A Daddress.cc338 supported_types->insert(ADDRESS_HOME_LINE1); in GetSupportedTypes()
339 supported_types->insert(ADDRESS_HOME_LINE2); in GetSupportedTypes()
340 supported_types->insert(ADDRESS_HOME_LINE3); in GetSupportedTypes()
341 supported_types->insert(ADDRESS_HOME_STREET_ADDRESS); in GetSupportedTypes()
343 supported_types->insert(ADDRESS_HOME_CITY); in GetSupportedTypes()
344 supported_types->insert(ADDRESS_HOME_STATE); in GetSupportedTypes()
345 supported_types->insert(ADDRESS_HOME_ZIP); in GetSupportedTypes()
346 supported_types->insert(ADDRESS_HOME_SORTING_CODE); in GetSupportedTypes()
347 supported_types->insert(ADDRESS_HOME_COUNTRY); in GetSupportedTypes()
352 supported_types->insert(ADDRESS_HOME_STREET_NAME); in GetSupportedTypes()
[all …]
H A Dcontact_info.cc174 void NameInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
178 name_.GetSupportedTypes(supported_types); in GetSupportedTypes()
180 supported_types->insert(NAME_FIRST); in GetSupportedTypes()
181 supported_types->insert(NAME_MIDDLE); in GetSupportedTypes()
182 supported_types->insert(NAME_LAST); in GetSupportedTypes()
183 supported_types->insert(NAME_MIDDLE_INITIAL); in GetSupportedTypes()
184 supported_types->insert(NAME_FULL); in GetSupportedTypes()
292 void EmailInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
293 supported_types->insert(EMAIL_ADDRESS); in GetSupportedTypes()
333 void CompanyInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
[all …]
H A Dphone_number.cc68 void PhoneNumber::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
69 supported_types->insert(PHONE_HOME_WHOLE_NUMBER); in GetSupportedTypes()
70 supported_types->insert(PHONE_HOME_NUMBER); in GetSupportedTypes()
71 supported_types->insert(PHONE_HOME_CITY_CODE); in GetSupportedTypes()
72 supported_types->insert(PHONE_HOME_CITY_AND_NUMBER); in GetSupportedTypes()
73 supported_types->insert(PHONE_HOME_COUNTRY_CODE); in GetSupportedTypes()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openscreen/src/discovery/dnssd/impl/
H A Dservice_impl.cc19 MdnsService::SupportedNetworkAddressFamily supported_types = in GetSupportedEndpointTypes() local
22 supported_types = supported_types | MdnsService::kUseIpV4Multicast; in GetSupportedEndpointTypes()
25 supported_types = supported_types | MdnsService::kUseIpV6Multicast; in GetSupportedEndpointTypes()
27 return supported_types; in GetSupportedEndpointTypes()
/dports/devel/py-spyder/spyder-3.2.7/spyder/widgets/variableexplorer/tests/
H A Dtest_utils.py57 supported_types = get_supported_types()
63 assert is_supported(none_var, filters=tuple(supported_types[mode]))
64 assert is_supported(none_list, filters=tuple(supported_types[mode]))
65 assert is_supported(none_dict, filters=tuple(supported_types[mode]))
66 assert is_supported(none_tuple, filters=tuple(supported_types[mode]))
128 supported_types = tuple(get_supported_types()['editable'])
131 assert is_supported(li, filters=supported_types)
170 supported_types = tuple(get_supported_types()['editable'])
175 assert is_supported(di, filters=supported_types)
/dports/x11/plasma5-kwayland-integration/kwayland-integration-5.23.5/src/windowsystem/
H A Dwindowinfo.cpp63 NET::WindowType WindowInfo::windowType(NET::WindowTypes supported_types) const in windowType()
72 if (supported_types & NET::NormalMask) { in windowType()
77 if (supported_types & NET::DesktopMask) { in windowType()
82 if (supported_types & NET::DockMask) { in windowType()
87 if (supported_types & NET::OnScreenDisplayMask) { in windowType()
92 if (supported_types & NET::NotificationMask) { in windowType()
97 if (supported_types & NET::TooltipMask) { in windowType()
102 if (supported_types & NET::CriticalNotificationMask) { in windowType()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/autofill/core/browser/data_model/
H A Dcontact_info.cc98 void NameInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
99 supported_types->insert(NAME_FIRST); in GetSupportedTypes()
100 supported_types->insert(NAME_MIDDLE); in GetSupportedTypes()
101 supported_types->insert(NAME_LAST); in GetSupportedTypes()
102 supported_types->insert(NAME_MIDDLE_INITIAL); in GetSupportedTypes()
103 supported_types->insert(NAME_FULL); in GetSupportedTypes()
168 void EmailInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
169 supported_types->insert(EMAIL_ADDRESS); in GetSupportedTypes()
207 void CompanyInfo::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
208 supported_types->insert(COMPANY_NAME); in GetSupportedTypes()
H A Daddress.cc194 void Address::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
195 supported_types->insert(ADDRESS_HOME_LINE1); in GetSupportedTypes()
196 supported_types->insert(ADDRESS_HOME_LINE2); in GetSupportedTypes()
197 supported_types->insert(ADDRESS_HOME_LINE3); in GetSupportedTypes()
198 supported_types->insert(ADDRESS_HOME_STREET_ADDRESS); in GetSupportedTypes()
199 supported_types->insert(ADDRESS_HOME_DEPENDENT_LOCALITY); in GetSupportedTypes()
200 supported_types->insert(ADDRESS_HOME_CITY); in GetSupportedTypes()
201 supported_types->insert(ADDRESS_HOME_STATE); in GetSupportedTypes()
202 supported_types->insert(ADDRESS_HOME_ZIP); in GetSupportedTypes()
203 supported_types->insert(ADDRESS_HOME_SORTING_CODE); in GetSupportedTypes()
[all …]
H A Dphone_number.cc61 void PhoneNumber::GetSupportedTypes(ServerFieldTypeSet* supported_types) const { in GetSupportedTypes()
62 supported_types->insert(PHONE_HOME_WHOLE_NUMBER); in GetSupportedTypes()
63 supported_types->insert(PHONE_HOME_NUMBER); in GetSupportedTypes()
64 supported_types->insert(PHONE_HOME_CITY_CODE); in GetSupportedTypes()
65 supported_types->insert(PHONE_HOME_CITY_AND_NUMBER); in GetSupportedTypes()
66 supported_types->insert(PHONE_HOME_COUNTRY_CODE); in GetSupportedTypes()
/dports/multimedia/libxine/xine-lib-1.2.11/src/video_dec/libvdpau/
H A Dgroup_vdpau.c47 static const decoder_info_t dec_info_video_alterh264 = { .supported_types = video_types_h264, .pr…
48 static const decoder_info_t dec_info_video_h264 = { .supported_types = video_types_h264, .pr…
49 static const decoder_info_t dec_info_video_vc1 = { .supported_types = video_types_vc1, .pr…
50 static const decoder_info_t dec_info_video_mpeg12 = { .supported_types = video_types_mpeg12, .pr…
51 static const decoder_info_t dec_info_video_mpeg4 = { .supported_types = video_types_mpeg4, .pr…
/dports/archivers/engrampa/engrampa-1.26.0/src/
H A Dserver.c229 int *supported_types = NULL; in handle_method_call() local
234 supported_types = save_type; in handle_method_call()
237 supported_types = single_file_save_type; in handle_method_call()
240 supported_types = open_type; in handle_method_call()
243 if (supported_types == NULL) { in handle_method_call()
256 for (i = 0; supported_types[i] != -1; i++) { in handle_method_call()
260 mime_type_desc[supported_types[i]].mime_type); in handle_method_call()
263 mime_type_desc[supported_types[i]].default_ext); in handle_method_call()
266 _(mime_type_desc[supported_types[i]].name)); in handle_method_call()
H A Ddlg-batch-add.c55 int *supported_types; member
71 return mime_type_desc[data->supported_types[idx]].default_ext; in get_ext()
103 if (mime_type_desc[data->supported_types[idx]].capabilities & FR_COMMAND_CAN_ENCRYPT) { in set_archive_options()
408 mime_type = mime_type_desc[data->supported_types[idx]].mime_type; in archive_type_combo_box_changed_cb()
430 for (i = 0; data->supported_types[i] != -1; i++) in update_archive_type_combo_box_from_ext()
431 if (strcmp (ext, mime_type_desc[data->supported_types[i]].default_ext) == 0) { in update_archive_type_combo_box_from_ext()
528 data->supported_types = single_file_save_type; in dlg_batch_add_files()
530 data->supported_types = save_type; in dlg_batch_add_files()
531 sort_mime_types_by_extension (data->supported_types); in dlg_batch_add_files()
533 for (i = 0; data->supported_types[i] != -1; i++) in dlg_batch_add_files()
[all …]
H A Ddlg-new.c116 return data->supported_types[idx]; in get_archive_type()
201 ext = mime_type_desc[data->supported_types[n_format - 1]].default_ext; in format_chooser_selection_changed_cb()
212 new_ext = mime_type_desc[data->supported_types[n_format - 1]].default_ext; in format_chooser_selection_changed_cb()
264 int *supported_types, in dlg_new_archive() argument
275 data->supported_types = supported_types; in dlg_new_archive()
276 sort_mime_types_by_description (data->supported_types); in dlg_new_archive()
313 for (i = 0; data->supported_types[i] != -1; i++) { in dlg_new_archive()
314 int idx = data->supported_types[i]; in dlg_new_archive()
/dports/multimedia/libxine/xine-lib-1.2.11/src/libw32dll/
H A Dgroup_w32.c30 .supported_types = qtv_supported_types,
40 .supported_types = qta_supported_types,
55 .supported_types = w32v_supported_types,
67 .supported_types = w32a_supported_types,
/dports/multimedia/libxine/xine-lib-1.2.11/src/combined/ffmpeg/
H A Dffmpeg_decoder.c98 .supported_types = supported_audio_types,
108 .supported_types = wmv8_video_types,
118 .supported_types = wmv9_video_types,
123 .supported_types = supported_video_types,
/dports/multimedia/libxine/xine-lib-1.2.11/src/video_dec/
H A Dgroup_raw.c42 static const decoder_info_t rgb_info = { .supported_types = rgb_video_types, .priority = …
43 static const decoder_info_t yuv_info = { .supported_types = yuv_video_types, .priority = …
44 static const decoder_info_t bitplane_info = { .supported_types = bitplane_video_types, .priority = …
/dports/cad/uranium/Uranium-3ed9c4de/UM/FileHandler/
H A DFileHandler.py88 supported_types = []
97 supported_types.append({
105 return supported_types
110 supported_types = {}
118 supported_types[ext] = description
119 return supported_types
/dports/multimedia/libxine/xine-lib-1.2.11/src/combined/
H A Dogg_combined.c45 .supported_types = vorbis_audio_types,
57 .supported_types = speex_audio_types,
69 .supported_types = theora_video_types,
/dports/databases/qof/qof-0.8.8/backend/file/
H A Dqsf-backend.c207 params->supported_types = in qsf_param_init()
209 params->supported_types = in qsf_param_init()
211 params->supported_types = in qsf_param_init()
213 params->supported_types = in qsf_param_init()
217 params->supported_types = in qsf_param_init()
219 params->supported_types = in qsf_param_init()
221 params->supported_types = in qsf_param_init()
223 params->supported_types = in qsf_param_init()
225 params->supported_types = in qsf_param_init()
227 params->supported_types = in qsf_param_init()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/runner/
H A Dupdate_manifest.py18 supported_types = ["testharness", "reftest", "manual"]
21 for item_type in supported_types:
23 for item_type, path, tests in manifest_file.itertypes(*supported_types):
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/runner/
H A Dupdate_manifest.py18 supported_types = ["testharness", "reftest", "manual"]
21 for item_type in supported_types:
23 for item_type, path, tests in manifest_file.itertypes(*supported_types):
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/runner/
H A Dupdate_manifest.py18 supported_types = ["testharness", "reftest", "manual"]
21 for item_type in supported_types:
23 for item_type, path, tests in manifest_file.itertypes(*supported_types):
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/runner/
H A Dupdate_manifest.py18 supported_types = ["testharness", "reftest", "manual"]
21 for item_type in supported_types:
23 for item_type, path, tests in manifest_file.itertypes(*supported_types):
/dports/deskutils/alarm-clock-applet/alarm-clock-applet-0.3.4/src/
H A Dlist-entry.c100 alarm_list_entry_list_new (const gchar *dir_uri, const gchar *supported_types[]) in alarm_list_entry_list_new() argument
136 if (supported_types != NULL) { in alarm_list_entry_list_new()
138 for (i = 0; supported_types[i] != NULL; i++) { in alarm_list_entry_list_new()
139 if (strstr (mime, supported_types[i]) != NULL) { in alarm_list_entry_list_new()

12345678910>>...23