Lines Matching refs:Key
116 template <typename Key>
117 Element<Key> *Engine::getFromCollection(const Key &key) const in getFromCollection()
119 const Collection<Key> collection = getCollection<Key>(); in getFromCollection()
123 template <typename Key>
124 status_t Engine::add(const std::string &name, const Key &key) in add()
126 Collection<Key> &collection = getCollection<Key>(); in add()
130 template <typename Property, typename Key>
131 Property Engine::getPropertyForKey(Key key) const in getPropertyForKey()
133 Element<Key> *element = getFromCollection<Key>(key); in getPropertyForKey()
190 template <typename Property, typename Key>
191 bool Engine::setPropertyForKey(const Property &property, const Key &key) in setPropertyForKey()
193 Element<Key> *element = getFromCollection<Key>(key); in setPropertyForKey()