Home
last modified time | relevance | path

Searched refs:orientation_str (Results 1 – 8 of 8) sorted by relevance

/dports/x11-wm/mutter/mutter-41.1/src/tests/
H A Dmeta-sensors-proxy-mock.c32 const char *orientation_str = "undefined"; in orientation_to_string() local
37 orientation_str = "undefined"; in orientation_to_string()
40 orientation_str = "normal"; in orientation_to_string()
43 orientation_str = "bottom-up"; in orientation_to_string()
46 orientation_str = "left-up"; in orientation_to_string()
49 orientation_str = "right-up"; in orientation_to_string()
53 return orientation_str; in orientation_to_string()
247 const char *orientation_str; in meta_sensors_proxy_mock_set_orientation() local
252 orientation_str = orientation_to_string (orientation); in meta_sensors_proxy_mock_set_orientation()
254 g_variant_new_string (orientation_str)); in meta_sensors_proxy_mock_set_orientation()
/dports/multimedia/totem/totem-3.38.2/src/gst/
H A Dtotem-gst-pixbuf-helpers.c123 char *orientation_str; in totem_gst_playbin_get_frame() local
126 ret = gst_tag_list_get_string_index (tags, GST_TAG_IMAGE_ORIENTATION, 0, &orientation_str); in totem_gst_playbin_get_frame()
127 if (!ret || !orientation_str) in totem_gst_playbin_get_frame()
129 else if (g_str_equal (orientation_str, "rotate-90")) in totem_gst_playbin_get_frame()
131 else if (g_str_equal (orientation_str, "rotate-180")) in totem_gst_playbin_get_frame()
133 else if (g_str_equal (orientation_str, "rotate-270")) in totem_gst_playbin_get_frame()
/dports/graphics/libopenraw/libopenraw-0.3.0/gnome/
H A Dpixbuf-loader.c112 char orientation_str[16]; in gdk_pixbuf__or_image_stop_load() local
121 g_snprintf (orientation_str, sizeof (orientation_str), in gdk_pixbuf__or_image_stop_load()
123 orientation_str[15] = 0; in gdk_pixbuf__or_image_stop_load()
124 gdk_pixbuf_set_option(pixbuf, "orientation", orientation_str); in gdk_pixbuf__or_image_stop_load()
/dports/mail/sylpheed/sylpheed-3.7.0/src/
H A Dimageview.c236 const gchar *orientation_str; in imageview_get_rotated_pixbuf()
241 orientation_str = gdk_pixbuf_get_option(pixbuf, "orientation"); in imageview_get_rotated_pixbuf()
242 if (!orientation_str) in imageview_get_rotated_pixbuf()
245 orientation = strtol(orientation_str, NULL, 10); in imageview_get_rotated_pixbuf()
/dports/graphics/gliv/gliv-1.9.7/src/
H A Dloading.c327 const gchar *orientation_str = gdk_pixbuf_get_option(pixbuf, "orientation"); in parse_exif_orientation() local
329 if (orientation_str) in parse_exif_orientation()
330 switch (orientation_str[0]) { in parse_exif_orientation()
/dports/deskutils/gnome-photos/gnome-photos-40.0/src/
H A Dphotos-thumbnail-factory.c402 const gchar *orientation_str; in photos_thumbnail_factory_generate_thumbnail() local
410 orientation_str = g_quark_to_string (orientation); in photos_thumbnail_factory_generate_thumbnail()
421 orientation_str, in photos_thumbnail_factory_generate_thumbnail()
/dports/multimedia/totem/totem-3.38.2/src/backend/
H A Dbacon-video-widget.c2090 char *orientation_str = NULL; in update_orientation_from_video() local
2099 GST_TAG_IMAGE_ORIENTATION, 0, &orientation_str); in update_orientation_from_video()
2100 if (!ret || !orientation_str || g_str_equal (orientation_str, "rotate-0")) in update_orientation_from_video()
2102 else if (g_str_equal (orientation_str, "rotate-90")) in update_orientation_from_video()
2104 else if (g_str_equal (orientation_str, "rotate-180")) in update_orientation_from_video()
2106 else if (g_str_equal (orientation_str, "rotate-270")) in update_orientation_from_video()
2109 g_warning ("Unhandled orientation value: '%s'", orientation_str); in update_orientation_from_video()
2111 g_free (orientation_str); in update_orientation_from_video()
/dports/www/chromium-legacy/chromium-88.0.4324.182/content/web_test/renderer/
H A Dtest_runner.cc2867 const std::string& orientation_str) { in SetMockScreenOrientation() argument
2870 if (orientation_str == "portrait-primary") { in SetMockScreenOrientation()
2872 } else if (orientation_str == "portrait-secondary") { in SetMockScreenOrientation()
2874 } else if (orientation_str == "landscape-primary") { in SetMockScreenOrientation()
2877 DCHECK_EQ("landscape-secondary", orientation_str); in SetMockScreenOrientation()