/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBOpenDBRequest.idl | 26 interface IDBOpenDBRequest : IDBRequest {
|
IDBPendingTransactionMonitor.h | 36 class IDBRequest; 43 // Also, this class is responsible to call IDBRequest::dispose() before an 44 // IDBRequest object dies, and responsible to call IDBCursor::dispose() before 56 void registerRequest(IDBRequest&); 58 // IDBRequest::dispose(). But we must not call unregisterRequest() with 59 // an object different from |this| of IDBRequest::dispose(). 60 void unregisterRequest(IDBRequest&);
|
IDBCursorWithValue.h | 38 class IDBRequest; 44 static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 54 IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
|
IDBIndex.idl | 45 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next"); 46 [CallWith=ScriptState, RaisesException] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next"); 48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key); 49 [CallWith=ScriptState, RaisesException] IDBRequest getKey(any key); 50 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
IDBIndex.h | 34 #include "modules/indexeddb/IDBRequest.h" 63 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&); 64 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 65 IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&); 66 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&); 67 IDBRequest* getKey(ScriptState*, const ScriptValue& key, ExceptionState&); 73 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection); 80 IDBRequest* getInternal(ScriptState*, const ScriptValue& key, ExceptionState&, bool keyOnly);
|
IDBObjectStore.idl | 45 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key); 46 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key); 47 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key); 48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key); 49 [CallWith=ScriptState, RaisesException] IDBRequest clear(); 50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next"); 51 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next"); 57 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
|
IDBObjectStore.h | 37 #include "modules/indexeddb/IDBRequest.h" 70 IDBRequest* openCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 71 IDBRequest* openKeyCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&); 72 IDBRequest* get(ScriptState*, const ScriptValue& key, ExceptionState&); 73 IDBRequest* add(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&); 74 IDBRequest* put(ScriptState*, const ScriptValue&, const ScriptValue& key, ExceptionState&); 75 IDBRequest* deleteFunction(ScriptState*, const ScriptValue& key, ExceptionState&); 76 IDBRequest* clear(ScriptState*, ExceptionState&); 89 IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&); 92 IDBRequest* put(ScriptState*, WebIDBPutMode, IDBAny* source, const ScriptValue&, IDBKey*, ExceptionState&) [all...] |
IDBRequest.cpp | 30 #include "modules/indexeddb/IDBRequest.h" 50 IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 52 IDBRequest* request = adoptRefCountedGarbageCollectedWillBeNoop(new IDBRequest(scriptState, source, transaction)); 60 IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 78 IDBRequest::~IDBRequest() 84 void IDBRequest::dispose( [all...] |
IDBCursor.h | 32 #include "modules/indexeddb/IDBRequest.h" 53 static IDBCursor* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 66 IDBRequest* update(ScriptState*, const ScriptValue&, ExceptionState&); 70 IDBRequest* deleteFunction(ScriptState*, ExceptionState&); 82 IDBRequest* request() const { return m_request.get(); } 87 IDBCursor(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 94 Member<IDBRequest> m_request;
|
IDBCursorWithValue.cpp | 35 IDBCursorWithValue* IDBCursorWithValue::create(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 40 IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
|
WebIDBCallbacksImpl.h | 39 class IDBRequest; 52 static PassOwnPtr<WebIDBCallbacksImpl> create(IDBRequest*); 71 explicit WebIDBCallbacksImpl(IDBRequest*); 73 Persistent<IDBRequest> m_request;
|
IDBIndex.cpp | 73 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) 104 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, WebIDBCursorDirection direction) 106 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 112 IDBRequest* IDBIndex::count(ScriptState* scriptState, const ScriptValue& range, ExceptionState& exceptionState) 137 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 142 IDBRequest* IDBIndex::openKeyCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) 169 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()) [all...] |
IDBFactory.idl | 29 [CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
|
IDBOpenDBRequest.h | 29 #include "modules/indexeddb/IDBRequest.h" 36 class IDBOpenDBRequest FINAL : public IDBRequest { 43 using IDBRequest::onSuccess;
|
IDBRequest.idl | 38 ] interface IDBRequest : EventTarget {
|
IDBCursor.idl | 44 [CallWith=ScriptState, RaisesException] IDBRequest update(any value); 48 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
|
IDBRequest.h | 55 class IDBRequest 56 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<IDBRequest> 59 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<IDBRequest>); 61 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBRequest); 63 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*); 64 virtual ~IDBRequest(); 132 IDBRequest(ScriptState*, IDBAny* source, IDBTransaction*);
|
IDBObjectStore.cpp | 87 IDBRequest* IDBObjectStore::get(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState) 114 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 142 IDBRequest* IDBObjectStore::add(ScriptState* scriptState, const ScriptValue& value, const ScriptValue& key, ExceptionState& exceptionState) 148 IDBRequest* IDBObjectStore::put(ScriptState* scriptState, const ScriptValue& value, const ScriptValue& key, ExceptionState& exceptionState) 154 IDBRequest* IDBObjectStore::put(ScriptState* scriptState, WebIDBPutMode putMode, IDBAny* source, const ScriptValue& value, const ScriptValue& keyValue, ExceptionState& exceptionState) 160 IDBRequest* IDBObjectStore::put(ScriptState* scriptState, WebIDBPutMode putMode, IDBAny* source, const ScriptValue& value, IDBKey* key, ExceptionState& exceptionState) 256 IDBRequest* request = IDBRequest::create(scriptState, source, m_transaction.get()); 265 IDBRequest* IDBObjectStore::deleteFunction(ScriptState* scriptState, const ScriptValue& key, ExceptionState& (…) [all...] |
IDBPendingTransactionMonitor.cpp | 30 #include "modules/indexeddb/IDBRequest.h" 118 DisposerMap<IDBRequest> m_requests; 123 void IDBPendingTransactionMonitor::registerRequest(IDBRequest& request) 130 void IDBPendingTransactionMonitor::unregisterRequest(IDBRequest& request)
|
IDBTransaction.h | 84 void registerRequest(IDBRequest*); 85 void unregisterRequest(IDBRequest*); 131 HeapListHashSet<Member<IDBRequest> > m_requestList;
|
IDBFactory.h | 53 IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
|
IDBRequestTest.cpp | 27 #include "modules/indexeddb/IDBRequest.h" 78 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction); 97 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction);
|
IDBFactory.cpp | 73 IDBRequest* IDBFactory::getDatabaseNames(ScriptState* scriptState, ExceptionState& exceptionState) 83 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::createNull(), 0);
|
IDBOpenDBRequest.cpp | 49 : IDBRequest(scriptState, IDBAny::createNull(), 0) 64 IDBRequest::trace(visitor); 176 return IDBRequest::dispatchEvent(event);
|
/external/chromium_org/third_party/WebKit/Source/modules/ |
EventTargetModules.h | 17 class IDBRequest;
|