Home | History | Annotate | Download | only in storage

Lines Matching refs:ExceptionState

38 class ExceptionState;
46 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec, m_frame); }
47 String key(unsigned index, ExceptionState& ec) const { return m_storageArea->key(index, ec, m_frame); }
48 String getItem(const String& key, ExceptionState& ec) const { return m_storageArea->getItem(key, ec, m_frame); }
49 void setItem(const String& key, const String& value, ExceptionState& ec) { m_storageArea->setItem(key, value, ec, m_frame); }
50 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->removeItem(key, ec, m_frame); }
51 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); }
52 bool contains(const String& key, ExceptionState& ec) const { return m_storageArea->contains(key, ec, m_frame); }
56 String anonymousIndexedGetter(unsigned, ExceptionState&);
57 String anonymousNamedGetter(const AtomicString&, ExceptionState&);
58 bool anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionState&);
59 bool anonymousIndexedSetter(unsigned, const AtomicString&, ExceptionState&);
60 bool anonymousNamedDeleter(const AtomicString&, ExceptionState&);
61 bool anonymousIndexedDeleter(unsigned, ExceptionState&);
62 void namedPropertyEnumerator(Vector<String>&, ExceptionState&);
63 bool namedPropertyQuery(const AtomicString&, ExceptionState&);