Searched refs:idbAny (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/WebCore/bindings/js/ |
D | JSIDBAnyCustom.cpp | 54 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, IDBAny* idbAny) in toJS() argument 56 if (!idbAny) in toJS() 59 switch (idbAny->type()) { in toJS() 65 return toJS(exec, globalObject, idbAny->idbCursor()); in toJS() 67 return toJS(exec, globalObject, idbAny->idbDatabase()); in toJS() 69 return toJS(exec, globalObject, idbAny->idbFactory()); in toJS() 71 return toJS(exec, globalObject, idbAny->idbIndex()); in toJS() 73 return toJS(exec, globalObject, idbAny->idbKey()); in toJS() 75 return toJS(exec, globalObject, idbAny->idbObjectStore()); in toJS() 77 return toJS(exec, globalObject, idbAny->idbTransaction()); in toJS() [all …]
|
/external/webkit/Source/WebCore/storage/ |
D | IDBAny.cpp | 47 RefPtr<IDBAny> idbAny = adoptRef(new IDBAny()); in createNull() local 48 idbAny->setNull(); in createNull() 49 return idbAny.release(); in createNull()
|