• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/

Lines Matching refs:list

8  *    notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
44 * Returns the current item in the @a list.
46 * @param list the back-forward list instance
48 * @return the current item in the @a list or @c NULL in case of error
50 EAPI Ewk_Back_Forward_List_Item *ewk_back_forward_list_current_item_get(const Ewk_Back_Forward_List *list);
53 * Returns the item that precedes the current item in the @a list.
55 * @param list the back-forward list instance
57 * @return the item that precedes the current item the @a list or @c NULL in case of error
59 EAPI Ewk_Back_Forward_List_Item *ewk_back_forward_list_previous_item_get(const Ewk_Back_Forward_List *list);
62 * Returns the item that follows the current item in the @a list.
64 * @param list the back-forward list instance
66 * @return the item that follows the current item in the @a list or @c NULL in case of error
68 EAPI Ewk_Back_Forward_List_Item *ewk_back_forward_list_next_item_get(const Ewk_Back_Forward_List *list);
73 * @param list the back-forward list instance
78 EAPI Ewk_Back_Forward_List_Item *ewk_back_forward_list_item_at_index_get(const Ewk_Back_Forward_List *list, int index);
81 * Returns the length of the back-forward list including current item.
83 * @param list the back-forward list instance
85 * @return the length of the back-forward list including current item or @c 0 in case of error
87 EAPI unsigned ewk_back_forward_list_count(Ewk_Back_Forward_List *list);
90 * Creates the list containing the items preceding the current item limited by @a limit.
92 * The @c Ewk_Back_Forward_List_Item elements are located in the result list starting with the oldest one.
95 * @param list the back-forward list instance
102 EAPI Eina_List *ewk_back_forward_list_n_back_items_copy(const Ewk_Back_Forward_List *list, int limit);
105 * Creates the list containing the items following the current item limited by @a limit.
107 * The @c Ewk_Back_Forward_List_Item elements are located in the result list starting with the oldest one.
110 * @param list the back-forward list instance
117 EAPI Eina_List *ewk_back_forward_list_n_forward_items_copy(const Ewk_Back_Forward_List *list, int limit);
120 * Creates the list containing the items preceding the current item.
122 * The @c Ewk_Back_Forward_List_Item elements are located in the result list starting with the oldest one.
124 * @param list the back-forward list instance
132 #define ewk_back_forward_list_back_items_copy(list) \
133 ewk_back_forward_list_n_back_items_copy(list, -1)
136 * Creates the list containing the items following the current item.
138 * The @c Ewk_Back_Forward_List_Item elements are located in the result list starting with the oldest one.
140 * @param list the back-forward list instance
148 #define ewk_back_forward_list_forward_items_copy(list) \
149 ewk_back_forward_list_n_forward_items_copy(list, -1)