Searched refs:testInterfaceEmptyArg (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/
H A DTestInterfaceCustomConstructor.idl33 CustomConstructor(TestInterfaceEmpty testInterfaceEmptyArg),
H A DTestCallbackInterface.idl35 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
36 void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty testInterfaceEmptyArg, DOMString stringArg);
38 [Custom] void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
H A DTestInterfaceConstructor2.idl45 TestInterfaceEmpty testInterfaceEmptyArg,
H A DTestImplements.idl40 [CallWith=ExecutionContext, RaisesException] TestInterfaceEmpty implementsComplexMethod(DOMString strArg, TestInterfaceEmpty testInterfaceEmptyArg);
H A DTestInterfaceConstructor.idl37 TestInterfaceEmpty testInterfaceEmptyArg,
H A DTestInterface.idl60 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
H A DTestObject.idl303 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
304 void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty testInterfaceEmptyArg);
414 void voidMethodTestInterfaceEmptyArgVariadicTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg, TestInterfaceEmpty... variadicTestInterfaceEmptyArgs);
424 void overloadedMethodC(TestInterfaceEmpty testInterfaceEmptyArg);
434 void overloadedMethodH(TestInterfaceEmpty testInterfaceEmptyArg);
499 [PerWorldBindings] void perWorldBindingsVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
522 [TypeChecking=Interface] void typeCheckingInterfaceVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
523 [TypeChecking=Interface] void typeCheckingInterfaceVoidMethodTestInterfaceEmptyVariadicArg(TestInterfaceEmpty... testInterfaceEmptyArg);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestCallbackInterface.h31 virtual void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) OVERRIDE;
32 virtual void voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) OVERRIDE;
34 virtual void customVoidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) OVERRIDE;
H A DV8TestCallbackInterface.cpp123 void V8TestCallbackInterface::voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty* testInterfaceEmptyArg) argument
132 v8::Handle<v8::Value> testInterfaceEmptyArgHandle = toV8(testInterfaceEmptyArg, m_scriptState->context()->Global(), m_scriptState->isolate());
143 void V8TestCallbackInterface::voidMethodTestInterfaceEmptyStringArg(TestInterfaceEmpty* testInterfaceEmptyArg, const String& stringArg) argument
152 v8::Handle<v8::Value> testInterfaceEmptyArgHandle = toV8(testInterfaceEmptyArg, m_scriptState->context()->Global(), m_scriptState->isolate());
H A DV8TestInterfaceConstructor2.cpp81 TestInterfaceEmpty* testInterfaceEmptyArg; local
88 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]);
103 RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(testInterfaceEmptyArg, longArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalStringArg, defaultUndefinedOptionalDictionaryArg);
111 RefPtr<TestInterfaceConstructor2> impl = TestInterfaceConstructor2::create(testInterfaceEmptyArg, longArg, defaultUndefinedOptionalStringArg, defaultNullStringOptionalStringArg, defaultUndefinedOptionalDictionaryArg, optionalStringArg);
H A DV8TestInterfaceConstructor.cpp58 TestInterfaceEmpty* testInterfaceEmptyArg; local
67 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[2]);
86 RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(executionContext, document, doubleArg, stringArg, testInterfaceEmptyArg, dictionaryArg, sequenceStringArg, sequenceDictionaryArg, optionalDictionaryArg, optionalTestInterfaceEmptyArg, exceptionState);
H A DV8TestObject.cpp5579 TestInterfaceEmpty* testInterfaceEmptyArg; local
5581 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]);
5583 impl->voidMethodTestInterfaceEmptyArg(testInterfaceEmptyArg);
5603 TestInterfaceEmpty* testInterfaceEmptyArg; local
5606 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[1]);
5608 impl->voidMethodLongArgTestInterfaceEmptyArg(longArg, testInterfaceEmptyArg);
7433 TestInterfaceEmpty* testInterfaceEmptyArg; local
7436 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]);
7446 impl->voidMethodTestInterfaceEmptyArgVariadicTestInterfaceEmptyArg(testInterfaceEmptyArg, variadicTestInterfaceEmptyArgs);
7644 TestInterfaceEmpty* testInterfaceEmptyArg; local
7939 TestInterfaceEmpty* testInterfaceEmptyArg; local
9122 TestInterfaceEmpty* testInterfaceEmptyArg; local
9143 TestInterfaceEmpty* testInterfaceEmptyArg; local
9659 TestInterfaceEmpty* testInterfaceEmptyArg; local
9681 Vector<RefPtr<TestInterfaceEmpty> > testInterfaceEmptyArg; local
[all...]
H A DV8TestInterface.cpp986 TestInterfaceEmpty* testInterfaceEmptyArg; local
992 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]);
994 impl->voidMethodTestInterfaceEmptyArg(testInterfaceEmptyArg);
1226 TestInterfaceEmpty* testInterfaceEmptyArg; local
1234 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[1]);
1237 RefPtr<TestInterfaceEmpty> result = impl->implementsComplexMethod(executionContext, strArg, testInterfaceEmptyArg, exceptionState);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/modules/
H A DTestInterface5.idl60 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyArg);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
H A DV8TestInterface5.cpp347 TestInterfaceEmpty* testInterfaceEmptyArg; local
353 testInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]);
355 impl->voidMethodTestInterfaceEmptyArg(testInterfaceEmptyArg);

Completed in 152 milliseconds