Go to the source code of this file.
◆ CACHE
| #define CACHE |
( |
|
parser, |
|
|
|
length |
|
) |
| |
Value:(parser->unread >= (length) \
? 1 \
yaml_parser_update_buffer(yaml_parser_t *parser, size_t length)
Definition at line 486 of file ymlScanner.c.
◆ SKIP
Value:(parser->mark.index ++, \
parser->mark.column ++, \
parser->unread --, \
parser->buffer.pointer +=
WIDTH(parser->buffer))
Definition at line 495 of file ymlScanner.c.
◆ SKIP_LINE
| #define SKIP_LINE |
( |
|
parser | ) |
|
Value: (parser->mark.index += 2, \
parser->mark.column = 0, \
parser->mark.line ++, \
parser->unread -= 2, \
parser->buffer.pointer += 2) : \
(parser->mark.index ++, \
parser->mark.column = 0, \
parser->mark.line ++, \
parser->unread --, \
parser->buffer.pointer +=
WIDTH(parser->buffer)) : 0)
Definition at line 501 of file ymlScanner.c.
◆ READ
| #define READ |
( |
|
parser, |
|
|
|
string |
|
) |
| |
Value: (
COPY(
string,parser->buffer), \
parser->mark.index ++, \
parser->mark.column ++, \
parser->unread --, \
1) : 0)
#define COPY(string_a, string_b)
#define STRING_EXTEND(context, string)
Definition at line 519 of file ymlScanner.c.
◆ READ_LINE
| #define READ_LINE |
( |
|
parser, |
|
|
|
string |
|
) |
| |
◆ MAX_NUMBER_LENGTH
| #define MAX_NUMBER_LENGTH 9 |
◆ yaml_parser_fetch_more_tokens()