Home
last modified time | relevance | path

Searched refs:window_features (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/efl/ewk/
Dewk_window_features.cpp45 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features) in ewk_window_features_unref() argument
47 EINA_SAFETY_ON_NULL_RETURN(window_features); in ewk_window_features_unref()
48 EINA_SAFETY_ON_FALSE_RETURN(window_features->__ref > 0); in ewk_window_features_unref()
50 if (--window_features->__ref) in ewk_window_features_unref()
53 delete window_features->core; in ewk_window_features_unref()
54 window_features->core = 0; in ewk_window_features_unref()
55 free(window_features); in ewk_window_features_unref()
63 EAPI void ewk_window_features_ref(Ewk_Window_Features* window_features) in ewk_window_features_ref() argument
65 EINA_SAFETY_ON_NULL_RETURN(window_features); in ewk_window_features_ref()
66 window_features->__ref++; in ewk_window_features_ref()
[all …]
Dewk_window_features.h40 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features);
41 EAPI void ewk_window_features_ref(Ewk_Window_Features* window_features);
43 EAPI void ewk_window_features_bool_property_get(Ewk_Window_Features* window_features, Eina_…
44 EAPI void ewk_window_features_int_property_get(Ewk_Window_Features* window_features, int* x…
Dewk_view.h104 …iew_Smart_Data *sd, Eina_Bool javascript, const Ewk_Window_Features *window_features); /**< create…
Dewk_view.cpp3685 Ewk_Window_Features* window_features = ewk_window_features_new_from_core(coreFeatures); in ewk_view_window_create() local
3686 Evas_Object* view = sd->api->window_create(sd, javascript, window_features); in ewk_view_window_create()
3687 ewk_window_features_unref(window_features); in ewk_view_window_create()