Searched refs:classMethodWithOptional (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestObj.h162 int classMethodWithOptional(int arg);
H A DWebDOMTestObj.cpp818 int WebDOMTestObj::classMethodWithOptional(int arg) function in class:WebDOMTestObj
823 return impl()->classMethodWithOptional(arg);
/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
H A DDOMTestObj.h154 - (int)classMethodWithOptional:(int)arg;
H A DDOMTestObj.mm687 - (int)classMethodWithOptional:(int)arg
690 return IMPL->classMethodWithOptional(arg);
/external/webkit/Source/WebCore/bindings/scripts/test/
H A DTestObj.idl147 [ClassMethod] long classMethodWithOptional(in [Optional] long arg);
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.cpp234 { "classMethodWithOptional", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionClassMethodWithOptional), (intptr_t)1 THUNK_GENERATOR(0) },
1554 JSC::JSValue result = jsNumber(imp->classMethodWithOptional());
1563 JSC::JSValue result = jsNumber(imp->classMethodWithOptional(arg));
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestObj.cpp1125 INC_STATS("DOM.TestObj.classMethodWithOptional");
1127 return v8::Integer::New(TestObj::classMethodWithOptional());
1130 return v8::Integer::New(TestObj::classMethodWithOptional(arg));
1344 desc->Set(v8::String::New("classMethodWithOptional"), v8::FunctionTemplate::New(TestObjInternal::classMethodWithOptionalCallback, v8::Handle<v8::Value>(), v8::Local<v8::Signature>()));
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
H A DWebKitDOMTestObj.cpp401 glong res = item->classMethodWithOptional(arg);

Completed in 82 milliseconds