Lines Matching full:element
188 * @param x A %set of identical element and allocator types. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
198 * @param x A %set of identical element and allocator types. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
226 * Returns a read/write iterator that points to the first element in the in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
234 * Returns a read/write iterator that points one past the last element in in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
242 * Returns a read/write reverse iterator that points to the last element in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
276 * @param x A %set of the same element and allocator types. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
291 * @brief Attempts to insert an element into the %set. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
292 * @param x Element to be inserted. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
293 * @return A pair, of which the first element is an iterator that points in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
294 * to the possibly inserted element, and the second is a bool in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
295 * that is true if the element was actually inserted. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
297 * This function attempts to insert an element into the %set. A %set in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
298 * relies on unique keys and thus an element is only inserted if it is in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
312 * @brief Attempts to insert an element into the %set. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
314 * element should be inserted. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
315 * @param x Element to be inserted. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
316 * @return An iterator that points to the element with key of @a x (may in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
317 * or may not be the element passed in). in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
348 * @brief Erases an element from a %set. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
349 * @param position An iterator pointing to the element to be erased. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
351 * This function erases an element, pointed to by the given iterator, in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
352 * from a %set. Note that this function only erases the element, and in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
353 * that if the element is itself a pointer, the pointed-to memory is not in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
362 * @param x Key of element to be erased. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
367 * Note that this function only erases the element, and that if in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
368 * the element is itself a pointer, the pointed-to memory is not touched in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
382 * Note that this function only erases the element, and that if in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
383 * the element is itself a pointer, the pointed-to memory is not touched in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
404 * @param x Element to located. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
418 * @brief Tries to locate an element in a %set. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
419 * @param x Element to be located. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
420 * @return Iterator pointing to sought-after element, or end() if not in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
423 * This function takes a key and tries to locate the element with which in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
425 * pointing to the sought after element. If unsuccessful it returns the in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
441 * @return Iterator pointing to first element equal to or greater in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
444 * This function returns the first element of a subsequence of elements in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
446 * pointing to the first element that has a greater value than given key in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
447 * or end() if no such element exists. in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
462 * @return Iterator pointing to the first element in _GLIBCXX_BEGIN_NESTED_NAMESPACE()