本文整理汇总了C++中TestInterfaceNode类的典型用法代码示例。如果您正苦于以下问题:C++ TestInterfaceNode类的具体用法?C++ TestInterfaceNode怎么用?C++ TestInterfaceNode使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestInterfaceNode类的19个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: eventHandlerAttributeAttributeGetter
static void eventHandlerAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
EventListener* cppValue(impl->eventHandlerAttribute());
v8SetReturnValue(info, cppValue ? v8::Local<v8::Value>(V8AbstractEventListener::cast(cppValue)->getListenerObject(impl->executionContext())) : v8::Local<v8::Value>(v8::Null(info.GetIsolate())));
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:7,代码来源:V8TestInterfaceNode.cpp
示例2: stringAttributeAttributeSetter
static void stringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
V8StringResource<> cppValue = v8Value;
if (!cppValue.prepare())
return;
impl->setStringAttribute(cppValue);
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:9,代码来源:V8TestInterfaceNode.cpp
示例3: perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForMainWorld
static void perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
if (UNLIKELY(info.Length() <= 0)) {
v8SetReturnValueForMainWorld(info, imp->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg());
return;
}
V8TRYCATCH_VOID(bool, optionalBooleanArgument, info[0]->BooleanValue());
v8SetReturnValueForMainWorld(info, imp->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg(optionalBooleanArgument));
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:10,代码来源:V8TestInterfaceNode.cpp
示例4: perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForMainWorld
static void perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(ExceptionState::ExecutionContext, "perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg", "TestInterfaceNode", info.Holder(), info.GetIsolate());
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(info.Holder());
bool optionalBooleanArgument;
{
int numArgsPassed = info.Length();
while (numArgsPassed > 0) {
if (!info[numArgsPassed - 1]->IsUndefined())
break;
--numArgsPassed;
}
if (UNLIKELY(numArgsPassed <= 0)) {
v8SetReturnValueForMainWorld(info, WTF::getPtr(impl->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg()));
return;
}
optionalBooleanArgument = toBoolean(info.GetIsolate(), info[0], exceptionState);
if (exceptionState.throwIfNeeded())
return;
}
v8SetReturnValueForMainWorld(info, WTF::getPtr(impl->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg(optionalBooleanArgument)));
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:22,代码来源:V8TestInterfaceNode.cpp
示例5: perWorldBindingsTestInterfaceEmptyMethodMethodForMainWorld
static void perWorldBindingsTestInterfaceEmptyMethodMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(info.Holder());
v8SetReturnValueForMainWorld(info, WTF::getPtr(impl->perWorldBindingsTestInterfaceEmptyMethod()));
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例6: testInterfaceEmptyMethodMethod
static void testInterfaceEmptyMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(info.Holder());
v8SetReturnValueFast(info, WTF::getPtr(impl->testInterfaceEmptyMethod()), impl);
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例7: reflectUrlStringAttributeAttributeGetter
static void reflectUrlStringAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
v8SetReturnValueString(info, impl->getURLAttribute(HTMLNames::reflecturlstringattributeAttr), info.GetIsolate());
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例8: perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterForMainWorld
static void perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterForMainWorld(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
v8SetReturnValueForMainWorld(info, WTF::getPtr(impl->perWorldBindingsReadonlyTestInterfaceEmptyAttribute()));
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例9: eventHandlerAttributeAttributeSetter
static void eventHandlerAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
impl->setEventHandlerAttribute(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate));
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例10: eventHandlerAttributeAttributeGetter
static void eventHandlerAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
EventListener* jsValue = imp->eventHandlerAttribute();
v8SetReturnValue(info, jsValue ? v8::Handle<v8::Value>(V8AbstractEventListener::cast(jsValue)->getListenerObject(imp->executionContext())) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate())));
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例11: stringAttributeAttributeGetter
static void stringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
v8SetReturnValueString(info, imp->stringAttribute(), info.GetIsolate());
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例12: perWorldBindingsTestInterfaceEmptyMethodMethod
static void perWorldBindingsTestInterfaceEmptyMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
v8SetReturnValueFast(info, imp->perWorldBindingsTestInterfaceEmptyMethod(), imp);
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例13: reflectUrlStringAttributeAttributeGetter
static void reflectUrlStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
v8SetReturnValueString(info, imp->getURLAttribute(HTMLNames::reflecturlstringattributeAttr), info.GetIsolate());
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例14: perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterForMainWorld
static void perWorldBindingsReadonlyTestInterfaceEmptyAttributeAttributeGetterForMainWorld(const v8::PropertyCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
v8SetReturnValueForMainWorld(info, imp->perWorldBindingsReadonlyTestInterfaceEmptyAttribute());
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例15: eventHandlerAttributeAttributeSetter
static void eventHandlerAttributeAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
imp->setEventHandlerAttribute(V8EventListenerList::getEventListener(jsValue, true, ListenerFindOrCreate));
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
示例16: stringAttributeAttributeGetter
static void stringAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
v8SetReturnValueString(info, impl->stringAttribute(), info.GetIsolate());
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例17: stringAttributeAttributeSetter
static void stringAttributeAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
imp->setStringAttribute(cppValue);
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例18: readonlyTestInterfaceEmptyAttributeAttributeGetter
static void readonlyTestInterfaceEmptyAttributeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Object> holder = info.Holder();
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder);
v8SetReturnValueFast(info, WTF::getPtr(impl->readonlyTestInterfaceEmptyAttribute()), impl);
}
开发者ID:astojilj,项目名称:chromium-crosswalk,代码行数:6,代码来源:V8TestInterfaceNode.cpp
示例19: readonlyTestInterfaceEmptyAttributeAttributeGetter
static void readonlyTestInterfaceEmptyAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
TestInterfaceNode* imp = V8TestInterfaceNode::toNative(info.Holder());
v8SetReturnValueFast(info, imp->readonlyTestInterfaceEmptyAttribute(), imp);
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:5,代码来源:V8TestInterfaceNode.cpp
注:本文中的TestInterfaceNode类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论