HomeSort by relevance Sort by last modified time
    Searched refs:OptionsObject (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/
OptionsObject.h 37 class OptionsObject {
39 OptionsObject();
40 OptionsObject(const v8::Local<v8::Value>& options);
41 ~OptionsObject();
43 OptionsObject& operator=(const OptionsObject&);
OptionsObject.cpp 27 #include "OptionsObject.h"
40 OptionsObject::OptionsObject()
44 OptionsObject::OptionsObject(const v8::Local<v8::Value>& options)
49 OptionsObject::~OptionsObject()
53 OptionsObject& OptionsObject::operator=(const OptionsObject& optionsObject
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBDatabase.h 38 #include "OptionsObject.h"
63 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, ExceptionCode& ec) { return createObjectStore(name, OptionsObject(), ec); }
68 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const OptionsObject&, ExceptionCode&);
IDBDatabase.idl 40 IDBObjectStore createObjectStore(in DOMString name, in [Optional] OptionsObject options)
IDBObjectStore.h 35 #include "OptionsObject.h"
64 PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, ExceptionCode& ec) { return createIndex(name, keyPath, OptionsObject(), ec); }
74 PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, const OptionsObject&, ExceptionCode&);
IDBObjectStore.idl 47 IDBIndex createIndex(in DOMString name, in [ConvertNullToNullString] DOMString keyPath, in [Optional] OptionsObject options)
IDBDatabase.cpp 75 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const OptionsObject& options, ExceptionCode& ec)
IDBObjectStore.cpp 125 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(const String& name, const String& keyPath, const OptionsObject& options, ExceptionCode& ec)
  /external/webkit/Source/WebCore/bindings/scripts/test/
TestObj.idl 78 void optionsObject(in OptionsObject oo, in [Optional] OptionsObject ooo);
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestObj.cpp 225 WebCore::OptionsObject * converted_oo = NULL;
230 WebCore::OptionsObject * converted_ooo = NULL;
235 item->optionsObject(converted_oo, converted_ooo);
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 28 #include "OptionsObject.h"
749 INC_STATS("DOM.TestObj.optionsObject");
751 EXCEPTION_BLOCK(OptionsObject, oo, args[0]);
753 imp->optionsObject(oo);
756 EXCEPTION_BLOCK(OptionsObject, ooo, args[1]);
757 imp->optionsObject(oo, ooo);
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp 209 { "optionsObject", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionOptionsObject), (intptr_t)2 THUNK_GENERATOR(0) },
    [all...]

Completed in 78 milliseconds