QStringList QDeclarativePropertyCache::propertyNames() const { QStringList keys; for (StringCache::ConstIterator iter = stringCache.begin(); iter != stringCache.end(); ++iter) keys.append(iter.key()); return keys; }
QString QDeclarativeIntegerCache::findId(int value) const { for (StringCache::ConstIterator iter = stringCache.begin(); iter != stringCache.end(); ++iter) { if (iter.value() && iter.value()->value == value) return iter.key(); } return QString(); }