HomeSort by relevance Sort by last modified time
    Searched refs:IDBAny (Results 1 - 25 of 29) sorted by null

1 2

  /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 55 class IDBAny : public GarbageCollectedFinalized<IDBAny> {
57 static IDBAny* createUndefined();
58 static IDBAny* createNull();
59 static IDBAny* createString(const String&);
61 static IDBAny* create(T* idbObject)
63 return new IDBAny(idbObject);
66 static IDBAny* create(const T& idbObject)
68 return new IDBAny(idbObject);
70 static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo
    [all...]
IDBCursorWithValue.h 37 class IDBAny;
43 static IDBCursorWithValue* create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
53 IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
IDBCursorWithValue.cpp 35 IDBCursorWithValue* IDBCursorWithValue::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
40 IDBCursorWithValue::IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
IDBRequest.h 41 #include "modules/indexeddb/IDBAny.h"
64 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*);
74 IDBAny* resultAsAny() const { return m_result; }
131 IDBRequest(ScriptState*, IDBAny* source, IDBTransaction*);
135 void onSuccessInternal(IDBAny*);
136 void setResult(IDBAny*);
148 Member<IDBAny> m_source;
149 Member<IDBAny> m_result;
IDBRequest.cpp 48 IDBRequest* IDBRequest::create(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction)
58 IDBRequest::IDBRequest(ScriptState* scriptState, IDBAny* source, IDBTransaction* transaction)
191 if (m_result->type() == IDBAny::IDBCursorType)
193 if (m_result->type() == IDBAny::IDBCursorWithValueType)
207 onSuccessInternal(IDBAny::create(cursor));
237 setResult(IDBAny::createUndefined());
251 onSuccessInternal(IDBAny::create(domStringList.release()));
282 onSuccessInternal(IDBAny::create(idbKey));
284 onSuccessInternal(IDBAny::createUndefined());
303 onSuccessInternal(IDBAny::create(valueBuffer, m_blobInfo.get()))
    [all...]
IDBCursor.h 48 class IDBAny;
63 static IDBCursor* create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
96 IDBCursor(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
105 Member<IDBAny> m_source;
IDBOpenDBRequest.cpp 50 : IDBRequest(scriptState, IDBAny::createNull(), 0)
108 setResult(IDBAny::create(idbDatabase));
138 setResult(IDBAny::create(idbDatabase));
153 setResult(IDBAny::createUndefined());
171 if (event->type() == EventTypeNames::success && resultAsAny()->type() == IDBAny::IDBDatabaseType && resultAsAny()->idbDatabase()->isClosePending()) {
IDBCursor.cpp 35 #include "modules/indexeddb/IDBAny.h"
51 IDBCursor* IDBCursor::create(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
80 IDBCursor::IDBCursor(PassOwnPtr<blink::WebIDBCursor> backend, blink::WebIDBCursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
93 ASSERT(m_source->type() == IDBAny::IDBObjectStoreType || m_source->type() == IDBAny::IDBIndexType);
152 return objectStore->put(scriptState, blink::WebIDBPutModeCursorUpdate, IDBAny::create(this), value, m_primaryKey, exceptionState);
294 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
330 IDBAny* value;
332 value = IDBAny::create(m_value, m_blobInfo.get(), m_primaryKey, metadata.keyPath);
337 value = IDBAny::create(m_value, m_blobInfo.get())
    [all...]
IDBIndex.cpp 71 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath));
107 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
138 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
170 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
215 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
IDBObjectStore.h 49 class IDBAny;
91 IDBRequest* put(ScriptState*, blink::WebIDBPutMode, IDBAny* source, ScriptValue&, IDBKey*, ExceptionState&);
112 IDBRequest* put(ScriptState*, blink::WebIDBPutMode, IDBAny* source, ScriptValue&, const ScriptValue& key, ExceptionState&);
IDBObjectStore.cpp 36 #include "modules/indexeddb/IDBAny.h"
75 return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath));
115 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
146 return put(scriptState, blink::WebIDBPutModeAddOnly, IDBAny::create(this), value, key, exceptionState);
152 return put(scriptState, blink::WebIDBPutModeAddOrUpdate, IDBAny::create(this), value, key, exceptionState);
155 IDBRequest* IDBObjectStore::put(ScriptState* scriptState, blink::WebIDBPutMode putMode, IDBAny* source, ScriptValue& value, const ScriptValue& keyValue, ExceptionState& exceptionState)
161 IDBRequest* IDBObjectStore::put(ScriptState* scriptState, blink::WebIDBPutMode putMode, IDBAny* source, ScriptValue& value, IDBKey* key, ExceptionState& exceptionState)
276 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
305 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::create(this), m_transaction.get());
349 IDBAny* cursorAny = request->resultAsAny()
    [all...]
IDBRequestTest.cpp 80 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction);
99 IDBRequest* request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction);
InspectorIndexedDBAgent.cpp 114 IDBAny* requestResult = idbRequest->resultAsAny();
115 if (requestResult->type() != IDBAny::DOMStringListType) {
172 IDBAny* requestResult = idbOpenDBRequest->resultAsAny();
173 if (requestResult->type() != IDBAny::IDBDatabaseType) {
410 IDBAny* requestResult = idbRequest->resultAsAny();
411 if (requestResult->type() == IDBAny::BufferType) {
415 if (requestResult->type() != IDBAny::IDBCursorWithValueType) {
IDBFactory.cpp 88 IDBRequest* request = IDBRequest::create(scriptState, IDBAny::createNull(), 0);
IDBTransactionTest.cpp 110 Persistent<IDBRequest> request = IDBRequest::create(scriptState(), IDBAny::createUndefined(), transaction.get());
IDBDatabase.cpp 37 #include "modules/indexeddb/IDBAny.h"
194 return idbAnyToScriptValue(scriptState, IDBAny::createString(m_metadata.version));
196 return idbAnyToScriptValue(scriptState, IDBAny::create(intVersion));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.h 42 class IDBAny;
55 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 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]
modules.target.darwin-arm64.mk 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]
modules.target.darwin-mips.mk 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]
modules.target.darwin-x86.mk 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]
modules.target.darwin-x86_64.mk 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]
modules.target.linux-arm.mk 237 third_party/WebKit/Source/modules/indexeddb/IDBAny.cpp \
    [all...]

Completed in 486 milliseconds

1 2