/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBAny.cpp | 27 #include "modules/indexeddb/IDBAny.h" 37 IDBAny* IDBAny::createUndefined() 39 return new IDBAny(UndefinedType); 42 IDBAny* IDBAny::createNull() 44 return new IDBAny(NullType); 47 IDBAny* IDBAny::createString(const String& value) 49 return new IDBAny(value) [all...] |
IDBAny.h | 48 class IDBAny : public GarbageCollectedFinalized<IDBAny> { 50 static IDBAny* createUndefined(); 51 static IDBAny* createNull(); 52 static IDBAny* createString(const String&); 54 static IDBAny* create(T* idbObject) 56 return new IDBAny(idbObject); 59 static IDBAny* create(const T& idbObject) 61 return new IDBAny(idbObject); 63 static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<WebBlobInfo>* blobInfo [all...] |
IDBCursorWithValue.h | 37 class IDBAny; 44 static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 54 IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
|
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)
|
IDBCursor.h | 42 class IDBAny; 53 static IDBCursor* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 87 IDBCursor(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); 96 Member<IDBAny> m_source;
|
IDBRequest.h | 40 #include "modules/indexeddb/IDBAny.h" 63 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*); 75 IDBAny* resultAsAny() const { return m_result; } 132 IDBRequest(ScriptState*, IDBAny* source, IDBTransaction*); 136 void onSuccessInternal(IDBAny*); 137 void setResult(IDBAny*); 150 Member<IDBAny> m_source; 151 Member<IDBAny> m_result;
|
IDBRequest.cpp | 50 IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 60 IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction) 195 if (m_result->type() == IDBAny::IDBCursorType) 197 if (m_result->type() == IDBAny::IDBCursorWithValueType) 210 onSuccessInternal(IDBAny::create(cursor)); 249 setResult(IDBAny::createUndefined()); 263 onSuccessInternal(IDBAny::create(domStringList.release())); 294 onSuccessInternal(IDBAny::create(idbKey)); 296 onSuccessInternal(IDBAny::createUndefined()); 314 onSuccessInternal(IDBAny::create(valueBuffer, m_blobInfo.get())) [all...] |
IDBOpenDBRequest.cpp | 49 : IDBRequest(scriptState, IDBAny::createNull(), 0) 106 setResult(IDBAny::create(idbDatabase)); 136 setResult(IDBAny::create(idbDatabase)); 151 setResult(IDBAny::createUndefined()); 169 if (event->type() == EventTypeNames::success && resultAsAny()->type() == IDBAny::IDBDatabaseType && resultAsAny()->idbDatabase()->isClosePending()) {
|
IDBObjectStore.h | 49 class IDBAny; 92 IDBRequest* put(ScriptState*, WebIDBPutMode, IDBAny* source, const ScriptValue&, IDBKey*, ExceptionState&); 112 IDBRequest* put(ScriptState*, WebIDBPutMode, IDBAny* source, const ScriptValue&, const ScriptValue& key, ExceptionState&);
|
IDBCursor.cpp | 36 #include "modules/indexeddb/IDBAny.h" 52 IDBCursor* IDBCursor::create(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 57 IDBCursor::IDBCursor(PassOwnPtr<WebIDBCursor> backend, WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) 70 ASSERT(m_source->type() == IDBAny::IDBObjectStoreType || m_source->type() == IDBAny::IDBIndexType); 123 return objectStore->put(scriptState, WebIDBPutModeCursorUpdate, IDBAny::create(this), value, m_primaryKey, exceptionState); 265 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 301 IDBAny* value; 303 value = IDBAny::create(m_value, m_blobInfo.get(), m_primaryKey, metadata.keyPath); 308 value = IDBAny::create(m_value, m_blobInfo.get()) [all...] |
IDBIndex.cpp | 70 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath)); 106 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 137 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 169 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 214 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
|
IDBObjectStore.cpp | 36 #include "modules/indexeddb/IDBAny.h" 74 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath)); 114 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 145 return put(scriptState, WebIDBPutModeAddOnly, IDBAny::create(this), value, key, exceptionState); 151 return put(scriptState, WebIDBPutModeAddOrUpdate, IDBAny::create(this), value, key, 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) 297 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 326 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get()); 370 IDBAny* cursorAny = request->resultAsAny() [all...] |
IDBRequestTest.cpp | 78 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction); 97 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction);
|
InspectorIndexedDBAgent.cpp | 115 IDBAny* requestResult = idbRequest->resultAsAny(); 116 if (requestResult->type() != IDBAny::DOMStringListType) { 173 IDBAny* requestResult = idbOpenDBRequest->resultAsAny(); 174 if (requestResult->type() != IDBAny::IDBDatabaseType) { 411 IDBAny* requestResult = idbRequest->resultAsAny(); 412 if (requestResult->type() == IDBAny::BufferType) { 416 if (requestResult->type() != IDBAny::IDBCursorWithValueType) {
|
IDBFactory.cpp | 83 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::createNull(), 0);
|
IDBTransactionTest.cpp | 111 Persistent<IDBRequest> request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction.get());
|
IDBDatabase.cpp | 37 #include "modules/indexeddb/IDBAny.h" 193 return idbAnyToScriptValue(scriptState, IDBAny::createString(m_metadata.version)); 195 return idbAnyToScriptValue(scriptState, IDBAny::create(intVersion));
|
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/ |
IDBBindingUtilities.h | 36 class IDBAny; 50 ScriptValue idbAnyToScriptValue(ScriptState*, IDBAny*);
|
IDBBindingUtilities.cpp | 109 static v8::Handle<v8::Value> toV8(const IDBAny* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 115 case IDBAny::UndefinedType: 117 case IDBAny::NullType: 119 case IDBAny::DOMStringListType: 121 case IDBAny::IDBCursorType: { 129 case IDBAny::IDBCursorWithValueType: { 137 case IDBAny::IDBDatabaseType: 139 case IDBAny::IDBIndexType: 141 case IDBAny::IDBObjectStoreType: 143 case IDBAny::IDBTransactionType [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/ |
modules.target.darwin-arm.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |
modules.target.darwin-arm64.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |
modules.target.darwin-mips.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |
modules.target.darwin-mips64.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |
modules.target.darwin-x86.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |
modules.target.darwin-x86_64.mk | 221 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \ [all...] |