Home
last modified time | relevance | path

Searched refs:idbKey (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/storage/
DIDBKey.h41 RefPtr<IDBKey> idbKey(new IDBKey()); in createNull()
42 idbKey->m_type = NullType; in createNull()
43 return idbKey.release(); in createNull()
48 RefPtr<IDBKey> idbKey(new IDBKey()); in createNumber()
49 idbKey->m_type = NumberType; in createNumber()
50 idbKey->m_number = number; in createNumber()
51 return idbKey.release(); in createNumber()
56 RefPtr<IDBKey> idbKey(new IDBKey()); in createString()
57 idbKey->m_type = StringType; in createString()
58 idbKey->m_string = string; in createString()
[all …]
DIDBRequest.cpp207 void IDBRequest::onSuccess(PassRefPtr<IDBKey> idbKey) in onSuccess() argument
210 m_result = IDBAny::create(idbKey); in onSuccess()
DIDBAny.h88 PassRefPtr<IDBKey> idbKey();
DIDBAny.cpp92 PassRefPtr<IDBKey> IDBAny::idbKey() in idbKey() function in WebCore::IDBAny
/external/webkit/Source/WebKit/chromium/tests/
DIDBBindingUtilitiesTest.cpp71 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathNullValue() local
72 ASSERT_FALSE(idbKey.get()); in checkKeyPathNullValue()
100 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathStringValue() local
101 ASSERT_TRUE(idbKey.get()); in checkKeyPathStringValue()
102 ASSERT_EQ(IDBKey::StringType, idbKey->type()); in checkKeyPathStringValue()
103 ASSERT_TRUE(expected == idbKey->string()); in checkKeyPathStringValue()
108 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); in checkKeyPathNumberValue() local
109 ASSERT_TRUE(idbKey.get()); in checkKeyPathNumberValue()
110 ASSERT_EQ(IDBKey::NumberType, idbKey->type()); in checkKeyPathNumberValue()
111 ASSERT_TRUE(expected == idbKey->number()); in checkKeyPathNumberValue()
/external/webkit/Source/WebKit/chromium/src/
DIDBCallbacksProxy.cpp77 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBKey> idbKey) in onSuccess() argument
79 m_callbacks->onSuccess(WebIDBKey(idbKey)); in onSuccess()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8IDBAnyCustom.cpp67 return toV8(impl->idbKey()); in toV8()
/external/webkit/Source/WebCore/bindings/js/
DJSIDBAnyCustom.cpp73 return toJS(exec, globalObject, idbAny->idbKey()); in toJS()
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
DWebDOMTestObj.h141 void idbKey(const WebDOMIDBKey& key);
DWebDOMTestObj.cpp675 void WebDOMTestObj::idbKey(const WebDOMIDBKey& key) in idbKey() function in WebDOMTestObj
680 impl()->idbKey(toWebCore(key)); in idbKey()
/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
DDOMTestObj.h132 - (void)idbKey:(DOMIDBKey *)key;
DDOMTestObj.mm544 - (void)idbKey:(DOMIDBKey *)key
547 IMPL->idbKey(core(key));
/external/webkit/Source/WebCore/bindings/scripts/test/
DTestObj.idl77 void idbKey(in IDBKey key);
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
DWebKitDOMTestObj.cpp214 item->idbKey(converted_key); in webkit_dom_test_obj_idb_key()
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
DV8TestObj.cpp739 imp->idbKey(key); in idbKeyCallback()
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
DJSTestObj.cpp1005 imp->idbKey(key); in jsTestObjPrototypeFunctionIdbKey()
/external/webkit/Source/WebCore/
DChangeLog-2010-12-06102233 (WebCore::IDBAny::idbKey):
107842 (WebDOMTestObj::idbKey):
107853 (-[DOMTestObj idbKey:]):