当前位置: 首页>>代码示例>>C++>>正文


C++ SVGFEConvolveMatrixElement类代码示例

本文整理汇总了C++中SVGFEConvolveMatrixElement的典型用法代码示例。如果您正苦于以下问题:C++ SVGFEConvolveMatrixElement类的具体用法?C++ SVGFEConvolveMatrixElement怎么用?C++ SVGFEConvolveMatrixElement使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了SVGFEConvolveMatrixElement类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: getPresentationAttributeCallback

static v8::Handle<v8::Value> getPresentationAttributeCallback(const v8::Arguments& args)
{
    INC_STATS("DOM.SVGFEConvolveMatrixElement.getPresentationAttribute");
    SVGFEConvolveMatrixElement* imp = V8SVGFEConvolveMatrixElement::toNative(args.Holder());
    STRING_TO_V8PARAMETER_EXCEPTION_BLOCK(V8Parameter<>, name, args[0]);
    return toV8(imp->getPresentationAttribute(name));
}
开发者ID:Treeeater,项目名称:chrome_bindings,代码行数:7,代码来源:V8SVGFEConvolveMatrixElement.cpp

示例2: jsSVGFEConvolveMatrixElementStyle

JSValue jsSVGFEConvolveMatrixElementStyle(ExecState* exec, JSValue slotBase, const Identifier&)
{
    JSSVGFEConvolveMatrixElement* castedThis = static_cast<JSSVGFEConvolveMatrixElement*>(asObject(slotBase));
    UNUSED_PARAM(exec);
    SVGFEConvolveMatrixElement* imp = static_cast<SVGFEConvolveMatrixElement*>(castedThis->impl());
    JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->style()));
    return result;
}
开发者ID:13W,项目名称:phantomjs,代码行数:8,代码来源:JSSVGFEConvolveMatrixElement.cpp

示例3: divisorAttrGetter

static v8::Handle<v8::Value> divisorAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.SVGFEConvolveMatrixElement.divisor._get");
    SVGFEConvolveMatrixElement* imp = V8SVGFEConvolveMatrixElement::toNative(info.Holder());
    SVGElement* context = imp;
    PassRefPtr<SVGAnimatedNumber> resultAsPassRefPtr = V8Proxy::withSVGContext(imp->divisorAnimated(), context);
    return toV8(resultAsPassRefPtr);
}
开发者ID:Treeeater,项目名称:chrome_bindings,代码行数:8,代码来源:V8SVGFEConvolveMatrixElement.cpp

示例4: jsSVGFEConvolveMatrixElementClassName

JSValue jsSVGFEConvolveMatrixElementClassName(ExecState* exec, JSValue slotBase, const Identifier&)
{
    JSSVGFEConvolveMatrixElement* castedThis = static_cast<JSSVGFEConvolveMatrixElement*>(asObject(slotBase));
    UNUSED_PARAM(exec);
    SVGFEConvolveMatrixElement* imp = static_cast<SVGFEConvolveMatrixElement*>(castedThis->impl());
    RefPtr<SVGAnimatedString> obj = imp->classNameAnimated();
    JSValue result =  toJS(exec, castedThis->globalObject(), obj.get());
    return result;
}
开发者ID:13W,项目名称:phantomjs,代码行数:9,代码来源:JSSVGFEConvolveMatrixElement.cpp

示例5: jsSVGFEConvolveMatrixElementPrototypeFunctionGetPresentationAttribute

EncodedJSValue JSC_HOST_CALL jsSVGFEConvolveMatrixElementPrototypeFunctionGetPresentationAttribute(ExecState* exec)
{
    JSValue thisValue = exec->hostThisValue();
    if (!thisValue.inherits(&JSSVGFEConvolveMatrixElement::s_info))
        return throwVMTypeError(exec);
    JSSVGFEConvolveMatrixElement* castedThis = static_cast<JSSVGFEConvolveMatrixElement*>(asObject(thisValue));
    SVGFEConvolveMatrixElement* imp = static_cast<SVGFEConvolveMatrixElement*>(castedThis->impl());
    const String& name(ustringToString(exec->argument(0).toString(exec)));
    if (exec->hadException())
        return JSValue::encode(jsUndefined());


    JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->getPresentationAttribute(name)));
    return JSValue::encode(result);
}
开发者ID:13W,项目名称:phantomjs,代码行数:15,代码来源:JSSVGFEConvolveMatrixElement.cpp

示例6: styleAttrGetter

static v8::Handle<v8::Value> styleAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.SVGFEConvolveMatrixElement.style._get");
    SVGFEConvolveMatrixElement* imp = V8SVGFEConvolveMatrixElement::toNative(info.Holder());
    return toV8(imp->style());
}
开发者ID:Treeeater,项目名称:chrome_bindings,代码行数:6,代码来源:V8SVGFEConvolveMatrixElement.cpp


注:本文中的SVGFEConvolveMatrixElement类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。