Lines Matching defs:entry

48 	references to the entry's key/value. This allows EntryStrategy::Entry
146 VectorMapEntry(Parent *parent, Entry *entry)
147 : fParent(parent), fEntry(entry) {}
285 If there is already a value associated with the key, the old entry
364 /*! \brief Removes the entry with the supplied key.
367 contained an entry with that key, \c 0 otherwise.
382 /*! \brief Removes the entry at the given position.
383 \param iterator An iterator referring to the entry to be removed.
384 \return An iterator referring to the entry succeeding the removed
397 /*! \brief Returns the number of entry the map contains.
433 If the map is not empty, Begin() refers to its first entry,
449 If the map is not empty, Begin() refers to its first entry,
466 entry, i.e. it must not be dereferenced!
482 entry, i.e. it must not be dereferenced!
527 /*! \brief Returns an iterator referring to the entry with the
529 \param key The key of the entry to be found.
530 \return An iterator referring to the found entry, or End(), if the
531 map doesn't contain any entry with the given value.
545 /*! \brief Returns an iterator referring to the entry with the
547 \param key The key of the entry to be found.
548 \return An iterator referring to the found entry, or End(), if the
549 map doesn't contain any entry with the given value.
563 /*! \brief Returns an iterator referring to the entry with a key closest
566 If the map contains an entry with the specified key, an iterator
568 the entry with an directly smaller or greater key shall be returned.
570 If \a less is \c true and the first entry in the map has a greater
572 is \c false and the last entry's key is smaller. Find() invoked on an
580 \param value The key of the entry to be found.
581 \return An iterator referring to the found entry, or End(), if the
582 map doesn't contain any entry with the given key or a close
604 /*! \brief Returns an iterator referring to the entry with a key closest
607 If the map contains an entry with the specified key, an iterator
609 the entry with an directly smaller or greater key shall be returned.
611 If \a less is \c true and the first entry in the map has a greater
613 is \c false and the last entry's key is smaller. Find() invoked on an
621 \param value The key of the entry to be found.
622 \return An iterator referring to the found entry, or End(), if the
623 map doesn't contain any entry with the given key or a close
645 /*! \brief Finds the index at which the entry with the supplied key is
649 entry with that key, to \c false otherwise.
650 \return The index at which the entry with the supplied key is
676 // entry strategies
695 inline KeyReference GetKey(const Entry &entry) const
697 return entry.key;
700 inline const Value &GetValue(const Entry &entry) const
702 return entry.value;
705 inline Value &GetValue(Entry &entry) const
707 return entry.value;
736 inline KeyReference GetKey(const Entry &entry) const
738 return fGetKey(entry);
741 inline const Value &GetValue(const Entry &entry) const
743 return entry;
746 inline Value &GetValue(Entry &entry) const
748 return entry;