X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/blobdiff_plain/0044e680dc24577d2b91cbbf287a2183461e9b80..HEAD:/doc/html/group__events.html diff --git a/doc/html/group__events.html b/doc/html/group__events.html index 56def9a..ab27d83 100644 --- a/doc/html/group__events.html +++ b/doc/html/group__events.html @@ -3,7 +3,8 @@ - + + yaml: Events @@ -16,9 +17,9 @@ - @@ -26,15 +27,16 @@
+
yaml -  0.1.7 +  0.2.2
- - + + + + +
@@ -50,86 +52,88 @@

Data Structures

struct  yaml_event_s - The event structure. More...
+ The event structure. More...
  - + - +

Typedefs

typedef enum yaml_event_type_e yaml_event_type_t
 Event types. More...
 Event types. More...
 
typedef struct yaml_event_s yaml_event_t
 The event structure. More...
 The event structure. More...
 
- - +

Enumerations

enum  yaml_event_type_e {
+
enum  yaml_event_type_e {
  YAML_NO_EVENT, -
+
  YAML_STREAM_START_EVENT, -
+
  YAML_STREAM_END_EVENT, -
+
  YAML_DOCUMENT_START_EVENT, -
+
  YAML_DOCUMENT_END_EVENT, -
+
  YAML_ALIAS_EVENT, -
+
  YAML_SCALAR_EVENT, -
+
  YAML_SEQUENCE_START_EVENT, -
+
  YAML_SEQUENCE_END_EVENT, -
+
  YAML_MAPPING_START_EVENT, -
+
  YAML_MAPPING_END_EVENT -
+
}
 Event types. More...
 Event types. More...
 
- + - + - + - + - + - + - + - + - + - + - +

Functions

int yaml_stream_start_event_initialize (yaml_event_t *event, yaml_encoding_t encoding)
 Create the STREAM-START event. More...
 Create the STREAM-START event. More...
 
int yaml_stream_end_event_initialize (yaml_event_t *event)
 Create the STREAM-END event. More...
 Create the STREAM-END event. More...
 
int 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)
 Create the DOCUMENT-START event. More...
 Create the DOCUMENT-START event. More...
 
int yaml_document_end_event_initialize (yaml_event_t *event, int implicit)
 Create the DOCUMENT-END event. More...
 Create the DOCUMENT-END event. More...
 
int yaml_alias_event_initialize (yaml_event_t *event, yaml_char_t *anchor)
 Create an ALIAS event. More...
 Create an ALIAS event. More...
 
int 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)
 Create a SCALAR event. More...
 Create a SCALAR event. More...
 
int yaml_sequence_start_event_initialize (yaml_event_t *event, yaml_char_t *anchor, yaml_char_t *tag, int implicit, yaml_sequence_style_t style)
 Create a SEQUENCE-START event. More...
 Create a SEQUENCE-START event. More...
 
int yaml_sequence_end_event_initialize (yaml_event_t *event)
 Create a SEQUENCE-END event. More...
 Create a SEQUENCE-END event. More...
 
int yaml_mapping_start_event_initialize (yaml_event_t *event, yaml_char_t *anchor, yaml_char_t *tag, int implicit, yaml_mapping_style_t style)
 Create a MAPPING-START event. More...
 Create a MAPPING-START event. More...
 
int yaml_mapping_end_event_initialize (yaml_event_t *event)
 Create a MAPPING-END event. More...
 Create a MAPPING-END event. More...
 
void yaml_event_delete (yaml_event_t *event)
 Free any memory allocated for an event object. More...
 Free any memory allocated for an event object. More...
 

Detailed Description

Typedef Documentation

- + +

◆ yaml_event_type_t

+
@@ -143,7 +147,9 @@ Functions - + +

◆ yaml_event_t

+
@@ -158,7 +164,9 @@ Functions

Enumeration Type Documentation

- + +

◆ yaml_event_type_e

+
@@ -170,45 +178,36 @@ Functions

Event types.

- - - - - - - - - - -
Enumerator
YAML_NO_EVENT  -

An empty event.

+
Enumerator
YAML_NO_EVENT 

An empty event.

YAML_STREAM_START_EVENT  -

A STREAM-START event.

+
YAML_STREAM_START_EVENT 

A STREAM-START event.

YAML_STREAM_END_EVENT  -

A STREAM-END event.

+
YAML_STREAM_END_EVENT 

A STREAM-END event.

YAML_DOCUMENT_START_EVENT  -

A DOCUMENT-START event.

+
YAML_DOCUMENT_START_EVENT 

A DOCUMENT-START event.

YAML_DOCUMENT_END_EVENT  -

A DOCUMENT-END event.

+
YAML_DOCUMENT_END_EVENT 

A DOCUMENT-END event.

YAML_ALIAS_EVENT  -

An ALIAS event.

+
YAML_ALIAS_EVENT 

An ALIAS event.

YAML_SCALAR_EVENT  -

A SCALAR event.

+
YAML_SCALAR_EVENT 

A SCALAR event.

YAML_SEQUENCE_START_EVENT  -

A SEQUENCE-START event.

+
YAML_SEQUENCE_START_EVENT 

A SEQUENCE-START event.

YAML_SEQUENCE_END_EVENT  -

A SEQUENCE-END event.

+
YAML_SEQUENCE_END_EVENT 

A SEQUENCE-END event.

YAML_MAPPING_START_EVENT  -

A MAPPING-START event.

+
YAML_MAPPING_START_EVENT 

A MAPPING-START event.

YAML_MAPPING_END_EVENT  -

A MAPPING-END event.

+
YAML_MAPPING_END_EVENT 

A MAPPING-END event.

Function Documentation

- + +

◆ yaml_stream_start_event_initialize()

+
@@ -244,7 +243,9 @@ Functions - + +

◆ yaml_stream_end_event_initialize()

+
@@ -269,7 +270,9 @@ Functions - + +

◆ yaml_document_start_event_initialize()

+
@@ -327,7 +330,9 @@ Functions - + +

◆ yaml_document_end_event_initialize()

+
@@ -364,7 +369,9 @@ Functions - + +

◆ yaml_alias_event_initialize()

+
@@ -400,7 +407,9 @@ Functions - + +

◆ yaml_scalar_event_initialize()

+
@@ -480,7 +489,9 @@ Functions - + +

◆ yaml_sequence_start_event_initialize()

+
@@ -539,7 +550,9 @@ Functions - + +

◆ yaml_sequence_end_event_initialize()

+
@@ -564,7 +577,9 @@ Functions - + +

◆ yaml_mapping_start_event_initialize()

+
@@ -623,7 +638,9 @@ Functions - + +

◆ yaml_mapping_end_event_initialize()

+
@@ -648,7 +665,9 @@ Functions - + +

◆ yaml_event_delete()

+
@@ -675,9 +694,9 @@ Functions