Home | History | Annotate | Download | only in include

Lines Matching refs:element

43    * Adds element to list.
46 * @param element Element to be added
48 ESR_ReturnCode(*add)(struct IntArrayList_t* self, int element);
51 * Removes element from list.
54 * @param element Element to be removed
56 ESR_ReturnCode(*remove)(struct IntArrayList_t* self, int element);
66 * Indicates if element is contained within the list.
69 * @param element Element to check for
70 * @param exists True if element was found
72 ESR_ReturnCode(*contains)(struct IntArrayList_t* self, int element, ESR_BOOL* exists);
83 * Returns the element at the specified index.
86 * @param index Element index
87 * @param element Element being returned
89 ESR_ReturnCode(*get)(struct IntArrayList_t* self, size_t index, int* element);
92 * Sets the element at the specified index.
94 * NOTE: Does *not* deallocate the element being overwritten.
96 * @param index Element index
97 * @param element Element's new value
99 ESR_ReturnCode(*set)(struct IntArrayList_t* self, size_t index, int element);
135 * Adds element to list.
138 * @param element Element to be added
140 ESR_SHARED_API ESR_ReturnCode IntArrayListAdd(IntArrayList* self, int element);
143 * Removes element from list.
146 * @param element Element to be removed
148 ESR_SHARED_API ESR_ReturnCode IntArrayListRemove(IntArrayList* self, int element);
158 * Indicates if element is contained within the list.
161 * @param element Element to check for
162 * @param exists True if element was found
164 ESR_SHARED_API ESR_ReturnCode IntArrayListContains(IntArrayList* self, int element, ESR_BOOL* exists);
175 * Returns the element at the specified index.
178 * @param index Element index
179 * @param element Element being returned
181 ESR_SHARED_API ESR_ReturnCode IntArrayListGet(IntArrayList* self, size_t index, int* element);
184 * Sets the element at the specified index.
186 * NOTE: Does *not* deallocate the element being overwritten.
188 * @param index Element index
189 * @param element Element's new value
191 ESR_SHARED_API ESR_ReturnCode IntArrayListSet(IntArrayList* self, size_t index, int element);