#include "c4/yml/parse_engine.hpp"
#include "c4/charconv.hpp"
#include "c4/utf.hpp"
#include "c4/yml/filter_processor.hpp"
#include "c4/yml/tag.hpp"
#include "c4/yml/node_type.hpp"
#include "c4/yml/detail/dbgprint.hpp"
Go to the source code of this file.
◆ _c4err
Value: this->_err(RYML_LOC_HERE(), __VA_ARGS__)
Definition at line 34 of file parse_engine.def.hpp.
34#define _c4err(...) \
35 this->_err(RYML_LOC_HERE(), __VA_ARGS__)
◆ _c4assert
Value: RYML_ASSERT_PARSE_CB_(m_evt_handler->m_stack.m_callbacks, __VA_ARGS__, m_evt_handler->m_curr->pos)
Definition at line 37 of file parse_engine.def.hpp.
37#define _c4assert(...) \
38 RYML_ASSERT_PARSE_CB_(m_evt_handler->m_stack.m_callbacks, __VA_ARGS__, m_evt_handler->m_curr->pos)
◆ RYML_WITH_TAB_TOKENS_
| #define RYML_WITH_TAB_TOKENS_ |
( |
| ... | ) |
|
◆ RYML_WITHOUT_TAB_TOKENS_
| #define RYML_WITHOUT_TAB_TOKENS_ |
( |
| ... | ) |
|
◆ RYML_WITH_OR_WITHOUT_TAB_TOKENS_
| #define RYML_WITH_OR_WITHOUT_TAB_TOKENS_ |
( |
| with, |
|
|
| without ) |
◆ RYML_SAVE_TEST_YAML_
| #define RYML_SAVE_TEST_YAML_ |
( |
| filename, |
|
|
| src ) |
◆ RYML_SAVE_TEST_JSON_
| #define RYML_SAVE_TEST_JSON_ |
( |
| filename, |
|
|
| src ) |
◆ _c4dbgnextline
| #define _c4dbgnextline |
( |
| ) |
|
Value: do { \
_c4dbgq("\n-----------"); \
_c4dbgt("handling line={}, offset={}B", \
m_evt_handler->m_curr->pos.line, \
m_evt_handler->m_curr->pos.offset); \
} while(0)
Definition at line 68 of file parse_engine.def.hpp.
68#define _c4dbgnextline() \
69 do { \
70 _c4dbgq("\n-----------"); \
71 _c4dbgt("handling line={}, offset={}B", \
72 m_evt_handler->m_curr->pos.line, \
73 m_evt_handler->m_curr->pos.offset); \
74 } while(0)
◆ _ryml_relocate
| #define _ryml_relocate |
( |
| s | ) |
|
Value: if((s).str >= pb && (s).str <= pe) \
{ \
(s).str = next_arena.str + ((s).str - pb); \
} \
((void)0)