您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ yaml_check_utf8函数代码示例

51自学网 2021-06-03 11:54:28
  C++
这篇教程C++ yaml_check_utf8函数代码示例写得很实用,希望能帮到您。

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

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

示例1: yaml_mapping_start_event_initialize

yaml_mapping_start_event_initialize(yaml_event_t *event,        yaml_char_t *anchor, yaml_char_t *tag, int implicit,        yaml_mapping_style_t style){    yaml_mark_t mark = { 0, 0, 0 };    yaml_char_t *anchor_copy = NULL;    yaml_char_t *tag_copy = NULL;    assert(event);      /* Non-NULL event object is expected. */    if (anchor) {        if (!yaml_check_utf8(anchor, strlen((char *)anchor))) goto error;        anchor_copy = yaml_strdup(anchor);        if (!anchor_copy) goto error;    }    if (tag) {        if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error;        tag_copy = yaml_strdup(tag);        if (!tag_copy) goto error;    }    MAPPING_START_EVENT_INIT(*event, anchor_copy, tag_copy,            implicit, style, mark, mark);    return 1;error:    yaml_free(anchor_copy);    yaml_free(tag_copy);    return 0;}
开发者ID:Dar13,项目名称:lightship,代码行数:33,


示例2: yaml_scalar_event_initialize

yaml_scalar_event_initialize(yaml_event_t *event,        yaml_char_t *anchor, yaml_char_t *tag,        yaml_char_t *value, int length,        int plain_implicit, int quoted_implicit,        yaml_scalar_style_t style){    yaml_mark_t mark = { 0, 0, 0 };    yaml_char_t *anchor_copy = NULL;    yaml_char_t *tag_copy = NULL;    yaml_char_t *value_copy = NULL;    assert(event);      /* Non-NULL event object is expected. */    /* following line added for Haskell yaml library */    if (!value && !length) value = "";    assert(value);      /* Non-NULL anchor is expected. */    if (anchor) {        if (!yaml_check_utf8(anchor, strlen((char *)anchor))) goto error;        anchor_copy = yaml_strdup(anchor);        if (!anchor_copy) goto error;    }    if (tag) {        if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error;        tag_copy = yaml_strdup(tag);        if (!tag_copy) goto error;    }    if (length < 0) {        length = strlen((char *)value);    }    if (!yaml_check_utf8(value, length)) goto error;    value_copy = yaml_malloc(length+1);    if (!value_copy) goto error;    memcpy(value_copy, value, length);    value_copy[length] = '/0';    SCALAR_EVENT_INIT(*event, anchor_copy, tag_copy, value_copy, length,            plain_implicit, quoted_implicit, style, mark, mark);    return 1;error:    yaml_free(anchor_copy);    yaml_free(tag_copy);    yaml_free(value_copy);    return 0;}
开发者ID:Heather,项目名称:yaml,代码行数:50,


示例3: yaml_document_add_scalar

yaml_document_add_scalar(yaml_document_t *document,        yaml_char_t *tag, yaml_char_t *value, int length,        yaml_scalar_style_t style){    struct {        yaml_error_type_t error;    } context;    yaml_mark_t mark = { 0, 0, 0 };    yaml_char_t *tag_copy = NULL;    yaml_char_t *value_copy = NULL;    yaml_node_t node;    assert(document);   /* Non-NULL document object is expected. */    assert(value);      /* Non-NULL value is expected. */    if (!tag) {        tag = (yaml_char_t *)YAML_DEFAULT_SCALAR_TAG;    }    if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error;    tag_copy = yaml_strdup(tag);    if (!tag_copy) goto error;    if (length < 0) {        length = strlen((char *)value);    }    if (!yaml_check_utf8(value, length)) goto error;    value_copy = yaml_malloc(length+1);    if (!value_copy) goto error;    memcpy(value_copy, value, length);    value_copy[length] = '/0';    SCALAR_NODE_INIT(node, tag_copy, value_copy, length, style, mark, mark);    if (!PUSH(&context, document->nodes, node)) goto error;    return document->nodes.top - document->nodes.start;error:    yaml_free(tag_copy);    yaml_free(value_copy);    return 0;}
开发者ID:Dar13,项目名称:lightship,代码行数:44,


示例4: yaml_alias_event_initialize

yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor){    yaml_mark_t mark = { 0, 0, 0 };    yaml_char_t *anchor_copy = NULL;    assert(event);      /* Non-NULL event object is expected. */    assert(anchor);     /* Non-NULL anchor is expected. */    if (!yaml_check_utf8(anchor, strlen((char *)anchor))) return 0;    anchor_copy = yaml_strdup(anchor);    if (!anchor_copy)        return 0;    ALIAS_EVENT_INIT(*event, anchor_copy, mark, mark);    return 1;}
开发者ID:Dar13,项目名称:lightship,代码行数:18,


示例5: yaml_document_add_mapping

yaml_document_add_mapping(yaml_document_t *document,        yaml_char_t *tag, yaml_mapping_style_t style){    struct {        yaml_error_type_t error;    } context;    yaml_mark_t mark = { 0, 0, 0 };    yaml_char_t *tag_copy = NULL;    struct {        yaml_node_pair_t *start;        yaml_node_pair_t *end;        yaml_node_pair_t *top;    } pairs = { NULL, NULL, NULL };    yaml_node_t node;    assert(document);   /* Non-NULL document object is expected. */    if (!tag) {        tag = (yaml_char_t *)YAML_DEFAULT_MAPPING_TAG;    }    if (!yaml_check_utf8(tag, strlen((char *)tag))) goto error;    tag_copy = yaml_strdup(tag);    if (!tag_copy) goto error;    if (!STACK_INIT(&context, pairs, INITIAL_STACK_SIZE)) goto error;    MAPPING_NODE_INIT(node, tag_copy, pairs.start, pairs.end,            style, mark, mark);    if (!PUSH(&context, document->nodes, node)) goto error;    return document->nodes.top - document->nodes.start;error:    STACK_DEL(&context, pairs);    yaml_free(tag_copy);    return 0;}
开发者ID:Dar13,项目名称:lightship,代码行数:39,


示例6: yaml_document_start_event_initialize

yaml_document_start_event_initialize(yaml_event_t *event,        yaml_version_directive_t *version_directive,        yaml_tag_directive_t *tag_directives_start,        yaml_tag_directive_t *tag_directives_end,        int implicit){    struct {        yaml_error_type_t error;    } context;    yaml_mark_t mark = { 0, 0, 0 };    yaml_version_directive_t *version_directive_copy = NULL;    struct {        yaml_tag_directive_t *start;        yaml_tag_directive_t *end;        yaml_tag_directive_t *top;    } tag_directives_copy = { NULL, NULL, NULL };    yaml_tag_directive_t value = { NULL, NULL };    assert(event);          /* Non-NULL event object is expected. */    assert((tag_directives_start && tag_directives_end) ||            (tag_directives_start == tag_directives_end));                            /* Valid tag directives are expected. */    if (version_directive) {        version_directive_copy = yaml_malloc(sizeof(yaml_version_directive_t));        if (!version_directive_copy) goto error;        version_directive_copy->major = version_directive->major;        version_directive_copy->minor = version_directive->minor;    }    if (tag_directives_start != tag_directives_end) {        yaml_tag_directive_t *tag_directive;        if (!STACK_INIT(&context, tag_directives_copy, INITIAL_STACK_SIZE))            goto error;        for (tag_directive = tag_directives_start;                tag_directive != tag_directives_end; tag_directive ++) {            assert(tag_directive->handle);            assert(tag_directive->prefix);            if (!yaml_check_utf8(tag_directive->handle,                        strlen((char *)tag_directive->handle)))                goto error;            if (!yaml_check_utf8(tag_directive->prefix,                        strlen((char *)tag_directive->prefix)))                goto error;            value.handle = yaml_strdup(tag_directive->handle);            value.prefix = yaml_strdup(tag_directive->prefix);            if (!value.handle || !value.prefix) goto error;            if (!PUSH(&context, tag_directives_copy, value))                goto error;            value.handle = NULL;            value.prefix = NULL;        }    }    DOCUMENT_START_EVENT_INIT(*event, version_directive_copy,            tag_directives_copy.start, tag_directives_copy.top,            implicit, mark, mark);    return 1;error:    yaml_free(version_directive_copy);    while (!STACK_EMPTY(context, tag_directives_copy)) {        yaml_tag_directive_t value = POP(context, tag_directives_copy);        yaml_free(value.handle);        yaml_free(value.prefix);    }    STACK_DEL(context, tag_directives_copy);    yaml_free(value.handle);    yaml_free(value.prefix);    return 0;}
开发者ID:Dar13,项目名称:lightship,代码行数:73,



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


C++ yaml_free函数代码示例
C++ yajl_parse函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。