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


C++ SVGPathSegList::isEmpty方法代码示例

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


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

示例1: buildSVGPathByteStreamFromSVGPathSegList

bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList& list, SVGPathByteStream& result, PathParsingMode parsingMode)
{
    result.clear();
    if (list.isEmpty())
        return true;

    SVGPathSegListSource source(list);
    return SVGPathParser::parseToByteStream(source, result, parsingMode);
}
开发者ID:Comcast,项目名称:WebKitForWayland,代码行数:9,代码来源:SVGPathUtilities.cpp

示例2: buildStringFromSVGPathSegList

bool buildStringFromSVGPathSegList(const SVGPathSegList& list, String& result, PathParsingMode parsingMode)
{
    result = String();
    if (list.isEmpty())
        return true;

    SVGPathSegListSource source(list);
    return SVGPathParser::parseToString(source, result, parsingMode);
}
开发者ID:Comcast,项目名称:WebKitForWayland,代码行数:9,代码来源:SVGPathUtilities.cpp

示例3: buildStringFromSVGPathSegList

bool buildStringFromSVGPathSegList(const SVGPathSegList& list, String& result, PathParsingMode parsingMode)
{
    result = String();
    if (list.isEmpty())
        return true;

    SVGPathStringBuilder* builder = globalSVGPathStringBuilder();

    auto source = std::make_unique<SVGPathSegListSource>(list);
    SVGPathParser* parser = globalSVGPathParser(source.get(), builder);
    bool ok = parser->parsePathDataFromSource(parsingMode);
    result = builder->result();
    parser->cleanup();
    return ok;
}
开发者ID:clbr,项目名称:webkitfltk,代码行数:15,代码来源:SVGPathUtilities.cpp

示例4: buildSVGPathByteStreamFromSVGPathSegList

bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList& list, SVGPathByteStream* result, PathParsingMode parsingMode)
{
    ASSERT(result);
    result->clear();
    if (list.isEmpty())
        return true;

    SVGPathByteStreamBuilder* builder = globalSVGPathByteStreamBuilder(result);

    auto source = std::make_unique<SVGPathSegListSource>(list);
    SVGPathParser* parser = globalSVGPathParser(source.get(), builder);
    bool ok = parser->parsePathDataFromSource(parsingMode);
    parser->cleanup();
    return ok;
}
开发者ID:clbr,项目名称:webkitfltk,代码行数:15,代码来源:SVGPathUtilities.cpp

示例5: buildStringFromSVGPathSegList

bool buildStringFromSVGPathSegList(const SVGPathSegList& list, String& result, PathParsingMode parsingMode)
{
    result = String();
    if (list.isEmpty())
        return false;

    SVGPathStringBuilder* builder = globalSVGPathStringBuilder();

    OwnPtr<SVGPathSegListSource> source = SVGPathSegListSource::create(list);
    SVGPathParser* parser = globalSVGPathParser(source.get(), builder);
    bool ok = parser->parsePathDataFromSource(parsingMode);
    result = builder->result();
    parser->cleanup();
    return ok;
}
开发者ID:Tkkg1994,项目名称:Platfrom-kccat6,代码行数:15,代码来源:SVGPathUtilities.cpp


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