• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ PY_STR函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: rndr_autolink

static int
rndr_autolink(struct buf *ob, const struct buf *link, enum mkd_autolink type, void *opaque)
{
    PyObject *is_email = Py_False;
    if (type == MKDA_EMAIL) {
        is_email = Py_True;
    }

    PROCESS_SPAN("autolink", PY_STR(link), is_email, NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:10,代码来源:wrapper.c


示例2: rndr_list

static void
rndr_list(struct buf *ob, const struct buf *text, int flags, void *opaque)
{
    PyObject *is_ordered = Py_False;
    if (flags & MKD_LIST_ORDERED) {
        is_ordered = Py_True;
    }

    PROCESS_BLOCK("list", PY_STR(text), is_ordered, NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:10,代码来源:wrapper.c


示例3: rndr_autolink

static int
rndr_autolink(hoedown_buffer *ob, const hoedown_buffer *link, hoedown_autolink_type type, const hoedown_renderer_data *data)
{
    PyObject *is_email = Py_False;
    if (type == HOEDOWN_AUTOLINK_EMAIL) {
        is_email = Py_True;
    }

    PROCESS_SPAN("autolink", PY_STR(link), is_email, NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:10,代码来源:wrapper.c


示例4: rndr_list

static void
rndr_list(hoedown_buffer *ob, const hoedown_buffer *text, hoedown_list_flags flags, const hoedown_renderer_data *data)
{
    PyObject *is_ordered = Py_False;
    if (flags & HOEDOWN_LIST_ORDERED) {
        is_ordered = Py_True;
    }

    PROCESS_BLOCK("list", PY_STR(text), is_ordered, NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:10,代码来源:wrapper.c


示例5: rndr_image

static int
rndr_image(struct buf *ob, const struct buf *link, const struct buf *title, const struct buf *alt, void *opaque)
{
    PROCESS_SPAN("image", PY_STR(link), PY_STR(title), PY_STR(alt), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例6: rndr_entity

static void
rndr_entity(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data)
{
    PROCESS_BLOCK("entity", PY_STR(text), NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:5,代码来源:wrapper.c


示例7: rndr_header

static void
rndr_header(struct buf *ob, const struct buf *text, int level, void *opaque)
{
    PROCESS_BLOCK("header", PY_STR(text), PY_INT(level), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例8: rndr_blockquote

static void
rndr_blockquote(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_BLOCK("block_quote", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例9: rndr_normal_text

static void
rndr_normal_text(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_BLOCK("normal_text", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例10: rndr_subscript

static int
rndr_subscript(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_SPAN("subscript", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例11: rndr_triple_emphasis

static int
rndr_triple_emphasis(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_SPAN("triple_emphasis", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例12: rndr_ins

static int
rndr_ins(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_SPAN("ins", PY_STR(text), NULL);
}
开发者ID:aleray,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例13: rndr_blockmath

static void
rndr_blockmath(struct buf *ob, const struct buf *math, void *opaque)
{
    PROCESS_BLOCK("block_math", PY_STR(math), NULL);
}
开发者ID:beingryu,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例14: rndr_header

static void
rndr_header(hoedown_buffer *ob, const hoedown_buffer *text, int level, const hoedown_renderer_data *data)
{
    PROCESS_BLOCK("header", PY_STR(text), PY_INT(level), NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:5,代码来源:wrapper.c


示例15: rndr_raw_block

static void
rndr_raw_block(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data)
{
    PROCESS_BLOCK("block_html", PY_STR(text), NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:5,代码来源:wrapper.c


示例16: rndr_blockcode

static void
rndr_blockcode(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_buffer *lang, const hoedown_renderer_data *data)
{
    PROCESS_BLOCK("block_code", PY_STR(text), PY_STR(lang), NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:5,代码来源:wrapper.c


示例17: rndr_normal_text

static void
rndr_normal_text(hoedown_buffer *ob, const hoedown_buffer *text, const hoedown_renderer_data *data)
{
    PROCESS_BLOCK("normal_text", PY_STR(text), NULL);
}
开发者ID:hhatto,项目名称:python-hoedown,代码行数:5,代码来源:wrapper.c


示例18: rndr_link

static int
rndr_link(struct buf *ob, const struct buf *link, const struct buf *title, const struct buf *content, void *opaque)
{
    PROCESS_SPAN("link", PY_STR(link), PY_STR(title), PY_STR(content), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例19: rndr_raw_html

static int
rndr_raw_html(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_SPAN("raw_html", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c


示例20: rndr_paragraph

static void
rndr_paragraph(struct buf *ob, const struct buf *text, void *opaque)
{
    PROCESS_BLOCK("paragraph", PY_STR(text), NULL);
}
开发者ID:altertain,项目名称:misaka,代码行数:5,代码来源:wrapper.c



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ PZ_Unlock函数代码示例发布时间:2022-05-30
下一篇:
C++ PYW_GIL_CHECK_LOCKED_SCOPE函数代码示例发布时间:2022-05-30
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap