• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching defs:position

113 /* Type representing the position of an element in the list, in a way that
169 /* Return the element at a given position in the list.
171 extern const void * gl_list_get_at (gl_list_t list, size_t position);
173 /* Replace the element at a given position in the list.
176 extern gl_list_node_t gl_list_set_at (gl_list_t list, size_t position,
184 at a position >= START_INDEX.
190 at a position >= START_INDEX and < END_INDEX.
198 Return its position if found, or (size_t)(-1) if not present in the list. */
202 at a position >= START_INDEX.
203 Return its position if found, or (size_t)(-1) if not present in the list. */
208 at a position >= START_INDEX and < END_INDEX.
209 Return its position if found, or (size_t)(-1) if not present in the list. */
232 /* Add an element add a given position in the list.
234 extern gl_list_node_t gl_list_add_at (gl_list_t list, size_t position,
241 /* Remove an element at a given position from the list.
244 extern bool gl_list_remove_at (gl_list_t list, size_t position);
329 Return its position if found, or (size_t)(-1) if not present in the list.
330 If the list contains several copies of ELT, the position of the leftmost one
341 Return its position if found, or (size_t)(-1) if not present in the list.
342 If the list contains several copies of ELT, the position of the leftmost one
350 /* Add an element at the appropriate position in the list.
386 const void * (*get_at) (gl_list_t list, size_t position);
387 gl_list_node_t (*set_at) (gl_list_t list, size_t position, const void *elt);
398 gl_list_node_t (*add_at) (gl_list_t list, size_t position,
401 bool (*remove_at) (gl_list_t list, size_t position);
510 gl_list_get_at (gl_list_t list, size_t position)
513 ->get_at (list, position);
518 gl_list_set_at (gl_list_t list, size_t position, const void *elt)
521 ->set_at (list, position, elt);
612 gl_list_add_at (gl_list_t list, size_t position, const void *elt)
615 ->add_at (list, position, elt);
628 gl_list_remove_at (gl_list_t list, size_t position)
631 ->remove_at (list, position);