Lines Matching defs:contents

488  * Get last known contents size.
490 * @param o frame object to get contents size.
491 * @param w where to store contents size width. May be @c NULL.
492 * @param h where to store contents size height. May be @c NULL.
511 static Eina_Bool _ewk_frame_contents_set_internal(Ewk_Frame_Smart_Data *sd, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri, const char* unreachable_uri)
513 size_t len = strlen(contents);
530 WTF::RefPtr<WebCore::SharedBuffer> buffer = WebCore::SharedBuffer::create(contents, contents_size);
543 * Requests loading the given contents in this frame.
546 * @param contents what to load into frame. Must not be @c NULL.
547 * @param contents_size byte size of data in @a contents.
549 * @param mime_type type of @a contents data. If @c NULL "text/html" is assumed.
550 * @param encoding used for @a contents data. If @c NULL "UTF-8" is assumed.
556 Eina_Bool ewk_frame_contents_set(Evas_Object* o, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri)
560 EINA_SAFETY_ON_NULL_RETURN_VAL(contents, EINA_FALSE);
562 (sd, contents, contents_size, mime_type, encoding, base_uri, 0);
566 * Requests loading alternative contents for unreachable URI in this frame.
573 * @param contents what to load into frame. Must not be @c NULL.
574 * @param contents_size byte size of data in @a contents.
576 * @param mime_type type of @a contents data. If @c NULL "text/html" is assumed.
577 * @param encoding used for @a contents data. If @c NULL "UTF-8" is assumed.
585 Eina_Bool ewk_frame_contents_alternate_set(Evas_Object* o, const char* contents, size_t contents_size, const char* mime_type, const char* encoding, const char* base_uri, const char* unreachable_uri)
589 EINA_SAFETY_ON_NULL_RETURN_VAL(contents, EINA_FALSE);
592 (sd, contents, contents_size, mime_type, encoding, base_uri,
1197 * Both values are from zero to the contents size minus the viewport
1219 * Possible scroll size is contents size minus the viewport
1944 * Reports contents size changed.
1957 evas_object_smart_callback_call(o, "contents,size,changed", size);