#include <Elementary.h>
Evas_Object *main_win = NULL;
-int data = 0;
+static int data = 0;
/**
* @addtogroup evas_callbacks
elm_shutdown();
}
-void _on_keydown(void *data, Evas *e, void *event_info)
+static void _on_keydown(void *data, Evas *e, void *event_info)
{
}
-void _change_data(void *data, Evas *e, void *event_info)
+static void _change_data(void *data, Evas *e, void *event_info)
{
*((int*) data) += 1;
}
evas_shutdown();
}
-void _on_keydown(void *data, Evas *e, void *event_info){}
+static void _on_keydown(void *data, Evas *e, void *event_info){}
/**
* @addtogroup evas_event_callback_del
evas_shutdown();
}
-void _on_keydown(void *data, Evas *e, void *event_info){}
+static void _on_keydown(void *data, Evas *e, void *event_info){}
/**
* @addtogroup evas_event_callback_del_full
#include <check.h>
#include <Elementary.h>
-Evas_Object *main_win = NULL;
+static Evas_Object *main_win = NULL;
/**
* @addtogroup evas_callbacks
* @{
elm_shutdown();
}
-void _on_keydown(void *data, Evas *e, void *event_info)
+static void _on_keydown(void *data, Evas *e, void *event_info)
{
}
-void _change_data(void *data, Evas *e, void *event_info)
+static void _change_data(void *data, Evas *e, void *event_info)
{
*((int*) data) += 1;
}
static const int priority_before_value = 200;
static int call_count = 0;
-int data = 0;
-int data_before = 0;
-int data_after = 0;
+static int data = 0;
+static int data_before = 0;
+static int data_after = 0;
-void _change_data2(void *data, Evas *e, void *event_info)
+static void _change_data2(void *data, Evas *e, void *event_info)
{
int value = *((int*)data);
#include <check.h>
#include <Elementary.h>
-Evas_Object *main_win = NULL;
-int data = 0;
+static Evas_Object *main_win = NULL;
+static int data = 0;
/**
* @addtogroup evas_callbacks
elm_shutdown();
}
-void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
}
-void _change_data(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _change_data(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
*((int*) data) += 1;
}
evas_shutdown();
}
-void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info){}
+static void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info){}
/**
* @addtogroup evas_object_event_callback_del
evas_shutdown();
}
-void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _on_keydown(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
}
-void _change_data(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _change_data(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
*((int*) data) += 1;
}
static const int priority_before_value = 200;
static int call_count = 0;
-int data = 0;
-int data_before = 0;
-int data_after = 0;
+static int data = 0;
+static int data_before = 0;
+static int data_after = 0;
-void _change_data2(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _change_data2(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
int value = *((int*)data);
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_data
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_data
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
char* Data = "Attention! Be careful! This data will be attached to evas!";
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
-char* Data = "Attention! Be careful! This data will be attached to evas!";
+static char* Data = "Attention! Be careful! This data will be attached to evas!";
/**
* @addtogroup evas_data
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_events
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_events
#include <Ecore_Evas.h>
#include <Evas.h>
-void _on_mouse_move(int *data)
+static void _on_mouse_move(int *data)
{
++(*data);
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_mouse_move(int *data)
+static void _on_mouse_move(int *data)
{
++(*data);
}
#include <Ecore.h>
#include <Evas.h>
-void _on_mouse_move(int *data)
+static void _on_mouse_move(int *data)
{
++(*data);
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_mouse_move(int * data)
+static void _on_mouse_move(int * data)
{
++(*data);
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_mouse_move(int * data)
+static void _on_mouse_move(int * data)
{
++(*data);
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_mouse_move(int *data)
+static void _on_mouse_move(int *data)
{
++(*data);
}
int number2 = 0;
int number3 = 0;
-void _on_mouse_move1(int *data)
+static void _on_mouse_move1(int *data)
{
number1 += *data;
}
-void _on_mouse_move2(int *data)
+static void _on_mouse_move2(int *data)
{
number2 += *data;
}
-void _on_mouse_move3(int *data)
+static void _on_mouse_move3(int *data)
{
number3 += *data;
}
Eina_Bool force_quit_timer_callback_status;
} callBackCallsStatus;
-void initCallBackCallsStatus()
+static void initCallBackCallsStatus()
{
callBackCallsStatus.post_event_callback_01_call_status = EINA_FALSE;
callBackCallsStatus.post_event_callback_02_call_status = EINA_FALSE;
callBackCallsStatus.evas_event_resize_callback_call_status = EINA_FALSE;
callBackCallsStatus.force_quit_timer_callback_status = EINA_FALSE;
}
-const char *data_passed_to_callback_1 = "The data pointer to be passed to the evas_post_event_callback 1";
-const char *data_passed_to_callback_2 = "The data pointer to be passed to the evas_post_event_callback 2";
+static const char *data_passed_to_callback_1 = "The data pointer to be passed to the evas_post_event_callback 1";
+static const char *data_passed_to_callback_2 = "The data pointer to be passed to the evas_post_event_callback 2";
/**
* @addtogroup evas_events
Eina_Bool force_quit_timer_callback_status;
} callBackCallsStatus;
-void initCallBackCallsStatus()
+static void initCallBackCallsStatus()
{
callBackCallsStatus.post_event_callback_01_call_status = EINA_FALSE;
callBackCallsStatus.post_event_callback_02_call_status = EINA_FALSE;
Eina_Bool force_quit_timer_callback_status;
} callBackCallsStatus;
-void initCallBackCallsStatus()
+static void initCallBackCallsStatus()
{
callBackCallsStatus.post_event_callback_01_call_status = EINA_FALSE;
callBackCallsStatus.post_event_callback_02_call_status = EINA_FALSE;
callBackCallsStatus.force_quit_timer_callback_status = EINA_FALSE;
}
-const char *data_passed_to_callback_2 = "The data pointer to be passed to the evas_post_event_callback 2";
+static const char *data_passed_to_callback_2 = "The data pointer to be passed to the evas_post_event_callback 2";
/**
* @addtogroup evas_events
#include "../../../utc_negative_unitest.h"
static Eina_Bool called = EINA_FALSE;
-const char *keyname = "a";
-const char *modifier = "b";
+static const char *keyname = "a";
+static const char *modifier = "b";
static void func(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
#include "../../../utc_negative_unitest.h"
static Eina_Bool called = EINA_FALSE;
-const char *keyname = "a";
+static const char *keyname = "a";
static void func(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
#include <check.h>
#include <Evas.h>
-Evas *evas = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_main
#include <check.h>
#include <Evas.h>
-Evas *evas = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_main
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_nochange
#include <Ecore_Evas.h>
#include <Ecore.h>
#include <Evas.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_nochange
#include <Evas.h>
#include <Elementary.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
-Evas_Object * rectangle_1 = NULL;
-Evas_Object * rectangle_2 = NULL;
-Evas_Object * rectangle_3 = NULL;
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
+static Evas_Object * rectangle_1 = NULL;
+static Evas_Object * rectangle_2 = NULL;
+static Evas_Object * rectangle_3 = NULL;
/**
* @addtogroup evas_object_box
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
/**
* @addtogroup evas_object_box
#include <Evas.h>
#include <string.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
-Evas_Object * rectangle_1 = NULL;
-Evas_Object * rectangle_2 = NULL;
-Evas_Object * rectangle_3 = NULL;
-int test_array[] = {-1, -1, -1};
-int correct_array[] = {1, 2, 3};
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
+static Evas_Object * rectangle_1 = NULL;
+static Evas_Object * rectangle_2 = NULL;
+static Evas_Object * rectangle_3 = NULL;
+static int test_array[] = {-1, -1, -1};
+static int correct_array[] = {1, 2, 3};
/**
* @addtogroup evas_object_box
#include <Evas.h>
#include <string.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
-Evas_Object * rectangle_1 = NULL;
-Evas_Object * rectangle_2 = NULL;
-Evas_Object * rectangle_3 = NULL;
-int test_array[] = {-1, -1, -1};
-int correct_array[] = {1, 2, 3};
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
+static Evas_Object * rectangle_1 = NULL;
+static Evas_Object * rectangle_2 = NULL;
+static Evas_Object * rectangle_3 = NULL;
+static int test_array[] = {-1, -1, -1};
+static int correct_array[] = {1, 2, 3};
/**
* @addtogroup evas_object_box
#include <Evas.h>
#include <string.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
-Evas_Object * rectangle_1 = NULL;
-Evas_Object * rectangle_2 = NULL;
-Evas_Object * rectangle_3 = NULL;
-int test_array[] = {-1, -1, -1};
-int correct_array[] = {1, 2, 3};
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
+static Evas_Object * rectangle_1 = NULL;
+static Evas_Object * rectangle_2 = NULL;
+static Evas_Object * rectangle_3 = NULL;
+static int test_array[] = {-1, -1, -1};
+static int correct_array[] = {1, 2, 3};
/**
* @addtogroup evas_object_box
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
static int property_function_accessed = 0;
-Evas_Object *rectangle_1 = NULL;
-Eina_Bool is_init = EINA_FALSE;
+static Evas_Object *rectangle_1 = NULL;
+static Eina_Bool is_init = EINA_FALSE;
/**
* @addtogroup evas_object_box
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
-Eina_Bool is_init = EINA_FALSE;
+static Eina_Bool is_init = EINA_FALSE;
/**
* @addtogroup evas_object_box
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
-Eina_Bool is_init = EINA_FALSE;
+static Eina_Bool is_init = EINA_FALSE;
/**
* @addtogroup evas_object_box
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
static int property_function_accessed = 0;
-Evas_Object *rectangle_1 = NULL;
-Eina_Bool is_init = EINA_FALSE;
+static Evas_Object *rectangle_1 = NULL;
+static Eina_Bool is_init = EINA_FALSE;
/**
* @addtogroup evas_object_box
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
-Evas_Object *rectangle_1 = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
+static Evas_Object *rectangle_1 = NULL;
-Eina_Bool result_in_wrapper = EINA_FALSE;
-Eina_Bool is_init = EINA_FALSE;
+static Eina_Bool result_in_wrapper = EINA_FALSE;
+static Eina_Bool is_init = EINA_FALSE;
-void wrapper(const Evas_Object *o, Evas_Object_Box_Option * option, int option_id, ...)
+static void wrapper(const Evas_Object *o, Evas_Object_Box_Option * option, int option_id, ...)
{
va_list args;
va_start(args, option_id);
#include <check.h>
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas *window = NULL;
-Evas *evas = NULL;
-Evas_Object *box = NULL;
-Evas_Object *rectangle_1 = NULL;
+static Ecore_Evas *window = NULL;
+static Evas *evas = NULL;
+static Evas_Object *box = NULL;
+static Evas_Object *rectangle_1 = NULL;
-Eina_Bool result_in_wrapper = EINA_FALSE;
-Eina_Bool is_init = EINA_FALSE;
+static Eina_Bool result_in_wrapper = EINA_FALSE;
+static Eina_Bool is_init = EINA_FALSE;
-void wrapper(const Evas_Object *o, Evas_Object_Box_Option * option, int option_id, ...)
+static void wrapper(const Evas_Object *o, Evas_Object_Box_Option * option, int option_id, ...)
{
va_list args;
va_start(args, option_id);
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
/**
* @addtogroup evas_object_box
#include <Ecore.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
+static Evas *evas = NULL;
/**
* @addtogroup evas_object_box
#include <Ecore_Evas.h>
#include <Evas.h>
-Ecore_Evas * window = NULL;
-Evas * evas = NULL;
-Evas_Object * box = NULL;
+static Ecore_Evas * window = NULL;
+static Evas * evas = NULL;
+static Evas_Object * box = NULL;
/**
* @addtogroup evas_object_box
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
static void _preload_cb(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
#include <Ecore_File.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-Ecore_Evas *ee = NULL;
-Evas_Object *img = NULL;
-const char *image_to_load = "canvas/evas_object_image/cube1.png";
-const char *save_filename = "example.png";
+static Ecore_Evas *ee = NULL;
+static Evas_Object *img = NULL;
+static const char *image_to_load = "canvas/evas_object_image/cube1.png";
+static const char *save_filename = "example.png";
/**
* @addtogroup evas_object_image
static Ecore_Evas *ee = NULL;
static Evas *evas = NULL;
-Ecore_Timer *loop_timer_quit = NULL;
-Ecore_Timer *timer_feed = NULL;
+static Ecore_Timer *loop_timer_quit = NULL;
+static Ecore_Timer *timer_feed = NULL;
/**
* @addtogroup evas_object_image
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
static const Evas_Coord w = 150, h = 150;
-Evas_Object *obj = NULL;
+static Evas_Object *obj = NULL;
static void func(void* _data, Evas_Object* _obj, Evas_Coord _w, Evas_Coord _h)
{
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
static const Evas_Coord w = 150, h = 150;
-Evas_Object *obj = NULL;
+static Evas_Object *obj = NULL;
static void func(void* _data, Evas_Object* _obj, Evas_Coord _w, Evas_Coord _h)
{
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
-Evas_Object *obj = NULL;
-Evas_Object *obj_above = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Object *obj_above = NULL;
static void func(void *_data, Evas_Object *_obj, Evas_Object *_obj_above)
{
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
-Evas_Object *obj = NULL;
-Evas_Object *obj_above = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Object *obj_above = NULL;
static void func(void* _data, Evas_Object* _obj, Evas_Object* _obj_above)
{
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
-Evas_Object *obj = NULL;
-Evas_Object *obj_below = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Object *obj_below = NULL;
static void func(void *_data, Evas_Object *_obj, Evas_Object *_obj_below)
{
static Eina_Bool used = EINA_FALSE;
static Eina_Bool accepted = EINA_FALSE;
-Evas_Object *obj = NULL;
-Evas_Object *obj_below = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Object *obj_below = NULL;
static void func(void* _data, Evas_Object* _obj, Evas_Object* _obj_below)
{
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
*((int*) data) += 1;
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
*((int*) data) += 1;
}
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-int data = 0;
+static int data = 0;
-void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
+static void _on_delete(void *data, Evas *e, Evas_Object *obj, void *event_info)
{
*((int*) data) += 1;
}
sc->calculate = _evas_smart_test_smart_calculate;
}
-Evas_Object *
+static Evas_Object *
evas_smart_test_add(Evas *evas)
{
return evas_object_smart_add(evas, _evas_smart_test_smart_class_new());
{
}
-Evas_Object *
+static Evas_Object *
evas_smart_test_add(Evas *evas)
{
return evas_object_smart_add(evas, _evas_smart_test_smart_class_new());
{
}
-Evas_Object *
+static Evas_Object *
evas_smart_test_add(Evas *evas)
{
return evas_object_smart_add(evas, _evas_smart_test_smart_class_new());
{
}
-Evas_Object *
+static Evas_Object *
evas_smart_test_add(Evas *evas)
{
return evas_object_smart_add(evas, _evas_smart_test_smart_class_new());
#include <Evas.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-Ecore_Evas *ee = NULL;
-Evas_Object *text = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas_Object *text = NULL;
/**
* @addtogroup evas_object_text
#include <Evas.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-Ecore_Evas *ee = NULL;
-Evas_Object *text = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas_Object *text = NULL;
/**
* @addtogroup evas_object_text
#include <Ecore_Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "/usr/share/fonts/";
+static const char *src = "/usr/share/fonts/";
/**
* @addtogroup evas_object_text
#include <Ecore_Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "/usr/share/fonts/";
+static const char *src = "/usr/share/fonts/";
/**
* @addtogroup evas_object_text
#include <Evas.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-Ecore_Evas *ee = NULL;
-Evas_Object *text = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas_Object *text = NULL;
/**
* @addtogroup evas_object_text
#include <Eina.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-const char *buf = "Welcome to paradise!";
+static const char *buf = "Welcome to paradise!";
/**
* @addtogroup evas_object_text
#include <Evas.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "test1";
+static const char *src = "test1";
/**
* @addtogroup evas_object_text
#include <Evas.h>
#include <Ecore_Evas.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "test1";
+static const char *src = "test1";
/**
* @addtogroup evas_object_text
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
+static Evas *evas = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
+static Evas *evas = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
+static Evas *evas = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
+static Evas *evas = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-const Evas_Object_Textblock_Node_Format *node = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static const Evas_Object_Textblock_Node_Format *node = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
Evas_Engine_Info *einfo = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "test_text";
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static const char *src = "test_text";
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-const char *src = "test_text";
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static const char *src = "test_text";
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *buf = "This is an <item absize=50x100 vsize=full></>.";
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *buf = "This is an <item absize=50x100 vsize=full></>.";
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
const char *format = "+ wrap=mixed";
/**
#include <check.h>
#include "Evas.h"
#include "Eina.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *buf = "torightעזב";
+static Eina_Bool inited = EINA_FALSE;
+static const char *buf = "torightעזב";
static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
#include <check.h>
#include <Evas.h>
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *buf = "first line<ps>second line";
+static Eina_Bool inited = EINA_FALSE;
+static const char *buf = "first line<ps>second line";
static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *buf = "first line<br/>second line";
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *buf = "first line<br/>second line";
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
-const char *src = "test text for cursor";
-const char *src_cut = "test cursor";
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
+static const char *src = "test text for cursor";
+static const char *src_cut = "test cursor";
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
-Evas_Textblock_Style *ts = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
+static Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
+static Eina_Bool inited = EINA_FALSE;
+static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include <string.h>
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur1 = NULL;
-Evas_Textblock_Cursor *cur2 = NULL;
-Evas_Textblock_Style *ts = NULL;
-Evas_Object *obj = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur1 = NULL;
+static Evas_Textblock_Cursor *cur2 = NULL;
+static Evas_Textblock_Style *ts = NULL;
+static Evas_Object *obj = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-const Evas_Object_Textblock_Node_Format *node = NULL;
+static Evas *evas = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static const Evas_Object_Textblock_Node_Format *node = NULL;
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
-const char *src = "test";
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
+static const char *src = "test";
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *src = "test";
+static Eina_Bool inited = EINA_FALSE;
+static const char *src = "test";
/**
* @addtogroup evas_object_textblock
#include <Ecore_Evas.h>
#include <Evas.h>
#include <Eina.h>
-Ecore_Evas *ee = NULL;
-Evas *evas = NULL;
+static Ecore_Evas *ee = NULL;
+static Evas *evas = NULL;
-Evas_Object *obj;
-Evas_Textblock_Cursor *cur1, *cur2 = NULL;
-Evas_Textblock_Style *ts = NULL;
-Eina_Bool inited = EINA_FALSE;
-const char *buf = "123<br/>456<br/>789";
+static Evas_Object *obj;
+static Evas_Textblock_Cursor *cur1, *cur2 = NULL;
+static Evas_Textblock_Style *ts = NULL;
+static Eina_Bool inited = EINA_FALSE;
+static const char *buf = "123<br/>456<br/>789";
static const char *style_buf = "DEFAULT='font=Sans font_size=10 color=#000 text_class=entry'";
/**
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-const char *str = "·aa";
+static const char *str = "·aa";
/**
* @addtogroup evas_object_textblock
#include <check.h>
#include <Evas.h>
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Cursor *cur = NULL;
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Cursor *cur = NULL;
const char *anchor = "a";
/**
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-Evas *evas = NULL;
-Evas_Object *obj = NULL;
-Evas_Textblock_Style *ts = NULL;
-const char *buf = "This <b>is a</b> test.";
+static Evas *evas = NULL;
+static Evas_Object *obj = NULL;
+static Evas_Textblock_Style *ts = NULL;
+static const char *buf = "This <b>is a</b> test.";
-Eina_Bool inited = EINA_FALSE;
+static Eina_Bool inited = EINA_FALSE;
/**
* @addtogroup evas_object_textblock
#include <Evas.h>
#include <string.h>
#include "../../../utc_negative_unitest.h"
-const char *str = "&";
+static const char *str = "&";
/**
* @addtogroup evas_object_textblock
static Ecore_Evas *ee = NULL;
static Evas *evas = NULL;
-Ecore_Timer *loop_timer_quit = NULL;
+static Ecore_Timer *loop_timer_quit = NULL;
static Eina_File *ef = NULL;
static void *pixels = NULL;
-Eina_Bool is_evas_render = EINA_FALSE;
-Eina_Bool is_img_render = EINA_FALSE;
+static Eina_Bool is_evas_render = EINA_FALSE;
+static Eina_Bool is_img_render = EINA_FALSE;
static Eina_Bool
_timer_cb(void *data EINA_UNUSED)
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
#include <Evas.h>
#include <system_info.h>
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
#include <Evas.h>
#include <system_info.h>
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL *evasgl;
static bool is_supported = false;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Config *config;
static Evas_GL_Context* context;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Config *cfg;
static bool is_supported = false;
-bool check_system_info_feature_supported(void)
+static bool check_system_info_feature_supported(void)
{
bool bValue = false;
static Evas_GL_Config *config;
static Evas_GL_Context* context;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Surface *surface;
static Evas_GL_Config *config;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Ecore_Evas *ee;
static Evas *canvas;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Config *config;
static bool is_supported = false;
-bool check_system_info_feature_supported(void)
+static bool check_system_info_feature_supported(void)
{
bool bValue = false;
static Evas_GL_Surface *surface;
static Evas_GL_Config *config;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Ecore_Evas *ee;
static Evas *canvas;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL *evasgl;
static Evas_GL_Config *cfg;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Surface *surface;
static Evas_GL_Config *config;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Surface *surface;
static Evas_GL_Config *config;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL *evasgl;
static Evas_GL_Config* glconfig;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas *canvas;
static Evas_GL *evasgl;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
static Evas_GL_Config *config;
static Evas_GL_Context *context;
-bool check_system_info_feature_supported(Evas_GL_Context_Version version)
+static bool check_system_info_feature_supported(Evas_GL_Context_Version version)
{
bool bValue = false;
/**
*@}
*/
-Suite *
-test_suite(void)
-{
- Suite *suite = suite_create("utc_evas_module_libdir_get");
- TCase *tcase = tcase_create("TCase");
+TCase * _utc_evas_module_libdir_get()
+{
+ TCase *tcase = tcase_create("utc_evas_module_libdir_get");
tcase_set_timeout(tcase, 30);
tcase_add_checked_fixture(tcase, setup, teardown);
tcase_add_test(tcase, utc_evas_module_libdir_get_p);
- suite_add_tcase(suite, tcase);
-
- return suite;
-}
-
-int
-main()
-{
- int number_failed;
-
- Suite *suite = test_suite();
- SRunner *srunner = srunner_create(suite);
- srunner_set_log(srunner, "utc_evas_module_libdir_get.log");
- srunner_set_xml(srunner, "utc_evas_module_libdir_get.xml");
- srunner_run_all(srunner, CK_NORMAL);
- number_failed = srunner_ntests_failed(srunner);
- srunner_free(srunner);
-
- return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
+ return tcase;
}
/**
*@}
*/
-Suite *
-test_suite(void)
-{
- Suite *suite = suite_create("utc_evas_module_register_unregister");
- TCase *tcase = tcase_create("TCase");
+TCase * _utc_evas_module_register_unregister()
+{
+ TCase *tcase = tcase_create("utc_evas_module_register_unregister");
tcase_set_timeout(tcase, 30);
tcase_add_checked_fixture(tcase, setup, teardown);
tcase_add_test(tcase, utc_evas_module_register_unregister_p);
- suite_add_tcase(suite, tcase);
-
- return suite;
-}
-
-int
-main()
-{
- int number_failed;
-
- Suite *suite = test_suite();
- SRunner *srunner = srunner_create(suite);
- srunner_set_log(srunner, "utc_evas_module_register_unregister.log");
- srunner_set_xml(srunner, "utc_evas_module_register_unregister.xml");
- srunner_run_all(srunner, CK_NORMAL);
- number_failed = srunner_ntests_failed(srunner);
- srunner_free(srunner);
-
- return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
+ return tcase;
}