Lines Matching refs:Key
87 template <typename Key>
88 Element<Key> *Engine::getFromCollection(const Key &key) const in getFromCollection()
90 const Collection<Key> collection = getCollection<Key>(); in getFromCollection()
94 template <typename Key>
95 status_t Engine::add(const std::string &name, const Key &key) in add()
97 Collection<Key> &collection = getCollection<Key>(); in add()
101 template <typename Property, typename Key>
102 Property Engine::getPropertyForKey(Key key) const in getPropertyForKey()
104 Element<Key> *element = getFromCollection<Key>(key); in getPropertyForKey()
122 template <typename Property, typename Key>
123 bool Engine::setPropertyForKey(const Property &property, const Key &key) in setPropertyForKey()
125 Element<Key> *element = getFromCollection<Key>(key); in setPropertyForKey()