/external/webkit/Source/WebCore/storage/ |
D | IDBKey.h | 41 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 …]
|
D | IDBRequest.cpp | 207 void IDBRequest::onSuccess(PassRefPtr<IDBKey> idbKey) in onSuccess() argument 210 m_result = IDBAny::create(idbKey); in onSuccess()
|
D | IDBAny.h | 88 PassRefPtr<IDBKey> idbKey();
|
D | IDBAny.cpp | 92 PassRefPtr<IDBKey> IDBAny::idbKey() in idbKey() function in WebCore::IDBAny
|
/external/webkit/Source/WebKit/chromium/tests/ |
D | IDBBindingUtilitiesTest.cpp | 71 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/ |
D | IDBCallbacksProxy.cpp | 77 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBKey> idbKey) in onSuccess() argument 79 m_callbacks->onSuccess(WebIDBKey(idbKey)); in onSuccess()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8IDBAnyCustom.cpp | 67 return toV8(impl->idbKey()); in toV8()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSIDBAnyCustom.cpp | 73 return toJS(exec, globalObject, idbAny->idbKey()); in toJS()
|
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/ |
D | WebDOMTestObj.h | 141 void idbKey(const WebDOMIDBKey& key);
|
D | WebDOMTestObj.cpp | 675 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/ |
D | DOMTestObj.h | 132 - (void)idbKey:(DOMIDBKey *)key;
|
D | DOMTestObj.mm | 544 - (void)idbKey:(DOMIDBKey *)key 547 IMPL->idbKey(core(key));
|
/external/webkit/Source/WebCore/bindings/scripts/test/ |
D | TestObj.idl | 77 void idbKey(in IDBKey key);
|
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/ |
D | WebKitDOMTestObj.cpp | 214 item->idbKey(converted_key); in webkit_dom_test_obj_idb_key()
|
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
D | V8TestObj.cpp | 739 imp->idbKey(key); in idbKeyCallback()
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
D | JSTestObj.cpp | 1005 imp->idbKey(key); in jsTestObjPrototypeFunctionIdbKey()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 102233 (WebCore::IDBAny::idbKey): 107842 (WebDOMTestObj::idbKey): 107853 (-[DOMTestObj idbKey:]):
|