Home | History | Annotate | Download | only in src

Lines Matching refs:element

88 Element<Key> *Engine::getFromCollection(const Key &key) const
104 Element<Key> *element = getFromCollection<Key>(key);
105 if (element == NULL) {
106 ALOGE("%s: Element not found within collection", __FUNCTION__);
109 return element->template get<Property>();
125 Element<Key> *element = getFromCollection<Key>(key);
126 if (element == NULL) {
127 ALOGE("%s: Element not found within collection", __FUNCTION__);
130 return element->template set<Property>(property) == NO_ERROR;