| |
| #line 3 "parser_yang_lex.c" |
| |
| #define YY_INT_ALIGNED short int |
| |
| /* A lexical scanner generated by flex */ |
| |
| #define FLEX_SCANNER |
| #define YY_FLEX_MAJOR_VERSION 2 |
| #define YY_FLEX_MINOR_VERSION 6 |
| #define YY_FLEX_SUBMINOR_VERSION 0 |
| #if YY_FLEX_SUBMINOR_VERSION > 0 |
| #define FLEX_BETA |
| #endif |
| |
| /* First, we deal with platform-specific or compiler-specific issues. */ |
| |
| /* begin standard C headers. */ |
| #include <stdio.h> |
| #include <string.h> |
| #include <errno.h> |
| #include <stdlib.h> |
| |
| /* end standard C headers. */ |
| |
| /* flex integer type definitions */ |
| |
| #ifndef FLEXINT_H |
| #define FLEXINT_H |
| |
| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */ |
| |
| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L |
| |
| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, |
| * if you want the limit (max/min) macros for int types. |
| */ |
| #ifndef __STDC_LIMIT_MACROS |
| #define __STDC_LIMIT_MACROS 1 |
| #endif |
| |
| #include <inttypes.h> |
| typedef int8_t flex_int8_t; |
| typedef uint8_t flex_uint8_t; |
| typedef int16_t flex_int16_t; |
| typedef uint16_t flex_uint16_t; |
| typedef int32_t flex_int32_t; |
| typedef uint32_t flex_uint32_t; |
| #else |
| typedef signed char flex_int8_t; |
| typedef short int flex_int16_t; |
| typedef int flex_int32_t; |
| typedef unsigned char flex_uint8_t; |
| typedef unsigned short int flex_uint16_t; |
| typedef unsigned int flex_uint32_t; |
| |
| /* Limits of integral types. */ |
| #ifndef INT8_MIN |
| #define INT8_MIN (-128) |
| #endif |
| #ifndef INT16_MIN |
| #define INT16_MIN (-32767-1) |
| #endif |
| #ifndef INT32_MIN |
| #define INT32_MIN (-2147483647-1) |
| #endif |
| #ifndef INT8_MAX |
| #define INT8_MAX (127) |
| #endif |
| #ifndef INT16_MAX |
| #define INT16_MAX (32767) |
| #endif |
| #ifndef INT32_MAX |
| #define INT32_MAX (2147483647) |
| #endif |
| #ifndef UINT8_MAX |
| #define UINT8_MAX (255U) |
| #endif |
| #ifndef UINT16_MAX |
| #define UINT16_MAX (65535U) |
| #endif |
| #ifndef UINT32_MAX |
| #define UINT32_MAX (4294967295U) |
| #endif |
| |
| #endif /* ! C99 */ |
| |
| #endif /* ! FLEXINT_H */ |
| |
| #ifdef __cplusplus |
| |
| /* The "const" storage-class-modifier is valid. */ |
| #define YY_USE_CONST |
| |
| #else /* ! __cplusplus */ |
| |
| /* C99 requires __STDC__ to be defined as 1. */ |
| #if defined (__STDC__) |
| |
| #define YY_USE_CONST |
| |
| #endif /* defined (__STDC__) */ |
| #endif /* ! __cplusplus */ |
| |
| #ifdef YY_USE_CONST |
| #define yyconst const |
| #else |
| #define yyconst |
| #endif |
| |
| /* Returned upon end-of-file. */ |
| #define YY_NULL 0 |
| |
| /* Promotes a possibly negative, possibly signed char to an unsigned |
| * integer for use as an array index. If the signed char is negative, |
| * we want to instead treat it as an 8-bit unsigned char, hence the |
| * double cast. |
| */ |
| #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) |
| |
| /* An opaque pointer. */ |
| #ifndef YY_TYPEDEF_YY_SCANNER_T |
| #define YY_TYPEDEF_YY_SCANNER_T |
| typedef void* yyscan_t; |
| #endif |
| |
| /* For convenience, these vars (plus the bison vars far below) |
| are macros in the reentrant scanner. */ |
| #define yyin yyg->yyin_r |
| #define yyout yyg->yyout_r |
| #define yyextra yyg->yyextra_r |
| #define yyleng yyg->yyleng_r |
| #define yytext yyg->yytext_r |
| #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) |
| #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) |
| #define yy_flex_debug yyg->yy_flex_debug_r |
| |
| /* Enter a start condition. This macro really ought to take a parameter, |
| * but we do it the disgusting crufty way forced on us by the ()-less |
| * definition of BEGIN. |
| */ |
| #define BEGIN yyg->yy_start = 1 + 2 * |
| |
| /* Translate the current start state into a value that can be later handed |
| * to BEGIN to return to the state. The YYSTATE alias is for lex |
| * compatibility. |
| */ |
| #define YY_START ((yyg->yy_start - 1) / 2) |
| #define YYSTATE YY_START |
| |
| /* Action number for EOF rule of a given start state. */ |
| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) |
| |
| /* Special action meaning "start processing a new file". */ |
| #define YY_NEW_FILE yyrestart(yyin ,yyscanner ) |
| |
| #define YY_END_OF_BUFFER_CHAR 0 |
| |
| /* Size of default input buffer. */ |
| #ifndef YY_BUF_SIZE |
| #ifdef __ia64__ |
| /* On IA-64, the buffer size is 16k, not 8k. |
| * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. |
| * Ditto for the __ia64__ case accordingly. |
| */ |
| #define YY_BUF_SIZE 32768 |
| #else |
| #define YY_BUF_SIZE 16384 |
| #endif /* __ia64__ */ |
| #endif |
| |
| /* The state buf must be large enough to hold one state per character in the main buffer. |
| */ |
| #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) |
| |
| #ifndef YY_TYPEDEF_YY_BUFFER_STATE |
| #define YY_TYPEDEF_YY_BUFFER_STATE |
| typedef struct yy_buffer_state *YY_BUFFER_STATE; |
| #endif |
| |
| #ifndef YY_TYPEDEF_YY_SIZE_T |
| #define YY_TYPEDEF_YY_SIZE_T |
| typedef size_t yy_size_t; |
| #endif |
| |
| #define EOB_ACT_CONTINUE_SCAN 0 |
| #define EOB_ACT_END_OF_FILE 1 |
| #define EOB_ACT_LAST_MATCH 2 |
| |
| #define YY_LESS_LINENO(n) |
| #define YY_LINENO_REWIND_TO(ptr) |
| |
| /* Return all but the first "n" matched characters back to the input stream. */ |
| #define yyless(n) \ |
| do \ |
| { \ |
| /* Undo effects of setting up yytext. */ \ |
| yy_size_t yyless_macro_arg = (n); \ |
| YY_LESS_LINENO(yyless_macro_arg);\ |
| *yy_cp = yyg->yy_hold_char; \ |
| YY_RESTORE_YY_MORE_OFFSET \ |
| yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ |
| YY_DO_BEFORE_ACTION; /* set up yytext again */ \ |
| } \ |
| while ( 0 ) |
| |
| #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) |
| |
| #ifndef YY_STRUCT_YY_BUFFER_STATE |
| #define YY_STRUCT_YY_BUFFER_STATE |
| struct yy_buffer_state |
| { |
| FILE *yy_input_file; |
| |
| char *yy_ch_buf; /* input buffer */ |
| char *yy_buf_pos; /* current position in input buffer */ |
| |
| /* Size of input buffer in bytes, not including room for EOB |
| * characters. |
| */ |
| yy_size_t yy_buf_size; |
| |
| /* Number of characters read into yy_ch_buf, not including EOB |
| * characters. |
| */ |
| yy_size_t yy_n_chars; |
| |
| /* Whether we "own" the buffer - i.e., we know we created it, |
| * and can realloc() it to grow it, and should free() it to |
| * delete it. |
| */ |
| int yy_is_our_buffer; |
| |
| /* Whether this is an "interactive" input source; if so, and |
| * if we're using stdio for input, then we want to use getc() |
| * instead of fread(), to make sure we stop fetching input after |
| * each newline. |
| */ |
| int yy_is_interactive; |
| |
| /* Whether we're considered to be at the beginning of a line. |
| * If so, '^' rules will be active on the next match, otherwise |
| * not. |
| */ |
| int yy_at_bol; |
| |
| int yy_bs_lineno; /**< The line count. */ |
| int yy_bs_column; /**< The column count. */ |
| |
| /* Whether to try to fill the input buffer when we reach the |
| * end of it. |
| */ |
| int yy_fill_buffer; |
| |
| int yy_buffer_status; |
| |
| #define YY_BUFFER_NEW 0 |
| #define YY_BUFFER_NORMAL 1 |
| /* When an EOF's been seen but there's still some text to process |
| * then we mark the buffer as YY_EOF_PENDING, to indicate that we |
| * shouldn't try reading from the input source any more. We might |
| * still have a bunch of tokens to match, though, because of |
| * possible backing-up. |
| * |
| * When we actually see the EOF, we change the status to "new" |
| * (via yyrestart()), so that the user can continue scanning by |
| * just pointing yyin at a new input file. |
| */ |
| #define YY_BUFFER_EOF_PENDING 2 |
| |
| }; |
| #endif /* !YY_STRUCT_YY_BUFFER_STATE */ |
| |
| /* We provide macros for accessing buffer states in case in the |
| * future we want to put the buffer states in a more general |
| * "scanner state". |
| * |
| * Returns the top of the stack, or NULL. |
| */ |
| #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ |
| ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ |
| : NULL) |
| |
| /* Same as previous macro, but useful when we know that the buffer stack is not |
| * NULL or when we need an lvalue. For internal use only. |
| */ |
| #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] |
| |
| void yyrestart (FILE *input_file ,yyscan_t yyscanner ); |
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); |
| YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); |
| void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); |
| void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); |
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); |
| void yypop_buffer_state (yyscan_t yyscanner ); |
| |
| static void yyensure_buffer_stack (yyscan_t yyscanner ); |
| static void yy_load_buffer_state (yyscan_t yyscanner ); |
| static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner ); |
| |
| #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner) |
| |
| YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); |
| YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); |
| YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner ); |
| |
| void *yyalloc (yy_size_t ,yyscan_t yyscanner ); |
| void *yyrealloc (void *,yy_size_t ,yyscan_t yyscanner ); |
| void yyfree (void * ,yyscan_t yyscanner ); |
| |
| #define yy_new_buffer yy_create_buffer |
| |
| #define yy_set_interactive(is_interactive) \ |
| { \ |
| if ( ! YY_CURRENT_BUFFER ){ \ |
| yyensure_buffer_stack (yyscanner); \ |
| YY_CURRENT_BUFFER_LVALUE = \ |
| yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ |
| } \ |
| YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ |
| } |
| |
| #define yy_set_bol(at_bol) \ |
| { \ |
| if ( ! YY_CURRENT_BUFFER ){\ |
| yyensure_buffer_stack (yyscanner); \ |
| YY_CURRENT_BUFFER_LVALUE = \ |
| yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ |
| } \ |
| YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ |
| } |
| |
| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) |
| |
| /* Begin user sect3 */ |
| |
| #define yywrap(yyscanner) (/*CONSTCOND*/1) |
| #define YY_SKIP_YYWRAP |
| |
| typedef unsigned char YY_CHAR; |
| |
| typedef int yy_state_type; |
| |
| #define yytext_ptr yytext_r |
| |
| static yy_state_type yy_get_previous_state (yyscan_t yyscanner ); |
| static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner); |
| static int yy_get_next_buffer (yyscan_t yyscanner ); |
| #if defined(__GNUC__) && __GNUC__ >= 3 |
| __attribute__((__noreturn__)) |
| #endif |
| static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner ); |
| |
| /* Done after the current pattern has been matched and before the |
| * corresponding action - sets up yytext. |
| */ |
| #define YY_DO_BEFORE_ACTION \ |
| yyg->yytext_ptr = yy_bp; \ |
| yyleng = (size_t) (yy_cp - yy_bp); \ |
| yyg->yy_hold_char = *yy_cp; \ |
| *yy_cp = '\0'; \ |
| yyg->yy_c_buf_p = yy_cp; |
| |
| #define YY_NUM_RULES 123 |
| #define YY_END_OF_BUFFER 124 |
| /* This struct is not used in this scanner, |
| but its presence is necessary. */ |
| struct yy_trans_info |
| { |
| flex_int32_t yy_verify; |
| flex_int32_t yy_nxt; |
| }; |
| static yyconst flex_int16_t yy_accept[570] = |
| { 0, |
| 0, 0, 0, 0, 0, 0, 0, 0, 124, 122, |
| 121, 119, 122, 118, 122, 122, 90, 118, 118, 93, |
| 95, 89, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 87, 88, 2, 3, 2, 6, |
| 7, 6, 123, 106, 104, 123, 123, 123, 100, 101, |
| 102, 123, 96, 107, 99, 113, 97, 98, 113, 108, |
| 121, 120, 118, 0, 0, 91, 0, 0, 92, 94, |
| 1, 5, 118, 95, 116, 118, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 4, 8, |
| 106, 105, 0, 0, 109, 0, 0, 110, 103, 112, |
| 111, 113, 0, 113, 94, 118, 95, 117, 74, 116, |
| 116, 116, 116, 116, 14, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 36, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 62, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 114, 113, 118, 95, 117, 116, 116, 116, |
| 12, 116, 15, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 22, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 37, 116, 40, 116, 116, 116, |
| 116, 45, 116, 116, 116, 116, 116, 116, 116, 51, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 84, 65, 116, 116, 116, 86, 69, |
| 116, 71, 116, 116, 114, 113, 118, 95, 116, 116, |
| |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 79, 116, 116, 116, 116, 116, 116, |
| 116, 35, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 56, |
| 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 68, 70, 116, 116, 113, 118, 9, 116, 116, |
| 116, 16, 17, 116, 116, 116, 116, 77, 116, 116, |
| 116, 116, 116, 116, 116, 116, 116, 116, 33, 116, |
| 116, 39, 116, 116, 116, 44, 116, 116, 116, 116, |
| 116, 116, 50, 116, 116, 54, 116, 116, 58, 116, |
| |
| 116, 116, 63, 116, 83, 116, 116, 67, 116, 116, |
| 113, 118, 116, 11, 116, 18, 116, 75, 20, 116, |
| 116, 27, 116, 116, 116, 116, 28, 116, 116, 116, |
| 116, 34, 116, 116, 116, 116, 116, 116, 116, 116, |
| 116, 116, 52, 116, 116, 116, 82, 116, 116, 116, |
| 66, 116, 116, 116, 76, 118, 10, 116, 116, 116, |
| 116, 116, 116, 116, 116, 116, 30, 31, 116, 116, |
| 116, 116, 116, 116, 116, 116, 81, 116, 116, 53, |
| 55, 116, 116, 60, 116, 116, 116, 116, 118, 116, |
| 19, 116, 116, 26, 116, 116, 25, 116, 116, 38, |
| |
| 41, 116, 116, 46, 116, 116, 116, 116, 57, 116, |
| 116, 64, 85, 116, 116, 115, 13, 78, 116, 116, |
| 116, 116, 32, 116, 116, 116, 116, 48, 116, 116, |
| 116, 116, 116, 21, 116, 116, 116, 116, 116, 116, |
| 116, 116, 116, 116, 116, 73, 116, 116, 116, 42, |
| 43, 116, 47, 49, 116, 116, 72, 23, 24, 116, |
| 80, 116, 61, 116, 116, 29, 116, 59, 0 |
| } ; |
| |
| static yyconst YY_CHAR yy_ec[256] = |
| { 0, |
| 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, |
| 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 2, 5, 6, 5, 5, 5, 5, 7, 8, |
| 9, 10, 11, 5, 12, 13, 14, 15, 16, 16, |
| 16, 16, 16, 16, 16, 16, 16, 17, 18, 5, |
| 19, 5, 5, 5, 20, 20, 20, 20, 20, 20, |
| 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, |
| 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, |
| 21, 22, 23, 5, 20, 5, 24, 25, 26, 27, |
| |
| 28, 29, 30, 31, 32, 20, 33, 34, 35, 36, |
| 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, |
| 47, 48, 49, 5, 50, 5, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1 |
| } ; |
| |
| static yyconst YY_CHAR yy_meta[51] = |
| { 0, |
| 1, 2, 2, 2, 3, 2, 2, 3, 3, 3, |
| 3, 4, 4, 3, 4, 4, 5, 2, 3, 6, |
| 3, 2, 3, 6, 6, 6, 6, 6, 6, 6, |
| 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, |
| 6, 6, 6, 6, 6, 6, 6, 6, 2, 2 |
| } ; |
| |
| static yyconst flex_uint16_t yy_base[583] = |
| { 0, |
| 0, 0, 48, 49, 50, 52, 59, 0, 342, 3202, |
| 338, 3202, 333, 0, 106, 107, 0, 298, 103, 100, |
| 103, 3202, 115, 134, 122, 132, 151, 140, 157, 162, |
| 172, 182, 192, 202, 213, 219, 224, 230, 236, 244, |
| 254, 187, 262, 272, 3202, 3202, 3202, 3202, 289, 3202, |
| 3202, 298, 3202, 290, 3202, 279, 124, 133, 3202, 3202, |
| 3202, 264, 117, 3202, 3202, 248, 3202, 3202, 104, 3202, |
| 250, 3202, 0, 129, 244, 3202, 188, 240, 3202, 188, |
| 0, 0, 201, 259, 273, 312, 303, 305, 317, 328, |
| 329, 339, 347, 357, 359, 365, 367, 384, 390, 396, |
| |
| 402, 407, 413, 424, 425, 430, 442, 436, 454, 448, |
| 462, 460, 472, 477, 483, 489, 500, 506, 511, 501, |
| 523, 528, 533, 550, 545, 553, 569, 574, 575, 580, |
| 586, 592, 606, 612, 607, 617, 627, 629, 3202, 3202, |
| 239, 3202, 160, 218, 3202, 229, 185, 3202, 3202, 3202, |
| 3202, 165, 0, 156, 270, 291, 295, 668, 654, 656, |
| 668, 674, 679, 689, 691, 708, 706, 714, 725, 731, |
| 736, 726, 751, 753, 763, 765, 782, 780, 788, 800, |
| 802, 808, 810, 820, 825, 831, 837, 843, 848, 854, |
| 849, 875, 881, 873, 883, 900, 902, 910, 921, 927, |
| |
| 933, 941, 953, 347, 952, 970, 978, 951, 984, 990, |
| 992, 1002, 1004, 1021, 1023, 1031, 1033, 1043, 1051, 1053, |
| 1065, 1070, 0, 173, 159, 322, 1109, 1098, 1100, 1117, |
| 1112, 1122, 1123, 1141, 1142, 1152, 1162, 1160, 1170, 1180, |
| 1182, 1190, 1188, 1200, 1202, 1219, 1208, 1214, 1225, 1231, |
| 1242, 1248, 1250, 1256, 1267, 1273, 1268, 1278, 1292, 1297, |
| 1302, 1303, 1314, 1320, 1322, 1332, 1337, 1342, 1343, 1354, |
| 1360, 1362, 1374, 1380, 1385, 1391, 1397, 1402, 1403, 1414, |
| 1420, 1422, 1439, 1434, 1444, 1445, 1456, 1462, 1464, 1470, |
| 1481, 1487, 1489, 1506, 0, 124, 303, 334, 1501, 1511, |
| |
| 1516, 1528, 1533, 1545, 1551, 1553, 1563, 1573, 1578, 1583, |
| 1593, 1605, 1603, 1611, 1613, 1623, 1625, 1635, 1645, 1637, |
| 1647, 1655, 1665, 1666, 1676, 1677, 1687, 1697, 1705, 1695, |
| 1715, 1725, 1735, 1737, 1743, 1754, 1755, 1765, 1766, 1776, |
| 1786, 1796, 1791, 1801, 1806, 1816, 1818, 1828, 1838, 1833, |
| 1852, 1850, 1858, 1860, 1872, 252, 346, 1878, 1880, 1886, |
| 1897, 1903, 1905, 1915, 1920, 1925, 1935, 1943, 1945, 1953, |
| 1967, 1973, 1979, 1990, 1998, 1996, 2004, 2015, 2016, 2026, |
| 2036, 2034, 2044, 2055, 2061, 2063, 2069, 2075, 2081, 2083, |
| 2093, 2095, 2101, 2112, 2113, 2118, 2133, 2135, 2141, 2152, |
| |
| 2158, 2160, 2166, 2172, 2177, 2178, 2183, 2189, 2200, 2206, |
| 189, 148, 2195, 2212, 2218, 2217, 2223, 2229, 2235, 2237, |
| 2247, 2255, 2257, 2265, 2279, 2277, 2285, 2291, 2296, 2297, |
| 2302, 2314, 2319, 2325, 2331, 2337, 2343, 2349, 2354, 2368, |
| 2376, 2374, 2366, 2386, 2396, 2394, 2404, 2406, 2414, 2424, |
| 2416, 2434, 2436, 2446, 105, 362, 2444, 2456, 2461, 2466, |
| 2476, 2478, 2484, 2490, 2496, 2498, 2508, 2510, 2516, 2518, |
| 2528, 2538, 2549, 2555, 2557, 2563, 2574, 2582, 2584, 2592, |
| 2594, 2611, 2609, 2617, 2628, 2623, 2634, 2645, 399, 2653, |
| 2651, 2659, 2670, 2665, 2688, 2676, 2682, 2687, 2693, 2699, |
| |
| 2705, 2707, 2713, 2719, 2724, 2725, 2736, 2742, 2744, 2750, |
| 2761, 2762, 2767, 2779, 2773, 0, 2781, 2787, 2793, 2798, |
| 2808, 2810, 2816, 2818, 2828, 2836, 2846, 2848, 2858, 2863, |
| 2869, 2880, 2886, 2875, 2897, 2905, 2916, 2917, 2927, 2937, |
| 2935, 2945, 2947, 2955, 2965, 2966, 2977, 2983, 2989, 2988, |
| 3000, 3006, 3008, 3014, 3028, 3033, 3038, 3039, 3050, 3056, |
| 3061, 3067, 3073, 3078, 3096, 3084, 3098, 3104, 3202, 3147, |
| 3153, 3157, 3162, 3167, 3171, 3176, 3181, 3184, 3188, 51, |
| 3192, 3195 |
| } ; |
| |
| static yyconst flex_int16_t yy_def[583] = |
| { 0, |
| 569, 1, 570, 570, 571, 571, 569, 7, 569, 569, |
| 569, 569, 569, 572, 573, 574, 572, 572, 572, 572, |
| 572, 569, 575, 575, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 576, 577, 569, 569, |
| 569, 569, 569, 569, 569, 578, 569, 569, 578, 569, |
| 569, 569, 572, 573, 569, 569, 574, 569, 569, 572, |
| 572, 572, 572, 572, 24, 579, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 98, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 569, 569, |
| 569, 569, 576, 569, 569, 577, 569, 569, 569, 569, |
| 569, 578, 580, 578, 572, 572, 572, 581, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| |
| 24, 24, 24, 98, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 582, 578, 572, 572, 581, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 582, 578, 572, 572, 24, 24, |
| |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 578, 572, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 578, 572, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 578, 572, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 572, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 572, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, |
| 24, 24, 24, 24, 24, 24, 24, 24, 0, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569 |
| } ; |
| |
| static yyconst flex_uint16_t yy_nxt[3253] = |
| { 0, |
| 10, 11, 12, 13, 14, 15, 16, 14, 14, 14, |
| 17, 18, 14, 19, 20, 21, 14, 22, 14, 23, |
| 14, 10, 14, 24, 25, 26, 27, 28, 29, 30, |
| 23, 31, 32, 33, 34, 35, 36, 37, 23, 38, |
| 39, 40, 41, 42, 43, 23, 44, 23, 45, 46, |
| 48, 48, 51, 52, 51, 52, 223, 49, 49, 53, |
| 54, 55, 56, 53, 57, 58, 59, 60, 53, 61, |
| 53, 62, 63, 53, 53, 53, 64, 65, 66, 67, |
| 53, 68, 66, 66, 69, 66, 66, 66, 66, 66, |
| 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, |
| |
| 66, 66, 66, 66, 66, 66, 66, 70, 53, 75, |
| 78, 76, 81, 79, 83, 83, 82, 84, 84, 73, |
| 153, 153, 73, 73, 73, 73, 150, 144, 73, 145, |
| 151, 86, 75, 73, 76, 73, 147, 73, 73, 148, |
| 153, 73, 73, 73, 73, 91, 154, 73, 85, 92, |
| 86, 356, 73, 93, 73, 94, 73, 85, 85, 456, |
| 87, 85, 95, 144, 85, 145, 85, 85, 96, 88, |
| 297, 85, 153, 89, 97, 99, 90, 85, 98, 100, |
| 102, 153, 85, 85, 103, 101, 85, 146, 85, 153, |
| 85, 78, 85, 85, 79, 224, 104, 85, 106, 85, |
| |
| 107, 105, 155, 155, 85, 153, 108, 109, 85, 110, |
| 135, 85, 296, 85, 85, 156, 156, 85, 85, 111, |
| 143, 85, 85, 112, 85, 113, 85, 85, 85, 85, |
| 455, 85, 147, 114, 85, 148, 117, 85, 115, 85, |
| 141, 85, 77, 119, 116, 85, 74, 122, 85, 118, |
| 85, 71, 85, 125, 85, 85, 85, 126, 120, 85, |
| 123, 121, 85, 124, 153, 85, 85, 127, 153, 85, |
| 85, 85, 85, 157, 157, 85, 149, 128, 129, 85, |
| 85, 142, 130, 131, 155, 155, 85, 411, 85, 133, |
| 132, 141, 136, 85, 134, 137, 85, 85, 85, 85, |
| |
| 140, 85, 139, 138, 85, 225, 225, 85, 85, 226, |
| 226, 85, 85, 80, 85, 85, 73, 357, 357, 73, |
| 73, 73, 73, 73, 73, 73, 73, 73, 73, 159, |
| 73, 85, 73, 297, 73, 72, 298, 298, 85, 71, |
| 85, 569, 85, 85, 85, 85, 161, 85, 298, 298, |
| 569, 160, 85, 569, 85, 85, 85, 162, 569, 85, |
| 412, 412, 569, 85, 85, 85, 569, 85, 85, 163, |
| 85, 85, 164, 85, 85, 273, 489, 489, 85, 569, |
| 85, 85, 85, 85, 85, 85, 85, 274, 165, 85, |
| 85, 85, 85, 85, 85, 167, 85, 166, 85, 85, |
| |
| 168, 85, 85, 569, 85, 569, 169, 85, 569, 85, |
| 85, 569, 170, 516, 516, 569, 85, 171, 569, 85, |
| 569, 172, 85, 85, 173, 85, 85, 174, 85, 85, |
| 569, 85, 175, 85, 569, 176, 179, 85, 85, 85, |
| 178, 85, 85, 177, 85, 569, 85, 180, 85, 85, |
| 85, 85, 85, 183, 569, 85, 85, 182, 569, 85, |
| 85, 181, 85, 85, 85, 85, 85, 85, 85, 85, |
| 569, 85, 85, 184, 85, 85, 569, 85, 85, 185, |
| 85, 85, 569, 85, 85, 188, 85, 85, 85, 85, |
| 85, 186, 569, 85, 187, 85, 85, 189, 85, 85, |
| |
| 190, 85, 85, 85, 85, 569, 569, 191, 569, 194, |
| 569, 85, 193, 569, 85, 85, 85, 192, 85, 85, |
| 569, 569, 85, 569, 85, 85, 85, 199, 85, 195, |
| 200, 85, 85, 569, 196, 85, 85, 85, 569, 85, |
| 85, 85, 85, 85, 569, 85, 85, 197, 85, 85, |
| 85, 198, 569, 85, 85, 569, 569, 569, 85, 85, |
| 569, 569, 85, 85, 201, 85, 569, 85, 85, 202, |
| 85, 85, 85, 203, 569, 85, 85, 204, 569, 569, |
| 205, 206, 569, 569, 85, 85, 85, 85, 569, 85, |
| 207, 208, 85, 85, 210, 85, 209, 211, 569, 212, |
| |
| 85, 85, 569, 569, 85, 569, 85, 569, 85, 85, |
| 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, |
| 213, 85, 85, 569, 569, 85, 569, 85, 214, 215, |
| 216, 85, 85, 85, 85, 569, 569, 217, 85, 218, |
| 219, 85, 85, 85, 220, 85, 85, 85, 85, 85, |
| 569, 85, 85, 85, 85, 85, 85, 569, 569, 85, |
| 569, 569, 221, 569, 222, 569, 85, 569, 85, 85, |
| 569, 85, 73, 569, 569, 73, 73, 73, 73, 569, |
| 85, 73, 85, 569, 73, 569, 73, 569, 73, 85, |
| 73, 85, 569, 85, 85, 85, 85, 569, 85, 569, |
| |
| 85, 228, 569, 85, 569, 85, 231, 85, 230, 85, |
| 229, 569, 569, 85, 85, 85, 85, 85, 85, 569, |
| 569, 85, 569, 569, 85, 232, 85, 569, 85, 569, |
| 85, 85, 85, 85, 85, 233, 569, 234, 569, 569, |
| 85, 85, 235, 85, 569, 85, 569, 85, 85, 85, |
| 85, 85, 85, 85, 238, 236, 85, 85, 569, 569, |
| 85, 85, 85, 239, 237, 240, 85, 85, 85, 569, |
| 85, 85, 569, 85, 569, 85, 241, 85, 85, 85, |
| 569, 569, 569, 569, 242, 569, 85, 569, 85, 85, |
| 85, 85, 85, 85, 569, 85, 569, 243, 85, 569, |
| |
| 85, 244, 85, 569, 85, 85, 85, 85, 85, 245, |
| 569, 569, 569, 569, 85, 85, 569, 85, 569, 85, |
| 246, 85, 85, 85, 85, 248, 85, 85, 85, 247, |
| 85, 569, 569, 569, 85, 85, 85, 85, 251, 85, |
| 569, 85, 85, 250, 249, 85, 85, 85, 569, 85, |
| 85, 85, 85, 569, 569, 85, 252, 85, 253, 85, |
| 85, 569, 85, 85, 85, 569, 85, 85, 569, 85, |
| 85, 255, 85, 254, 85, 258, 85, 256, 85, 85, |
| 85, 569, 85, 85, 85, 85, 259, 85, 85, 85, |
| 85, 85, 260, 85, 569, 257, 85, 569, 569, 85, |
| |
| 569, 85, 569, 569, 569, 569, 569, 85, 85, 85, |
| 85, 569, 85, 264, 85, 261, 85, 85, 85, 569, |
| 85, 569, 85, 85, 262, 85, 85, 263, 85, 569, |
| 569, 569, 569, 265, 569, 85, 85, 85, 569, 85, |
| 569, 85, 85, 569, 85, 85, 266, 85, 267, 85, |
| 268, 569, 85, 85, 569, 569, 85, 569, 569, 85, |
| 85, 569, 85, 85, 569, 569, 85, 85, 85, 85, |
| 269, 270, 85, 569, 569, 85, 85, 85, 85, 85, |
| 85, 275, 271, 85, 272, 569, 85, 85, 85, 569, |
| 85, 85, 85, 279, 85, 85, 85, 276, 569, 569, |
| |
| 569, 277, 569, 569, 85, 85, 569, 569, 569, 85, |
| 85, 278, 85, 85, 569, 280, 85, 85, 85, 85, |
| 85, 569, 569, 85, 569, 85, 85, 85, 85, 85, |
| 85, 85, 85, 281, 85, 569, 282, 85, 569, 85, |
| 569, 85, 569, 85, 85, 283, 85, 85, 284, 85, |
| 285, 569, 569, 569, 569, 569, 85, 85, 85, 85, |
| 85, 569, 85, 85, 569, 85, 85, 286, 85, 85, |
| 85, 287, 85, 85, 288, 85, 569, 85, 85, 85, |
| 569, 294, 289, 290, 569, 85, 85, 569, 292, 569, |
| 85, 85, 85, 291, 293, 85, 85, 569, 569, 569, |
| |
| 85, 569, 569, 569, 85, 85, 569, 85, 569, 85, |
| 569, 569, 85, 73, 569, 569, 73, 73, 73, 73, |
| 569, 569, 73, 569, 85, 73, 85, 73, 569, 73, |
| 569, 73, 299, 85, 300, 85, 569, 85, 85, 85, |
| 85, 569, 85, 85, 301, 569, 569, 85, 85, 85, |
| 569, 85, 85, 569, 85, 569, 85, 302, 85, 85, |
| 569, 85, 85, 569, 85, 85, 303, 85, 85, 569, |
| 569, 569, 569, 304, 569, 305, 85, 85, 85, 569, |
| 85, 85, 569, 85, 85, 569, 85, 85, 85, 306, |
| 569, 85, 569, 569, 85, 85, 85, 85, 569, 85, |
| |
| 569, 85, 307, 569, 85, 85, 85, 309, 85, 85, |
| 569, 308, 85, 311, 85, 85, 85, 85, 569, 85, |
| 569, 310, 85, 85, 85, 85, 85, 85, 85, 85, |
| 85, 569, 85, 569, 85, 85, 569, 313, 569, 312, |
| 85, 85, 85, 85, 85, 85, 314, 85, 569, 85, |
| 315, 85, 569, 85, 85, 316, 85, 85, 85, 569, |
| 85, 85, 317, 569, 85, 569, 85, 85, 85, 319, |
| 85, 569, 318, 85, 85, 569, 85, 85, 323, 569, |
| 569, 85, 85, 85, 85, 85, 569, 320, 569, 85, |
| 85, 85, 321, 85, 85, 85, 569, 322, 85, 85, |
| |
| 569, 325, 85, 85, 85, 569, 85, 85, 85, 85, |
| 85, 569, 85, 85, 324, 85, 569, 85, 85, 326, |
| 85, 569, 569, 85, 327, 569, 569, 85, 85, 85, |
| 569, 85, 85, 569, 85, 328, 85, 85, 85, 85, |
| 85, 85, 85, 569, 85, 85, 85, 569, 85, 85, |
| 331, 569, 569, 85, 329, 85, 85, 85, 85, 85, |
| 330, 85, 85, 85, 85, 332, 569, 85, 85, 85, |
| 569, 85, 85, 569, 85, 569, 333, 334, 85, 85, |
| 85, 85, 85, 569, 85, 335, 85, 336, 85, 85, |
| 569, 569, 569, 85, 569, 85, 85, 85, 569, 85, |
| |
| 85, 85, 85, 337, 85, 338, 85, 339, 569, 85, |
| 569, 85, 340, 85, 569, 85, 85, 85, 569, 85, |
| 85, 569, 85, 85, 85, 343, 85, 85, 85, 85, |
| 341, 569, 342, 85, 344, 569, 85, 85, 85, 85, |
| 85, 85, 85, 569, 85, 85, 85, 569, 85, 85, |
| 569, 569, 569, 85, 345, 85, 85, 85, 347, 85, |
| 85, 85, 346, 569, 85, 85, 348, 569, 569, 85, |
| 349, 85, 569, 85, 85, 569, 85, 569, 85, 85, |
| 85, 85, 85, 85, 85, 569, 85, 350, 85, 569, |
| 85, 85, 569, 569, 569, 85, 85, 85, 351, 85, |
| |
| 354, 85, 352, 85, 85, 85, 85, 85, 353, 85, |
| 569, 569, 85, 85, 569, 85, 85, 569, 569, 569, |
| 85, 569, 85, 85, 85, 569, 85, 85, 85, 85, |
| 569, 85, 85, 355, 358, 569, 85, 85, 359, 569, |
| 85, 85, 85, 85, 569, 85, 85, 569, 85, 569, |
| 85, 360, 569, 85, 85, 85, 569, 361, 85, 85, |
| 362, 569, 569, 85, 569, 569, 569, 85, 85, 569, |
| 85, 85, 85, 569, 363, 85, 364, 85, 569, 85, |
| 85, 569, 365, 569, 85, 569, 85, 85, 366, 85, |
| 85, 569, 85, 85, 569, 85, 367, 569, 85, 85, |
| |
| 368, 569, 85, 369, 85, 85, 569, 569, 85, 85, |
| 569, 569, 85, 85, 370, 85, 372, 85, 85, 85, |
| 85, 569, 85, 569, 569, 85, 569, 569, 85, 85, |
| 569, 85, 85, 569, 371, 85, 569, 85, 85, 85, |
| 85, 569, 85, 373, 85, 85, 85, 85, 85, 85, |
| 85, 85, 374, 85, 375, 85, 376, 569, 85, 569, |
| 85, 85, 85, 85, 85, 85, 377, 85, 378, 569, |
| 85, 85, 85, 380, 85, 569, 85, 85, 379, 85, |
| 85, 85, 85, 569, 85, 569, 85, 85, 569, 85, |
| 85, 85, 85, 569, 85, 569, 382, 85, 381, 569, |
| |
| 85, 85, 85, 85, 85, 85, 569, 85, 85, 569, |
| 384, 85, 85, 85, 569, 85, 85, 383, 85, 85, |
| 385, 85, 85, 85, 386, 569, 85, 569, 569, 85, |
| 85, 85, 85, 569, 85, 569, 85, 388, 569, 85, |
| 85, 85, 387, 569, 85, 569, 389, 85, 569, 569, |
| 85, 85, 390, 569, 85, 569, 569, 85, 569, 569, |
| 85, 85, 391, 85, 85, 569, 569, 85, 392, 85, |
| 85, 569, 85, 569, 85, 569, 85, 85, 85, 85, |
| 85, 85, 85, 569, 393, 85, 395, 569, 569, 85, |
| 85, 85, 85, 394, 85, 569, 85, 85, 569, 569, |
| |
| 85, 397, 85, 569, 85, 85, 569, 85, 85, 569, |
| 396, 85, 85, 398, 569, 85, 400, 85, 85, 569, |
| 569, 85, 85, 399, 569, 85, 85, 85, 85, 569, |
| 85, 85, 85, 85, 569, 85, 85, 402, 85, 569, |
| 401, 85, 85, 85, 404, 85, 569, 569, 85, 569, |
| 569, 85, 569, 85, 85, 85, 403, 85, 85, 85, |
| 85, 569, 405, 85, 85, 406, 569, 85, 407, 569, |
| 85, 569, 85, 85, 569, 85, 85, 85, 85, 408, |
| 85, 569, 569, 569, 85, 85, 85, 85, 569, 85, |
| 569, 85, 85, 85, 85, 85, 569, 85, 85, 85, |
| |
| 85, 569, 85, 409, 85, 410, 85, 85, 569, 569, |
| 569, 85, 85, 85, 85, 413, 569, 85, 569, 85, |
| 85, 85, 85, 85, 569, 85, 569, 414, 85, 85, |
| 569, 85, 85, 569, 569, 569, 85, 415, 85, 85, |
| 85, 85, 85, 569, 85, 85, 85, 85, 569, 569, |
| 85, 85, 569, 569, 85, 417, 416, 85, 569, 85, |
| 85, 85, 85, 569, 85, 569, 418, 85, 420, 85, |
| 85, 85, 569, 569, 85, 569, 419, 85, 85, 85, |
| 85, 569, 85, 569, 85, 85, 569, 85, 85, 569, |
| 421, 569, 85, 85, 422, 85, 424, 569, 423, 85, |
| |
| 569, 569, 85, 569, 569, 85, 85, 425, 85, 85, |
| 426, 569, 85, 569, 85, 85, 85, 427, 85, 569, |
| 569, 85, 85, 569, 85, 85, 569, 569, 569, 85, |
| 85, 429, 85, 85, 428, 85, 569, 85, 85, 85, |
| 85, 85, 85, 85, 569, 430, 85, 569, 569, 569, |
| 85, 85, 85, 432, 85, 85, 431, 85, 85, 569, |
| 85, 85, 85, 569, 569, 85, 569, 433, 85, 85, |
| 85, 85, 569, 85, 569, 85, 85, 569, 85, 85, |
| 434, 85, 435, 85, 569, 569, 85, 85, 436, 85, |
| 85, 569, 437, 569, 85, 85, 85, 85, 85, 569, |
| |
| 85, 85, 85, 85, 85, 85, 439, 85, 85, 85, |
| 85, 85, 438, 569, 85, 569, 85, 85, 85, 441, |
| 85, 85, 85, 85, 440, 85, 569, 85, 85, 569, |
| 85, 569, 85, 569, 85, 85, 85, 85, 85, 85, |
| 85, 569, 442, 85, 85, 569, 569, 443, 85, 444, |
| 569, 85, 85, 85, 85, 85, 569, 85, 445, 85, |
| 85, 85, 569, 569, 569, 569, 569, 85, 85, 569, |
| 446, 569, 85, 569, 85, 85, 85, 85, 85, 447, |
| 85, 569, 569, 85, 85, 448, 85, 85, 569, 569, |
| 569, 85, 85, 85, 85, 85, 449, 85, 85, 85, |
| |
| 85, 85, 85, 85, 85, 85, 451, 85, 85, 452, |
| 569, 85, 85, 85, 450, 85, 85, 85, 85, 85, |
| 85, 85, 85, 569, 85, 85, 85, 453, 85, 458, |
| 85, 85, 85, 454, 85, 85, 457, 85, 85, 85, |
| 569, 85, 85, 85, 85, 85, 569, 85, 85, 85, |
| 459, 85, 85, 85, 85, 85, 85, 85, 85, 85, |
| 85, 85, 85, 85, 85, 85, 569, 569, 85, 569, |
| 85, 85, 85, 85, 85, 569, 85, 85, 460, 85, |
| 569, 85, 85, 85, 569, 569, 85, 569, 461, 85, |
| 85, 85, 85, 462, 85, 569, 85, 85, 569, 85, |
| |
| 85, 569, 463, 85, 85, 85, 464, 85, 569, 569, |
| 569, 85, 85, 465, 85, 569, 85, 85, 85, 85, |
| 85, 85, 85, 85, 85, 467, 466, 85, 85, 569, |
| 85, 85, 85, 85, 569, 85, 85, 85, 85, 85, |
| 85, 85, 569, 468, 469, 85, 569, 569, 569, 85, |
| 569, 85, 569, 85, 85, 569, 85, 85, 85, 470, |
| 85, 85, 569, 85, 471, 472, 85, 85, 474, 85, |
| 85, 473, 85, 85, 569, 85, 85, 476, 85, 85, |
| 85, 569, 85, 569, 85, 85, 475, 478, 85, 85, |
| 569, 85, 85, 85, 85, 477, 85, 479, 569, 569, |
| |
| 85, 85, 85, 85, 569, 85, 569, 85, 85, 85, |
| 85, 85, 85, 85, 569, 85, 85, 483, 85, 482, |
| 85, 480, 85, 481, 569, 85, 569, 569, 85, 85, |
| 85, 85, 85, 85, 569, 85, 85, 569, 85, 85, |
| 85, 85, 85, 85, 569, 85, 85, 569, 85, 484, |
| 85, 85, 569, 85, 569, 85, 85, 485, 85, 85, |
| 85, 486, 85, 85, 569, 569, 85, 569, 569, 85, |
| 85, 85, 85, 85, 569, 487, 85, 569, 85, 85, |
| 488, 85, 85, 85, 569, 85, 85, 85, 85, 569, |
| 569, 85, 85, 492, 569, 85, 85, 490, 85, 569, |
| |
| 491, 85, 85, 85, 85, 85, 569, 493, 85, 498, |
| 85, 85, 569, 494, 569, 85, 85, 85, 85, 85, |
| 85, 495, 85, 85, 85, 85, 85, 569, 569, 85, |
| 496, 497, 85, 85, 85, 85, 85, 85, 85, 569, |
| 85, 569, 85, 85, 85, 85, 569, 85, 569, 85, |
| 85, 85, 85, 85, 85, 499, 569, 85, 85, 500, |
| 85, 569, 569, 85, 85, 502, 569, 85, 569, 569, |
| 85, 569, 569, 85, 501, 85, 503, 85, 569, 569, |
| 85, 85, 504, 85, 85, 569, 569, 569, 85, 85, |
| 85, 85, 85, 505, 85, 569, 85, 85, 85, 85, |
| |
| 85, 569, 85, 569, 506, 85, 507, 569, 85, 85, |
| 85, 569, 569, 85, 569, 569, 85, 85, 85, 85, |
| 85, 85, 569, 85, 85, 508, 85, 85, 511, 85, |
| 569, 85, 569, 85, 85, 85, 85, 85, 509, 569, |
| 510, 569, 569, 85, 85, 569, 85, 569, 85, 513, |
| 85, 85, 85, 85, 85, 512, 85, 569, 85, 85, |
| 85, 569, 85, 85, 569, 85, 569, 85, 569, 85, |
| 85, 85, 515, 85, 514, 569, 85, 85, 569, 85, |
| 85, 569, 569, 569, 85, 518, 85, 85, 85, 517, |
| 85, 85, 85, 85, 85, 85, 85, 569, 85, 520, |
| |
| 85, 85, 85, 569, 85, 85, 519, 85, 85, 85, |
| 569, 85, 85, 522, 85, 85, 521, 85, 85, 85, |
| 523, 85, 85, 85, 85, 85, 85, 85, 85, 85, |
| 85, 85, 85, 85, 85, 85, 569, 569, 85, 85, |
| 85, 85, 524, 569, 85, 85, 85, 85, 525, 85, |
| 85, 85, 85, 569, 85, 85, 527, 569, 85, 85, |
| 85, 85, 85, 526, 85, 569, 85, 85, 85, 569, |
| 85, 85, 569, 529, 569, 85, 85, 85, 85, 85, |
| 569, 85, 528, 85, 85, 530, 85, 531, 85, 85, |
| 569, 569, 85, 85, 569, 569, 85, 85, 569, 85, |
| |
| 85, 85, 85, 85, 85, 85, 85, 85, 533, 85, |
| 532, 569, 85, 85, 85, 85, 85, 569, 85, 85, |
| 85, 85, 85, 85, 85, 569, 85, 569, 534, 85, |
| 569, 536, 85, 85, 85, 85, 85, 85, 569, 535, |
| 85, 537, 85, 85, 85, 85, 569, 85, 569, 85, |
| 85, 85, 85, 85, 85, 85, 569, 85, 85, 538, |
| 85, 569, 85, 85, 569, 569, 569, 85, 569, 539, |
| 85, 85, 85, 569, 85, 85, 569, 540, 85, 569, |
| 569, 85, 541, 85, 85, 85, 569, 85, 85, 85, |
| 85, 569, 544, 85, 542, 85, 569, 85, 85, 569, |
| |
| 85, 85, 85, 543, 85, 85, 85, 569, 85, 569, |
| 85, 85, 85, 569, 85, 85, 545, 85, 569, 85, |
| 547, 85, 85, 85, 569, 85, 569, 546, 85, 569, |
| 569, 85, 85, 569, 548, 569, 85, 569, 569, 85, |
| 85, 569, 85, 85, 85, 549, 569, 85, 569, 569, |
| 569, 85, 85, 85, 569, 85, 85, 550, 85, 85, |
| 569, 85, 85, 85, 552, 569, 85, 551, 569, 85, |
| 553, 85, 85, 85, 85, 569, 85, 85, 569, 85, |
| 554, 85, 85, 569, 85, 569, 85, 85, 555, 85, |
| 85, 85, 85, 569, 85, 569, 556, 85, 569, 569, |
| |
| 557, 85, 569, 85, 85, 85, 558, 85, 85, 85, |
| 559, 569, 85, 569, 85, 85, 85, 569, 85, 85, |
| 560, 569, 85, 85, 85, 85, 85, 85, 85, 569, |
| 85, 85, 561, 569, 85, 85, 569, 569, 569, 85, |
| 85, 85, 85, 85, 569, 85, 569, 85, 85, 85, |
| 85, 562, 569, 85, 85, 569, 85, 569, 569, 85, |
| 563, 569, 569, 85, 85, 85, 569, 85, 85, 569, |
| 85, 569, 85, 85, 85, 85, 85, 85, 85, 569, |
| 85, 85, 85, 569, 569, 85, 569, 85, 569, 85, |
| 569, 85, 85, 85, 569, 85, 85, 564, 85, 85, |
| |
| 85, 569, 565, 85, 85, 569, 85, 569, 85, 85, |
| 85, 569, 85, 85, 569, 85, 569, 85, 566, 85, |
| 85, 567, 85, 85, 85, 568, 85, 569, 569, 569, |
| 85, 85, 569, 85, 569, 85, 569, 85, 85, 85, |
| 85, 569, 569, 85, 569, 569, 85, 47, 47, 47, |
| 47, 47, 47, 50, 50, 50, 50, 50, 50, 73, |
| 73, 73, 73, 74, 74, 74, 74, 74, 77, 77, |
| 77, 77, 77, 85, 85, 85, 85, 143, 143, 143, |
| 143, 143, 146, 146, 146, 146, 146, 152, 152, 152, |
| 158, 158, 158, 158, 227, 227, 227, 227, 295, 569, |
| |
| 295, 9, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569 |
| } ; |
| |
| static yyconst flex_int16_t yy_chk[3253] = |
| { 0, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 3, 4, 5, 5, 6, 6, 580, 3, 4, 7, |
| 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, |
| 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, |
| 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, |
| 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, |
| |
| 7, 7, 7, 7, 7, 7, 7, 7, 7, 15, |
| 16, 15, 19, 16, 20, 20, 19, 21, 21, 23, |
| 69, 455, 23, 23, 23, 23, 63, 57, 23, 57, |
| 63, 23, 74, 23, 74, 23, 58, 23, 24, 58, |
| 296, 24, 24, 24, 24, 25, 69, 24, 25, 25, |
| 24, 296, 24, 25, 24, 26, 24, 25, 26, 412, |
| 24, 25, 26, 143, 25, 143, 28, 26, 26, 24, |
| 225, 26, 154, 24, 26, 28, 24, 27, 27, 28, |
| 29, 152, 28, 29, 29, 28, 27, 147, 30, 224, |
| 27, 77, 29, 27, 77, 154, 29, 30, 31, 29, |
| |
| 31, 30, 80, 80, 30, 411, 31, 31, 32, 32, |
| 42, 31, 224, 42, 31, 83, 83, 32, 33, 33, |
| 144, 32, 42, 33, 32, 34, 42, 33, 34, 42, |
| 411, 33, 146, 34, 33, 146, 35, 34, 34, 35, |
| 141, 34, 78, 36, 34, 36, 75, 37, 35, 35, |
| 37, 71, 35, 38, 36, 35, 38, 38, 36, 37, |
| 37, 36, 39, 37, 66, 38, 37, 38, 356, 38, |
| 40, 39, 38, 84, 84, 39, 62, 39, 39, 40, |
| 41, 56, 39, 40, 155, 155, 40, 356, 43, 41, |
| 40, 54, 43, 41, 41, 44, 41, 43, 44, 85, |
| |
| 52, 43, 49, 44, 43, 156, 156, 44, 85, 157, |
| 157, 44, 85, 18, 44, 85, 86, 297, 297, 86, |
| 86, 86, 86, 86, 86, 86, 86, 86, 86, 87, |
| 86, 88, 86, 226, 86, 13, 226, 226, 87, 11, |
| 88, 9, 87, 89, 88, 87, 89, 88, 298, 298, |
| 0, 88, 89, 0, 90, 91, 89, 90, 0, 89, |
| 357, 357, 0, 90, 91, 92, 0, 90, 91, 91, |
| 90, 91, 92, 93, 92, 204, 456, 456, 92, 0, |
| 204, 92, 93, 94, 204, 95, 93, 204, 93, 93, |
| 204, 96, 94, 97, 95, 95, 94, 94, 95, 94, |
| |
| 96, 95, 97, 0, 96, 0, 97, 96, 0, 97, |
| 98, 0, 98, 489, 489, 0, 99, 98, 0, 98, |
| 0, 98, 100, 98, 98, 99, 98, 98, 101, 99, |
| 0, 100, 99, 102, 0, 100, 103, 101, 100, 103, |
| 102, 101, 102, 101, 101, 0, 102, 104, 103, 102, |
| 104, 105, 103, 107, 0, 103, 106, 106, 0, 104, |
| 105, 105, 108, 104, 105, 106, 104, 105, 107, 106, |
| 0, 108, 106, 108, 110, 108, 0, 107, 108, 109, |
| 109, 107, 0, 110, 107, 111, 112, 110, 111, 109, |
| 110, 109, 0, 109, 110, 112, 109, 111, 113, 112, |
| |
| 112, 111, 112, 114, 111, 0, 0, 113, 0, 115, |
| 0, 113, 114, 0, 113, 116, 114, 113, 115, 114, |
| 0, 0, 115, 0, 116, 115, 117, 120, 116, 116, |
| 120, 116, 118, 0, 117, 117, 120, 119, 0, 117, |
| 120, 118, 117, 120, 0, 118, 119, 118, 118, 121, |
| 119, 119, 0, 119, 122, 0, 0, 0, 121, 123, |
| 0, 0, 121, 122, 121, 121, 0, 122, 123, 122, |
| 122, 125, 123, 123, 0, 123, 124, 124, 0, 0, |
| 125, 126, 0, 0, 125, 124, 126, 125, 0, 124, |
| 126, 126, 124, 126, 127, 127, 126, 128, 0, 129, |
| |
| 128, 129, 0, 0, 127, 0, 130, 0, 127, 128, |
| 129, 127, 131, 128, 129, 130, 128, 129, 132, 130, |
| 130, 131, 130, 0, 0, 131, 0, 132, 131, 132, |
| 133, 132, 133, 135, 132, 0, 0, 133, 134, 134, |
| 135, 133, 135, 136, 136, 133, 135, 134, 133, 135, |
| 0, 134, 136, 137, 134, 138, 136, 0, 0, 136, |
| 0, 0, 137, 0, 138, 0, 137, 0, 138, 137, |
| 0, 138, 158, 0, 0, 158, 158, 158, 158, 0, |
| 159, 158, 160, 0, 158, 0, 158, 0, 158, 159, |
| 158, 160, 0, 159, 161, 160, 159, 0, 160, 0, |
| |
| 162, 160, 0, 161, 0, 163, 163, 161, 162, 162, |
| 161, 0, 0, 162, 163, 164, 162, 165, 163, 0, |
| 0, 163, 0, 0, 164, 164, 165, 0, 164, 0, |
| 165, 164, 167, 165, 166, 166, 0, 167, 0, 0, |
| 168, 167, 168, 166, 0, 167, 0, 166, 167, 168, |
| 166, 169, 172, 168, 170, 168, 168, 170, 0, 0, |
| 169, 172, 171, 171, 169, 172, 170, 169, 172, 0, |
| 170, 171, 0, 170, 0, 171, 173, 173, 171, 174, |
| 0, 0, 0, 0, 174, 0, 173, 0, 174, 175, |
| 173, 176, 174, 173, 0, 174, 0, 175, 175, 0, |
| |
| 176, 176, 175, 0, 176, 175, 178, 176, 177, 177, |
| 0, 0, 0, 0, 179, 178, 0, 177, 0, 178, |
| 178, 177, 178, 179, 177, 180, 180, 179, 181, 179, |
| 179, 0, 0, 0, 182, 180, 183, 181, 183, 180, |
| 0, 181, 180, 182, 181, 183, 184, 182, 0, 183, |
| 182, 185, 183, 0, 0, 184, 184, 186, 185, 184, |
| 185, 0, 184, 187, 185, 0, 186, 185, 0, 188, |
| 186, 188, 187, 186, 189, 191, 187, 189, 188, 187, |
| 190, 0, 188, 189, 191, 188, 192, 189, 191, 190, |
| 189, 191, 193, 190, 0, 190, 190, 0, 0, 194, |
| |
| 0, 192, 0, 0, 0, 0, 0, 193, 194, 195, |
| 192, 0, 194, 197, 192, 194, 193, 192, 195, 0, |
| 193, 0, 195, 193, 195, 195, 196, 196, 197, 0, |
| 0, 0, 0, 197, 0, 196, 198, 197, 0, 196, |
| 0, 197, 196, 0, 197, 198, 198, 199, 199, 198, |
| 200, 0, 198, 200, 0, 0, 199, 0, 0, 201, |
| 199, 0, 200, 199, 0, 0, 200, 202, 201, 200, |
| 201, 202, 201, 0, 0, 201, 202, 208, 205, 203, |
| 202, 205, 202, 202, 203, 0, 208, 205, 203, 0, |
| 208, 205, 203, 208, 205, 203, 206, 206, 0, 0, |
| |
| 0, 206, 0, 0, 207, 206, 0, 0, 0, 206, |
| 209, 207, 206, 207, 0, 209, 210, 207, 211, 209, |
| 207, 0, 0, 209, 0, 210, 209, 211, 212, 210, |
| 213, 211, 210, 211, 211, 0, 212, 212, 0, 213, |
| 0, 212, 0, 213, 212, 213, 213, 214, 214, 215, |
| 215, 0, 0, 0, 0, 0, 214, 216, 215, 217, |
| 214, 0, 215, 214, 0, 215, 216, 216, 217, 218, |
| 216, 217, 217, 216, 217, 217, 0, 219, 218, 220, |
| 0, 222, 218, 218, 0, 218, 219, 0, 220, 0, |
| 219, 221, 220, 219, 221, 220, 222, 0, 0, 0, |
| |
| 221, 0, 0, 0, 221, 222, 0, 221, 0, 222, |
| 0, 0, 222, 227, 0, 0, 227, 227, 227, 227, |
| 0, 0, 227, 0, 228, 227, 229, 227, 0, 227, |
| 0, 227, 228, 228, 229, 229, 0, 228, 231, 229, |
| 228, 0, 229, 230, 230, 0, 0, 231, 232, 233, |
| 0, 231, 230, 0, 231, 0, 230, 232, 233, 230, |
| 0, 232, 233, 0, 232, 233, 234, 234, 235, 0, |
| 0, 0, 0, 235, 0, 236, 234, 235, 236, 0, |
| 234, 235, 0, 234, 235, 0, 238, 236, 237, 237, |
| 0, 236, 0, 0, 236, 238, 239, 237, 0, 238, |
| |
| 0, 237, 238, 0, 237, 239, 240, 240, 241, 239, |
| 0, 239, 239, 242, 243, 240, 242, 241, 0, 240, |
| 0, 241, 240, 243, 241, 242, 244, 243, 245, 242, |
| 243, 0, 242, 0, 247, 244, 0, 245, 0, 244, |
| 248, 245, 244, 247, 245, 246, 246, 247, 0, 248, |
| 247, 249, 0, 248, 246, 248, 248, 250, 246, 0, |
| 249, 246, 249, 0, 249, 0, 250, 249, 251, 251, |
| 250, 0, 250, 250, 252, 0, 253, 251, 255, 0, |
| 0, 251, 254, 252, 251, 253, 0, 252, 0, 253, |
| 252, 254, 253, 255, 257, 254, 0, 254, 254, 256, |
| |
| 0, 258, 255, 257, 258, 0, 255, 257, 256, 255, |
| 257, 0, 256, 258, 256, 256, 0, 258, 259, 259, |
| 258, 0, 0, 260, 260, 0, 0, 259, 261, 262, |
| 0, 259, 260, 0, 259, 261, 260, 261, 262, 260, |
| 263, 261, 262, 0, 261, 262, 264, 0, 265, 263, |
| 265, 0, 0, 263, 263, 264, 263, 265, 266, 264, |
| 264, 265, 264, 267, 265, 266, 0, 266, 268, 269, |
| 0, 266, 267, 0, 266, 0, 267, 268, 269, 267, |
| 270, 268, 269, 0, 268, 269, 271, 271, 272, 270, |
| 0, 0, 0, 270, 0, 271, 270, 272, 0, 271, |
| |
| 273, 272, 271, 272, 272, 273, 274, 274, 0, 273, |
| 0, 275, 275, 273, 0, 274, 273, 276, 0, 274, |
| 275, 0, 274, 277, 275, 278, 276, 275, 278, 279, |
| 276, 0, 277, 276, 279, 0, 277, 278, 279, 277, |
| 280, 278, 279, 0, 278, 279, 281, 0, 282, 280, |
| 0, 0, 0, 280, 280, 281, 280, 282, 282, 281, |
| 284, 282, 281, 0, 282, 283, 283, 0, 0, 284, |
| 285, 286, 0, 284, 283, 0, 284, 0, 283, 285, |
| 286, 283, 287, 285, 286, 0, 285, 286, 288, 0, |
| 289, 287, 0, 0, 0, 287, 290, 288, 287, 289, |
| |
| 293, 288, 288, 289, 288, 290, 289, 291, 291, 290, |
| 0, 0, 290, 292, 0, 293, 291, 0, 0, 0, |
| 291, 0, 292, 291, 293, 0, 292, 299, 293, 292, |
| 0, 293, 294, 294, 299, 0, 299, 300, 300, 0, |
| 299, 294, 301, 299, 0, 294, 300, 0, 294, 0, |
| 300, 301, 0, 300, 302, 301, 0, 302, 301, 303, |
| 303, 0, 0, 302, 0, 0, 0, 302, 303, 0, |
| 302, 304, 303, 0, 304, 303, 305, 305, 0, 306, |
| 304, 0, 305, 0, 304, 0, 305, 304, 306, 307, |
| 305, 0, 306, 305, 0, 306, 307, 0, 307, 308, |
| |
| 308, 0, 307, 309, 309, 307, 0, 0, 308, 310, |
| 0, 0, 308, 309, 310, 308, 312, 309, 310, 311, |
| 309, 0, 310, 0, 0, 310, 0, 0, 311, 313, |
| 0, 312, 311, 0, 311, 311, 0, 314, 313, 315, |
| 312, 0, 313, 313, 312, 313, 314, 312, 315, 316, |
| 314, 317, 315, 314, 316, 315, 317, 0, 316, 0, |
| 317, 318, 316, 320, 317, 316, 318, 317, 319, 0, |
| 318, 319, 320, 321, 318, 0, 320, 318, 320, 320, |
| 319, 322, 321, 0, 319, 0, 321, 319, 0, 321, |
| 322, 323, 324, 0, 322, 0, 324, 322, 323, 0, |
| |
| 323, 324, 325, 326, 323, 324, 0, 323, 324, 0, |
| 326, 325, 326, 327, 0, 325, 326, 325, 325, 326, |
| 327, 330, 327, 328, 328, 0, 327, 0, 0, 327, |
| 330, 329, 328, 0, 330, 0, 328, 330, 0, 328, |
| 329, 331, 329, 0, 329, 0, 331, 329, 0, 0, |
| 331, 332, 332, 0, 331, 0, 0, 331, 0, 0, |
| 332, 333, 333, 334, 332, 0, 0, 332, 334, 335, |
| 333, 0, 334, 0, 333, 0, 334, 333, 335, 334, |
| 336, 337, 335, 0, 335, 335, 337, 0, 0, 336, |
| 337, 338, 339, 336, 337, 0, 336, 337, 0, 0, |
| |
| 338, 339, 340, 0, 338, 339, 0, 338, 339, 0, |
| 338, 340, 341, 341, 0, 340, 343, 343, 340, 0, |
| 0, 341, 342, 342, 0, 341, 343, 344, 341, 0, |
| 343, 342, 345, 343, 0, 342, 344, 345, 342, 0, |
| 344, 345, 346, 344, 347, 345, 0, 0, 345, 0, |
| 0, 346, 0, 347, 348, 346, 346, 347, 346, 350, |
| 347, 0, 348, 348, 349, 349, 0, 348, 350, 0, |
| 348, 0, 350, 349, 0, 350, 352, 349, 351, 351, |
| 349, 0, 0, 0, 353, 352, 354, 351, 0, 352, |
| 0, 351, 352, 353, 351, 354, 0, 353, 355, 354, |
| |
| 353, 0, 354, 354, 358, 355, 359, 355, 0, 0, |
| 0, 355, 360, 358, 355, 359, 0, 358, 0, 359, |
| 358, 360, 359, 361, 0, 360, 0, 360, 360, 362, |
| 0, 363, 361, 0, 0, 0, 361, 361, 362, 361, |
| 363, 364, 362, 0, 363, 362, 365, 363, 0, 0, |
| 364, 366, 0, 0, 364, 365, 364, 364, 0, 365, |
| 366, 367, 365, 0, 366, 0, 366, 366, 369, 368, |
| 367, 369, 0, 0, 367, 0, 367, 367, 368, 370, |
| 369, 0, 368, 0, 369, 368, 0, 369, 370, 0, |
| 370, 0, 370, 371, 371, 370, 372, 0, 371, 372, |
| |
| 0, 0, 371, 0, 0, 373, 371, 372, 372, 371, |
| 373, 0, 372, 0, 373, 372, 374, 374, 373, 0, |
| 0, 373, 376, 0, 375, 374, 0, 0, 0, 374, |
| 377, 376, 374, 375, 375, 376, 0, 375, 376, 377, |
| 375, 378, 379, 377, 0, 377, 377, 0, 0, 0, |
| 378, 379, 380, 380, 378, 379, 378, 378, 379, 0, |
| 382, 380, 381, 0, 0, 380, 0, 381, 380, 382, |
| 383, 381, 0, 382, 0, 381, 382, 0, 381, 383, |
| 383, 384, 384, 383, 0, 0, 383, 385, 385, 386, |
| 384, 0, 387, 0, 384, 387, 385, 384, 386, 0, |
| |
| 385, 388, 386, 385, 387, 386, 389, 389, 387, 390, |
| 388, 387, 388, 0, 388, 0, 389, 388, 390, 391, |
| 389, 392, 390, 389, 390, 390, 0, 393, 391, 0, |
| 392, 0, 391, 0, 392, 391, 393, 392, 394, 395, |
| 393, 0, 392, 393, 396, 0, 0, 394, 395, 395, |
| 0, 394, 395, 396, 394, 395, 0, 396, 397, 397, |
| 396, 398, 0, 0, 0, 0, 0, 399, 397, 0, |
| 398, 0, 397, 0, 398, 397, 399, 398, 400, 400, |
| 399, 0, 0, 399, 401, 401, 402, 400, 0, 0, |
| 0, 400, 403, 401, 400, 402, 402, 401, 404, 402, |
| |
| 401, 403, 402, 405, 406, 403, 406, 404, 403, 407, |
| 0, 404, 405, 406, 404, 408, 405, 406, 407, 405, |
| 406, 413, 407, 0, 408, 407, 409, 409, 408, 415, |
| 413, 408, 410, 410, 413, 409, 413, 413, 414, 409, |
| 0, 410, 409, 416, 415, 410, 0, 414, 410, 417, |
| 417, 414, 416, 415, 414, 418, 416, 415, 417, 416, |
| 415, 419, 417, 420, 418, 417, 0, 0, 418, 0, |
| 419, 418, 420, 421, 419, 0, 420, 419, 420, 420, |
| 0, 422, 421, 423, 0, 0, 421, 0, 421, 421, |
| 422, 424, 423, 423, 422, 0, 423, 422, 0, 423, |
| |
| 424, 0, 424, 426, 424, 425, 425, 424, 0, 0, |
| 0, 427, 426, 426, 425, 0, 426, 428, 425, 426, |
| 427, 425, 429, 430, 427, 429, 428, 427, 431, 0, |
| 428, 429, 430, 428, 0, 429, 430, 431, 429, 430, |
| 432, 431, 0, 430, 431, 433, 0, 0, 0, 432, |
| 0, 434, 0, 432, 433, 0, 432, 435, 433, 433, |
| 434, 433, 0, 436, 434, 435, 435, 434, 437, 437, |
| 435, 436, 436, 435, 0, 438, 436, 439, 437, 436, |
| 439, 0, 437, 0, 438, 437, 438, 441, 438, 439, |
| 0, 438, 443, 439, 440, 440, 439, 442, 0, 0, |
| |
| 442, 443, 441, 440, 0, 443, 0, 440, 443, 442, |
| 440, 441, 444, 442, 0, 441, 442, 448, 441, 446, |
| 446, 444, 445, 445, 0, 444, 0, 0, 444, 446, |
| 447, 445, 448, 446, 0, 445, 446, 0, 445, 447, |
| 449, 448, 451, 447, 0, 448, 447, 0, 448, 449, |
| 450, 451, 0, 449, 0, 451, 449, 450, 451, 450, |
| 452, 452, 453, 450, 0, 0, 450, 0, 0, 452, |
| 457, 453, 454, 452, 0, 453, 452, 0, 453, 457, |
| 454, 454, 458, 457, 0, 454, 457, 459, 454, 0, |
| 0, 458, 460, 460, 0, 458, 459, 458, 458, 0, |
| |
| 459, 460, 461, 459, 462, 460, 0, 461, 460, 466, |
| 463, 461, 0, 462, 0, 461, 464, 462, 461, 463, |
| 462, 463, 465, 463, 466, 464, 463, 0, 0, 464, |
| 464, 465, 464, 466, 467, 465, 468, 466, 465, 0, |
| 466, 0, 469, 467, 470, 468, 0, 467, 0, 468, |
| 467, 469, 468, 470, 471, 469, 0, 470, 469, 470, |
| 470, 0, 0, 471, 472, 472, 0, 471, 0, 0, |
| 471, 0, 0, 472, 471, 473, 473, 472, 0, 0, |
| 472, 474, 474, 475, 473, 0, 0, 0, 473, 476, |
| 474, 473, 475, 475, 474, 0, 475, 474, 476, 475, |
| |
| 477, 0, 476, 0, 476, 476, 478, 0, 478, 477, |
| 479, 0, 0, 477, 0, 0, 477, 478, 480, 479, |
| 481, 478, 0, 479, 478, 479, 479, 480, 484, 481, |
| 0, 480, 0, 481, 480, 483, 481, 482, 482, 0, |
| 483, 0, 0, 484, 483, 0, 482, 0, 483, 486, |
| 482, 483, 484, 482, 485, 485, 484, 0, 486, 484, |
| 487, 0, 486, 485, 0, 486, 0, 485, 0, 487, |
| 485, 488, 488, 487, 487, 0, 487, 491, 0, 490, |
| 488, 0, 0, 0, 488, 492, 491, 488, 490, 490, |
| 491, 494, 490, 491, 492, 490, 493, 0, 492, 495, |
| |
| 494, 492, 496, 0, 494, 493, 493, 494, 497, 493, |
| 0, 496, 493, 498, 495, 496, 496, 497, 496, 499, |
| 499, 497, 498, 495, 497, 500, 498, 495, 499, 498, |
| 495, 501, 499, 502, 500, 499, 0, 0, 500, 503, |
| 501, 500, 502, 0, 501, 504, 502, 501, 503, 502, |
| 505, 506, 503, 0, 504, 503, 506, 0, 504, 505, |
| 506, 504, 507, 505, 506, 0, 505, 506, 508, 0, |
| 509, 507, 0, 508, 0, 507, 510, 508, 507, 509, |
| 0, 508, 507, 509, 508, 510, 509, 511, 512, 510, |
| 0, 0, 510, 513, 0, 0, 511, 512, 0, 515, |
| |
| 511, 512, 513, 511, 512, 514, 513, 517, 515, 513, |
| 514, 0, 515, 518, 514, 515, 517, 0, 514, 519, |
| 517, 514, 518, 517, 520, 0, 518, 0, 519, 518, |
| 0, 521, 519, 520, 521, 519, 522, 520, 0, 520, |
| 520, 522, 523, 521, 524, 522, 0, 521, 0, 522, |
| 521, 523, 522, 524, 525, 523, 0, 524, 523, 524, |
| 524, 0, 526, 525, 0, 0, 0, 525, 0, 525, |
| 525, 526, 527, 0, 528, 526, 0, 526, 526, 0, |
| 0, 527, 527, 528, 529, 527, 0, 528, 527, 530, |
| 528, 0, 531, 529, 529, 531, 0, 529, 530, 0, |
| |
| 529, 534, 530, 530, 531, 530, 532, 0, 531, 0, |
| 534, 531, 533, 0, 534, 532, 532, 534, 0, 532, |
| 535, 533, 532, 535, 0, 533, 0, 533, 533, 0, |
| 0, 536, 535, 0, 536, 0, 535, 0, 0, 535, |
| 536, 0, 537, 538, 536, 537, 0, 536, 0, 0, |
| 0, 537, 538, 539, 0, 537, 538, 538, 537, 538, |
| 0, 541, 539, 540, 540, 0, 539, 539, 0, 539, |
| 541, 542, 540, 543, 541, 0, 540, 541, 0, 540, |
| 542, 544, 543, 0, 542, 0, 543, 542, 543, 543, |
| 544, 545, 546, 0, 544, 0, 544, 544, 0, 0, |
| |
| 545, 546, 0, 547, 545, 546, 547, 545, 546, 548, |
| 548, 0, 547, 0, 550, 549, 547, 0, 548, 547, |
| 549, 0, 548, 550, 549, 548, 551, 550, 549, 0, |
| 550, 549, 552, 0, 553, 551, 0, 0, 0, 551, |
| 554, 552, 551, 553, 0, 552, 0, 553, 552, 554, |
| 553, 555, 0, 554, 555, 0, 554, 0, 0, 556, |
| 556, 0, 0, 555, 557, 558, 0, 555, 556, 0, |
| 555, 0, 556, 557, 558, 556, 559, 557, 558, 0, |
| 557, 558, 560, 0, 0, 559, 0, 561, 0, 559, |
| 0, 560, 559, 562, 0, 560, 561, 560, 560, 563, |
| |
| 561, 0, 562, 561, 564, 0, 562, 0, 563, 562, |
| 566, 0, 563, 564, 0, 563, 0, 564, 564, 566, |
| 564, 565, 565, 566, 567, 567, 566, 0, 0, 0, |
| 568, 565, 0, 567, 0, 565, 0, 567, 565, 568, |
| 567, 0, 0, 568, 0, 0, 568, 570, 570, 570, |
| 570, 570, 570, 571, 571, 571, 571, 571, 571, 572, |
| 572, 572, 572, 573, 573, 573, 573, 573, 574, 574, |
| 574, 574, 574, 575, 575, 575, 575, 576, 576, 576, |
| 576, 576, 577, 577, 577, 577, 577, 578, 578, 578, |
| 579, 579, 579, 579, 581, 581, 581, 581, 582, 0, |
| |
| 582, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, |
| 569, 569 |
| } ; |
| |
| /* The intent behind this definition is that it'll catch |
| * any uses of REJECT which flex missed. |
| */ |
| #define REJECT reject_used_but_not_detected |
| #define yymore() yymore_used_but_not_detected |
| #define YY_MORE_ADJ 0 |
| #define YY_RESTORE_YY_MORE_OFFSET |
| /**
|
| * @file yang.l
|
| * @author Pavol Vican
|
| * @brief YANG parser for libyang (flex grammar)
|
| *
|
| * Copyright (c) 2015 CESNET, z.s.p.o.
|
| *
|
| * This source code is licensed under BSD 3-Clause License (the "License").
|
| * You may not use this file except in compliance with the License.
|
| * You may obtain a copy of the License at
|
| *
|
| * https://opensource.org/licenses/BSD-3-Clause
|
| */
|
| #define YY_NO_INPUT 1 |
| #include "parser_yang.h"
|
| #include "parser_yang_bis.h"
|
|
|
| #define YY_USER_ACTION yylloc->first_line = yylloc->last_line = 0;\
|
| yylloc->first_column = yylloc->last_column +1;\
|
| yylloc->last_column = yylloc->first_column + yyleng - 1;
|
|
|
| #define INITIAL 0 |
| #define COMMENT1 1 |
| #define COMMENT2 2 |
| #define PATH 3 |
| |
| #ifndef YY_NO_UNISTD_H |
| /* Special case for "unistd.h", since it is non-ANSI. We include it way |
| * down here because we want the user's section 1 to have been scanned first. |
| * The user has a chance to override it with an option. |
| */ |
| #include <unistd.h> |
| #endif |
| |
| #ifndef YY_EXTRA_TYPE |
| #define YY_EXTRA_TYPE void * |
| #endif |
| |
| /* Holds the entire state of the reentrant scanner. */ |
| struct yyguts_t |
| { |
| |
| /* User-defined. Not touched by flex. */ |
| YY_EXTRA_TYPE yyextra_r; |
| |
| /* The rest are the same as the globals declared in the non-reentrant scanner. */ |
| FILE *yyin_r, *yyout_r; |
| size_t yy_buffer_stack_top; /**< index of top of stack. */ |
| size_t yy_buffer_stack_max; /**< capacity of stack. */ |
| YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ |
| char yy_hold_char; |
| yy_size_t yy_n_chars; |
| yy_size_t yyleng_r; |
| char *yy_c_buf_p; |
| int yy_init; |
| int yy_start; |
| int yy_did_buffer_switch_on_eof; |
| int yy_start_stack_ptr; |
| int yy_start_stack_depth; |
| int *yy_start_stack; |
| yy_state_type yy_last_accepting_state; |
| char* yy_last_accepting_cpos; |
| |
| int yylineno_r; |
| int yy_flex_debug_r; |
| |
| char *yytext_r; |
| int yy_more_flag; |
| int yy_more_len; |
| |
| YYSTYPE * yylval_r; |
| |
| YYLTYPE * yylloc_r; |
| |
| }; /* end struct yyguts_t */ |
| |
| static int yy_init_globals (yyscan_t yyscanner ); |
| |
| /* This must go here because YYSTYPE and YYLTYPE are included |
| * from bison output in section 1.*/ |
| # define yylval yyg->yylval_r |
| |
| # define yylloc yyg->yylloc_r |
| |
| int yylex_init (yyscan_t* scanner); |
| |
| int yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); |
| |
| /* Accessor methods to globals. |
| These are made visible to non-reentrant scanners for convenience. */ |
| |
| int yylex_destroy (yyscan_t yyscanner ); |
| |
| int yyget_debug (yyscan_t yyscanner ); |
| |
| void yyset_debug (int debug_flag ,yyscan_t yyscanner ); |
| |
| YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner ); |
| |
| void yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); |
| |
| FILE *yyget_in (yyscan_t yyscanner ); |
| |
| void yyset_in (FILE * _in_str ,yyscan_t yyscanner ); |
| |
| FILE *yyget_out (yyscan_t yyscanner ); |
| |
| void yyset_out (FILE * _out_str ,yyscan_t yyscanner ); |
| |
| yy_size_t yyget_leng (yyscan_t yyscanner ); |
| |
| char *yyget_text (yyscan_t yyscanner ); |
| |
| int yyget_lineno (yyscan_t yyscanner ); |
| |
| void yyset_lineno (int _line_number ,yyscan_t yyscanner ); |
| |
| int yyget_column (yyscan_t yyscanner ); |
| |
| void yyset_column (int _column_no ,yyscan_t yyscanner ); |
| |
| YYSTYPE * yyget_lval (yyscan_t yyscanner ); |
| |
| void yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner ); |
| |
| YYLTYPE *yyget_lloc (yyscan_t yyscanner ); |
| |
| void yyset_lloc (YYLTYPE * yylloc_param ,yyscan_t yyscanner ); |
| |
| /* Macros after this point can all be overridden by user definitions in |
| * section 1. |
| */ |
| |
| #ifndef YY_SKIP_YYWRAP |
| #ifdef __cplusplus |
| extern "C" int yywrap (yyscan_t yyscanner ); |
| #else |
| extern int yywrap (yyscan_t yyscanner ); |
| #endif |
| #endif |
| |
| #ifndef YY_NO_UNPUT |
| |
| #endif |
| |
| #ifndef yytext_ptr |
| static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); |
| #endif |
| |
| #ifdef YY_NEED_STRLEN |
| static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); |
| #endif |
| |
| #ifndef YY_NO_INPUT |
| |
| #ifdef __cplusplus |
| static int yyinput (yyscan_t yyscanner ); |
| #else |
| static int input (yyscan_t yyscanner ); |
| #endif |
| |
| #endif |
| |
| /* Amount of stuff to slurp up with each read. */ |
| #ifndef YY_READ_BUF_SIZE |
| #ifdef __ia64__ |
| /* On IA-64, the buffer size is 16k, not 8k */ |
| #define YY_READ_BUF_SIZE 16384 |
| #else |
| #define YY_READ_BUF_SIZE 8192 |
| #endif /* __ia64__ */ |
| #endif |
| |
| /* Copy whatever the last rule matched to the standard output. */ |
| #ifndef ECHO |
| /* This used to be an fputs(), but since the string might contain NUL's, |
| * we now use fwrite(). |
| */ |
| #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) |
| #endif |
| |
| /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, |
| * is returned in "result". |
| */ |
| #ifndef YY_INPUT |
| #define YY_INPUT(buf,result,max_size) \ |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ |
| { \ |
| int c = '*'; \ |
| size_t n; \ |
| for ( n = 0; n < max_size && \ |
| (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ |
| buf[n] = (char) c; \ |
| if ( c == '\n' ) \ |
| buf[n++] = (char) c; \ |
| if ( c == EOF && ferror( yyin ) ) \ |
| YY_FATAL_ERROR( "input in flex scanner failed" ); \ |
| result = n; \ |
| } \ |
| else \ |
| { \ |
| errno=0; \ |
| while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ |
| { \ |
| if( errno != EINTR) \ |
| { \ |
| YY_FATAL_ERROR( "input in flex scanner failed" ); \ |
| break; \ |
| } \ |
| errno=0; \ |
| clearerr(yyin); \ |
| } \ |
| }\ |
| \ |
| |
| #endif |
| |
| /* No semi-colon after return; correct usage is to write "yyterminate();" - |
| * we don't want an extra ';' after the "return" because that will cause |
| * some compilers to complain about unreachable statements. |
| */ |
| #ifndef yyterminate |
| #define yyterminate() return YY_NULL |
| #endif |
| |
| /* Number of entries by which start-condition stack grows. */ |
| #ifndef YY_START_STACK_INCR |
| #define YY_START_STACK_INCR 25 |
| #endif |
| |
| /* Report a fatal error. */ |
| #ifndef YY_FATAL_ERROR |
| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) |
| #endif |
| |
| /* end tables serialization structures and prototypes */ |
| |
| /* Default declaration of generated scanner - a define so the user can |
| * easily add parameters. |
| */ |
| #ifndef YY_DECL |
| #define YY_DECL_IS_OURS 1 |
| |
| extern int yylex \ |
| (YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner); |
| |
| #define YY_DECL int yylex \ |
| (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner) |
| #endif /* !YY_DECL */ |
| |
| /* Code executed at the beginning of each rule, after yytext and yyleng |
| * have been set up. |
| */ |
| #ifndef YY_USER_ACTION |
| #define YY_USER_ACTION |
| #endif |
| |
| /* Code executed at the end of each rule. */ |
| #ifndef YY_BREAK |
| #define YY_BREAK /*LINTED*/break; |
| #endif |
| |
| #define YY_RULE_SETUP \ |
| YY_USER_ACTION |
| |
| /** The main scanner function which does all the work. |
| */ |
| YY_DECL |
| { |
| yy_state_type yy_current_state; |
| char *yy_cp, *yy_bp; |
| int yy_act; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| yylval = yylval_param; |
| |
| yylloc = yylloc_param; |
| |
| if ( !yyg->yy_init ) |
| { |
| yyg->yy_init = 1; |
| |
| #ifdef YY_USER_INIT |
| YY_USER_INIT; |
| #endif |
| |
| if ( ! yyg->yy_start ) |
| yyg->yy_start = 1; /* first start state */ |
| |
| if ( ! yyin ) |
| yyin = stdin; |
| |
| if ( ! yyout ) |
| yyout = stdout; |
| |
| if ( ! YY_CURRENT_BUFFER ) { |
| yyensure_buffer_stack (yyscanner); |
| YY_CURRENT_BUFFER_LVALUE = |
| yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); |
| } |
| |
| yy_load_buffer_state(yyscanner ); |
| } |
| |
| { |
| |
| while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ |
| { |
| yy_cp = yyg->yy_c_buf_p; |
| |
| /* Support of yytext. */ |
| *yy_cp = yyg->yy_hold_char; |
| |
| /* yy_bp points to the position in yy_ch_buf of the start of |
| * the current run. |
| */ |
| yy_bp = yy_cp; |
| |
| yy_current_state = yyg->yy_start; |
| yy_match: |
| do |
| { |
| YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; |
| if ( yy_accept[yy_current_state] ) |
| { |
| yyg->yy_last_accepting_state = yy_current_state; |
| yyg->yy_last_accepting_cpos = yy_cp; |
| } |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| { |
| yy_current_state = (int) yy_def[yy_current_state]; |
| if ( yy_current_state >= 570 ) |
| yy_c = yy_meta[(unsigned int) yy_c]; |
| } |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
| ++yy_cp; |
| } |
| while ( yy_base[yy_current_state] != 3202 ); |
| |
| yy_find_action: |
| yy_act = yy_accept[yy_current_state]; |
| if ( yy_act == 0 ) |
| { /* have to back up */ |
| yy_cp = yyg->yy_last_accepting_cpos; |
| yy_current_state = yyg->yy_last_accepting_state; |
| yy_act = yy_accept[yy_current_state]; |
| } |
| |
| YY_DO_BEFORE_ACTION; |
| |
| do_action: /* This label is used only to access EOF actions. */ |
| |
| switch ( yy_act ) |
| { /* beginning of action switch */ |
| case 0: /* must back up */ |
| /* undo the effects of YY_DO_BEFORE_ACTION */ |
| *yy_cp = yyg->yy_hold_char; |
| yy_cp = yyg->yy_last_accepting_cpos; |
| yy_current_state = yyg->yy_last_accepting_state; |
| goto yy_find_action; |
| |
| case 1: |
| YY_RULE_SETUP |
| {BEGIN COMMENT1; }
|
| YY_BREAK |
| case 2: |
| case 3: |
| /* rule 3 can match eol */ |
| YY_RULE_SETUP |
| |
| YY_BREAK |
| case 4: |
| YY_RULE_SETUP |
| {BEGIN INITIAL; }
|
| YY_BREAK |
| case 5: |
| YY_RULE_SETUP |
| {BEGIN COMMENT2;}
|
| YY_BREAK |
| case 6: |
| YY_RULE_SETUP |
| |
| YY_BREAK |
| case 7: |
| /* rule 7 can match eol */ |
| case 8: |
| /* rule 8 can match eol */ |
| YY_RULE_SETUP |
| {BEGIN INITIAL; return EOL; }
|
| YY_BREAK |
| case 9: |
| YY_RULE_SETUP |
| { return ANYXML_KEYWORD; }
|
| YY_BREAK |
| case 10: |
| YY_RULE_SETUP |
| { return ARGUMENT_KEYWORD; }
|
| YY_BREAK |
| case 11: |
| YY_RULE_SETUP |
| { BEGIN PATH; return AUGMENT_KEYWORD; }
|
| YY_BREAK |
| case 12: |
| YY_RULE_SETUP |
| { return BASE_KEYWORD; }
|
| YY_BREAK |
| case 13: |
| YY_RULE_SETUP |
| { return BELONGS_TO_KEYWORD; }
|
| YY_BREAK |
| case 14: |
| YY_RULE_SETUP |
| { return BIT_KEYWORD; }
|
| YY_BREAK |
| case 15: |
| YY_RULE_SETUP |
| { return CASE_KEYWORD; }
|
| YY_BREAK |
| case 16: |
| YY_RULE_SETUP |
| { return CHOICE_KEYWORD; }
|
| YY_BREAK |
| case 17: |
| YY_RULE_SETUP |
| { return CONFIG_KEYWORD; }
|
| YY_BREAK |
| case 18: |
| YY_RULE_SETUP |
| { return CONTACT_KEYWORD; }
|
| YY_BREAK |
| case 19: |
| YY_RULE_SETUP |
| { return CONTAINER_KEYWORD; }
|
| YY_BREAK |
| case 20: |
| YY_RULE_SETUP |
| { return DEFAULT_KEYWORD; }
|
| YY_BREAK |
| case 21: |
| YY_RULE_SETUP |
| { return DESCRIPTION_KEYWORD; }
|
| YY_BREAK |
| case 22: |
| YY_RULE_SETUP |
| { return ENUM_KEYWORD; }
|
| YY_BREAK |
| case 23: |
| YY_RULE_SETUP |
| { return ERROR_APP_TAG_KEYWORD; }
|
| YY_BREAK |
| case 24: |
| YY_RULE_SETUP |
| { return ERROR_MESSAGE_KEYWORD; }
|
| YY_BREAK |
| case 25: |
| YY_RULE_SETUP |
| { return EXTENSION_KEYWORD; }
|
| YY_BREAK |
| case 26: |
| YY_RULE_SETUP |
| { BEGIN PATH; return DEVIATION_KEYWORD; }
|
| YY_BREAK |
| case 27: |
| YY_RULE_SETUP |
| { return DEVIATE_KEYWORD; }
|
| YY_BREAK |
| case 28: |
| YY_RULE_SETUP |
| { return FEATURE_KEYWORD; }
|
| YY_BREAK |
| case 29: |
| YY_RULE_SETUP |
| { return FRACTION_DIGITS_KEYWORD; }
|
| YY_BREAK |
| case 30: |
| YY_RULE_SETUP |
| { return GROUPING_KEYWORD; }
|
| YY_BREAK |
| case 31: |
| YY_RULE_SETUP |
| { return IDENTITY_KEYWORD; }
|
| YY_BREAK |
| case 32: |
| YY_RULE_SETUP |
| { return IF_FEATURE_KEYWORD; }
|
| YY_BREAK |
| case 33: |
| YY_RULE_SETUP |
| { return IMPORT_KEYWORD; }
|
| YY_BREAK |
| case 34: |
| YY_RULE_SETUP |
| { return INCLUDE_KEYWORD; }
|
| YY_BREAK |
| case 35: |
| YY_RULE_SETUP |
| { return INPUT_KEYWORD; }
|
| YY_BREAK |
| case 36: |
| YY_RULE_SETUP |
| { return KEY_KEYWORD; }
|
| YY_BREAK |
| case 37: |
| YY_RULE_SETUP |
| { return LEAF_KEYWORD; }
|
| YY_BREAK |
| case 38: |
| YY_RULE_SETUP |
| { return LEAF_LIST_KEYWORD; }
|
| YY_BREAK |
| case 39: |
| YY_RULE_SETUP |
| { return LENGTH_KEYWORD; }
|
| YY_BREAK |
| case 40: |
| YY_RULE_SETUP |
| { return LIST_KEYWORD; }
|
| YY_BREAK |
| case 41: |
| YY_RULE_SETUP |
| { return MANDATORY_KEYWORD; }
|
| YY_BREAK |
| case 42: |
| YY_RULE_SETUP |
| { return MAX_ELEMENTS_KEYWORD; }
|
| YY_BREAK |
| case 43: |
| YY_RULE_SETUP |
| { return MIN_ELEMENTS_KEYWORD; }
|
| YY_BREAK |
| case 44: |
| YY_RULE_SETUP |
| { return MODULE_KEYWORD; }
|
| YY_BREAK |
| case 45: |
| YY_RULE_SETUP |
| { return MUST_KEYWORD; }
|
| YY_BREAK |
| case 46: |
| YY_RULE_SETUP |
| { return NAMESPACE_KEYWORD; }
|
| YY_BREAK |
| case 47: |
| YY_RULE_SETUP |
| { return NOTIFICATION_KEYWORD; }
|
| YY_BREAK |
| case 48: |
| YY_RULE_SETUP |
| { return ORDERED_BY_KEYWORD; }
|
| YY_BREAK |
| case 49: |
| YY_RULE_SETUP |
| { return ORGANIZATION_KEYWORD; }
|
| YY_BREAK |
| case 50: |
| YY_RULE_SETUP |
| { return OUTPUT_KEYWORD; }
|
| YY_BREAK |
| case 51: |
| YY_RULE_SETUP |
| { BEGIN PATH; return PATH_KEYWORD; }
|
| YY_BREAK |
| case 52: |
| YY_RULE_SETUP |
| { return PATTERN_KEYWORD; }
|
| YY_BREAK |
| case 53: |
| YY_RULE_SETUP |
| { return POSITION_KEYWORD; }
|
| YY_BREAK |
| case 54: |
| YY_RULE_SETUP |
| { return PREFIX_KEYWORD; }
|
| YY_BREAK |
| case 55: |
| YY_RULE_SETUP |
| { return PRESENCE_KEYWORD; }
|
| YY_BREAK |
| case 56: |
| YY_RULE_SETUP |
| { return RANGE_KEYWORD; }
|
| YY_BREAK |
| case 57: |
| YY_RULE_SETUP |
| { return REFERENCE_KEYWORD; }
|
| YY_BREAK |
| case 58: |
| YY_RULE_SETUP |
| { BEGIN PATH; return REFINE_KEYWORD; }
|
| YY_BREAK |
| case 59: |
| YY_RULE_SETUP |
| { return REQUIRE_INSTANCE_KEYWORD; }
|
| YY_BREAK |
| case 60: |
| YY_RULE_SETUP |
| { return REVISION_KEYWORD; }
|
| YY_BREAK |
| case 61: |
| YY_RULE_SETUP |
| { return REVISION_DATE_KEYWORD; }
|
| YY_BREAK |
| case 62: |
| YY_RULE_SETUP |
| { return RPC_KEYWORD; }
|
| YY_BREAK |
| case 63: |
| YY_RULE_SETUP |
| { return STATUS_KEYWORD; }
|
| YY_BREAK |
| case 64: |
| YY_RULE_SETUP |
| { return SUBMODULE_KEYWORD; }
|
| YY_BREAK |
| case 65: |
| YY_RULE_SETUP |
| { return TYPE_KEYWORD; }
|
| YY_BREAK |
| case 66: |
| YY_RULE_SETUP |
| { return TYPEDEF_KEYWORD; }
|
| YY_BREAK |
| case 67: |
| YY_RULE_SETUP |
| { BEGIN PATH; return UNIQUE_KEYWORD; }
|
| YY_BREAK |
| case 68: |
| YY_RULE_SETUP |
| { return UNITS_KEYWORD; }
|
| YY_BREAK |
| case 69: |
| YY_RULE_SETUP |
| { return USES_KEYWORD; }
|
| YY_BREAK |
| case 70: |
| YY_RULE_SETUP |
| { return VALUE_KEYWORD; }
|
| YY_BREAK |
| case 71: |
| YY_RULE_SETUP |
| { return WHEN_KEYWORD; }
|
| YY_BREAK |
| case 72: |
| YY_RULE_SETUP |
| { return YANG_VERSION_KEYWORD; }
|
| YY_BREAK |
| case 73: |
| YY_RULE_SETUP |
| { return YIN_ELEMENT_KEYWORD; }
|
| YY_BREAK |
| case 74: |
| YY_RULE_SETUP |
| { return ADD_KEYWORD; }
|
| YY_BREAK |
| case 75: |
| YY_RULE_SETUP |
| { return CURRENT_KEYWORD; }
|
| YY_BREAK |
| case 76: |
| YY_RULE_SETUP |
| { return CURRENT_KEYWORD; }
|
| YY_BREAK |
| case 77: |
| YY_RULE_SETUP |
| { return DELETE_KEYWORD; }
|
| YY_BREAK |
| case 78: |
| YY_RULE_SETUP |
| { return DEPRECATED_KEYWORD; }
|
| YY_BREAK |
| case 79: |
| YY_RULE_SETUP |
| { return FALSE_KEYWORD; }
|
| YY_BREAK |
| case 80: |
| YY_RULE_SETUP |
| { return NOT_SUPPORTED_KEYWORD; }
|
| YY_BREAK |
| case 81: |
| YY_RULE_SETUP |
| { return OBSOLETE_KEYWORD; }
|
| YY_BREAK |
| case 82: |
| YY_RULE_SETUP |
| { return REPLACE_KEYWORD; }
|
| YY_BREAK |
| case 83: |
| YY_RULE_SETUP |
| { return SYSTEM_KEYWORD; }
|
| YY_BREAK |
| case 84: |
| YY_RULE_SETUP |
| { return TRUE_KEYWORD; }
|
| YY_BREAK |
| case 85: |
| YY_RULE_SETUP |
| { return UNBOUNDED_KEYWORD; }
|
| YY_BREAK |
| case 86: |
| YY_RULE_SETUP |
| { return USER_KEYWORD; }
|
| YY_BREAK |
| case 87: |
| case 88: |
| case 89: |
| case 90: |
| YY_RULE_SETUP |
| { return yytext[0];} /* unsolved problem with concatenate string '+' */
|
| YY_BREAK |
| case 91: |
| /* rule 91 can match eol */ |
| YY_RULE_SETUP |
| {return STRING;}
|
| YY_BREAK |
| case 92: |
| /* rule 92 can match eol */ |
| YY_RULE_SETUP |
| {return STRING;}
|
| YY_BREAK |
| case 93: |
| YY_RULE_SETUP |
| {return ZERO;}
|
| YY_BREAK |
| case 94: |
| YY_RULE_SETUP |
| {return INTEGER;}
|
| YY_BREAK |
| case 95: |
| YY_RULE_SETUP |
| {return NON_NEGATIVE_INTEGER;}
|
| YY_BREAK |
| case 96: |
| case 97: |
| case 98: |
| case 99: |
| case 100: |
| case 101: |
| case 102: |
| YY_RULE_SETUP |
| {return yytext[0];}
|
| YY_BREAK |
| case 103: |
| YY_RULE_SETUP |
| {return DOUBLEDOT;}
|
| YY_BREAK |
| case 104: |
| /* rule 104 can match eol */ |
| case 105: |
| /* rule 105 can match eol */ |
| YY_RULE_SETUP |
| { yylloc->last_column = 0; return EOL;}
|
| YY_BREAK |
| case 106: |
| YY_RULE_SETUP |
| { return WHITESPACE;}
|
| YY_BREAK |
| case 107: |
| case 108: |
| YY_RULE_SETUP |
| {BEGIN INITIAL; return yytext[0];}
|
| YY_BREAK |
| case 109: |
| /* rule 109 can match eol */ |
| YY_RULE_SETUP |
| {return STRING;}
|
| YY_BREAK |
| case 110: |
| /* rule 110 can match eol */ |
| YY_RULE_SETUP |
| {return STRING;}
|
| YY_BREAK |
| case 111: |
| YY_RULE_SETUP |
| {BEGIN COMMENT2;}
|
| YY_BREAK |
| case 112: |
| YY_RULE_SETUP |
| {BEGIN COMMENT1;}
|
| YY_BREAK |
| case 113: |
| YY_RULE_SETUP |
| {return IDENTIFIER;}
|
| YY_BREAK |
| case 114: |
| YY_RULE_SETUP |
| {return IDENTIFIERPREFIX;}
|
| YY_BREAK |
| case 115: |
| YY_RULE_SETUP |
| {return REVISION_DATE;}
|
| YY_BREAK |
| case 116: |
| YY_RULE_SETUP |
| {return IDENTIFIER;}
|
| YY_BREAK |
| case 117: |
| YY_RULE_SETUP |
| {return IDENTIFIERPREFIX;}
|
| YY_BREAK |
| case 118: |
| YY_RULE_SETUP |
| {if (yytext[0]=='/') {
|
| switch(yytext[1]) {
|
| case '*': BEGIN COMMENT1; yyless(2); break;
|
| case '/': yyless(2); BEGIN COMMENT2; break;
|
| default: return STRINGS;
|
| }
|
| } else {return STRINGS;} }
|
| YY_BREAK |
| case 119: |
| /* rule 119 can match eol */ |
| case 120: |
| /* rule 120 can match eol */ |
| YY_RULE_SETUP |
| { yylloc->last_column = 0; return EOL; }
|
| YY_BREAK |
| case 121: |
| YY_RULE_SETUP |
| { return WHITESPACE;}
|
| YY_BREAK |
| case 122: |
| YY_RULE_SETUP |
| { return ERROR;}
|
| YY_BREAK |
| case 123: |
| YY_RULE_SETUP |
| ECHO; |
| YY_BREAK |
| case YY_STATE_EOF(INITIAL): |
| case YY_STATE_EOF(COMMENT1): |
| case YY_STATE_EOF(COMMENT2): |
| case YY_STATE_EOF(PATH): |
| yyterminate(); |
| |
| case YY_END_OF_BUFFER: |
| { |
| /* Amount of text matched not including the EOB char. */ |
| int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; |
| |
| /* Undo the effects of YY_DO_BEFORE_ACTION. */ |
| *yy_cp = yyg->yy_hold_char; |
| YY_RESTORE_YY_MORE_OFFSET |
| |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) |
| { |
| /* We're scanning a new file or input source. It's |
| * possible that this happened because the user |
| * just pointed yyin at a new source and called |
| * yylex(). If so, then we have to assure |
| * consistency between YY_CURRENT_BUFFER and our |
| * globals. Here is the right place to do so, because |
| * this is the first action (other than possibly a |
| * back-up) that will match for the new input source. |
| */ |
| yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; |
| YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; |
| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; |
| } |
| |
| /* Note that here we test for yy_c_buf_p "<=" to the position |
| * of the first EOB in the buffer, since yy_c_buf_p will |
| * already have been incremented past the NUL character |
| * (since all states make transitions on EOB to the |
| * end-of-buffer state). Contrast this with the test |
| * in input(). |
| */ |
| if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) |
| { /* This was really a NUL. */ |
| yy_state_type yy_next_state; |
| |
| yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; |
| |
| yy_current_state = yy_get_previous_state( yyscanner ); |
| |
| /* Okay, we're now positioned to make the NUL |
| * transition. We couldn't have |
| * yy_get_previous_state() go ahead and do it |
| * for us because it doesn't know how to deal |
| * with the possibility of jamming (and we don't |
| * want to build jamming into it because then it |
| * will run more slowly). |
| */ |
| |
| yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); |
| |
| yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; |
| |
| if ( yy_next_state ) |
| { |
| /* Consume the NUL. */ |
| yy_cp = ++yyg->yy_c_buf_p; |
| yy_current_state = yy_next_state; |
| goto yy_match; |
| } |
| |
| else |
| { |
| yy_cp = yyg->yy_c_buf_p; |
| goto yy_find_action; |
| } |
| } |
| |
| else switch ( yy_get_next_buffer( yyscanner ) ) |
| { |
| case EOB_ACT_END_OF_FILE: |
| { |
| yyg->yy_did_buffer_switch_on_eof = 0; |
| |
| if ( yywrap(yyscanner ) ) |
| { |
| /* Note: because we've taken care in |
| * yy_get_next_buffer() to have set up |
| * yytext, we can now set up |
| * yy_c_buf_p so that if some total |
| * hoser (like flex itself) wants to |
| * call the scanner after we return the |
| * YY_NULL, it'll still work - another |
| * YY_NULL will get returned. |
| */ |
| yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; |
| |
| yy_act = YY_STATE_EOF(YY_START); |
| goto do_action; |
| } |
| |
| else |
| { |
| if ( ! yyg->yy_did_buffer_switch_on_eof ) |
| YY_NEW_FILE; |
| } |
| break; |
| } |
| |
| case EOB_ACT_CONTINUE_SCAN: |
| yyg->yy_c_buf_p = |
| yyg->yytext_ptr + yy_amount_of_matched_text; |
| |
| yy_current_state = yy_get_previous_state( yyscanner ); |
| |
| yy_cp = yyg->yy_c_buf_p; |
| yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; |
| goto yy_match; |
| |
| case EOB_ACT_LAST_MATCH: |
| yyg->yy_c_buf_p = |
| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; |
| |
| yy_current_state = yy_get_previous_state( yyscanner ); |
| |
| yy_cp = yyg->yy_c_buf_p; |
| yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; |
| goto yy_find_action; |
| } |
| break; |
| } |
| |
| default: |
| YY_FATAL_ERROR( |
| "fatal flex scanner internal error--no action found" ); |
| } /* end of action switch */ |
| } /* end of scanning one token */ |
| } /* end of user's declarations */ |
| } /* end of yylex */ |
| |
| /* yy_get_next_buffer - try to read in a new buffer |
| * |
| * Returns a code representing an action: |
| * EOB_ACT_LAST_MATCH - |
| * EOB_ACT_CONTINUE_SCAN - continue scanning from current position |
| * EOB_ACT_END_OF_FILE - end of file |
| */ |
| static int yy_get_next_buffer (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; |
| char *source = yyg->yytext_ptr; |
| yy_size_t number_to_move, i; |
| int ret_val; |
| |
| if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) |
| YY_FATAL_ERROR( |
| "fatal flex scanner internal error--end of buffer missed" ); |
| |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) |
| { /* Don't try to fill the buffer, so this is an EOF. */ |
| if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) |
| { |
| /* We matched a single character, the EOB, so |
| * treat this as a final EOF. |
| */ |
| return EOB_ACT_END_OF_FILE; |
| } |
| |
| else |
| { |
| /* We matched some text prior to the EOB, first |
| * process it. |
| */ |
| return EOB_ACT_LAST_MATCH; |
| } |
| } |
| |
| /* Try to read more data. */ |
| |
| /* First move last chars to start of buffer. */ |
| number_to_move = (yy_size_t) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1; |
| |
| for ( i = 0; i < number_to_move; ++i ) |
| *(dest++) = *(source++); |
| |
| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) |
| /* don't do the read, it's not guaranteed to return an EOF, |
| * just force an EOF |
| */ |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; |
| |
| else |
| { |
| yy_size_t num_to_read = |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; |
| |
| while ( num_to_read <= 0 ) |
| { /* Not enough room in the buffer - grow it. */ |
| |
| /* just a shorter name for the current buffer */ |
| YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; |
| |
| int yy_c_buf_p_offset = |
| (int) (yyg->yy_c_buf_p - b->yy_ch_buf); |
| |
| if ( b->yy_is_our_buffer ) |
| { |
| yy_size_t new_size = b->yy_buf_size * 2; |
| |
| if ( new_size <= 0 ) |
| b->yy_buf_size += b->yy_buf_size / 8; |
| else |
| b->yy_buf_size *= 2; |
| |
| b->yy_ch_buf = (char *) |
| /* Include room in for 2 EOB chars. */ |
| yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner ); |
| } |
| else |
| /* Can't grow it, we don't own it. */ |
| b->yy_ch_buf = 0; |
| |
| if ( ! b->yy_ch_buf ) |
| YY_FATAL_ERROR( |
| "fatal error - scanner input buffer overflow" ); |
| |
| yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; |
| |
| num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - |
| number_to_move - 1; |
| |
| } |
| |
| if ( num_to_read > YY_READ_BUF_SIZE ) |
| num_to_read = YY_READ_BUF_SIZE; |
| |
| /* Read in more data. */ |
| YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), |
| yyg->yy_n_chars, num_to_read ); |
| |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; |
| } |
| |
| if ( yyg->yy_n_chars == 0 ) |
| { |
| if ( number_to_move == YY_MORE_ADJ ) |
| { |
| ret_val = EOB_ACT_END_OF_FILE; |
| yyrestart(yyin ,yyscanner); |
| } |
| |
| else |
| { |
| ret_val = EOB_ACT_LAST_MATCH; |
| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = |
| YY_BUFFER_EOF_PENDING; |
| } |
| } |
| |
| else |
| ret_val = EOB_ACT_CONTINUE_SCAN; |
| |
| if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { |
| /* Extend the array by 50%, plus the number we really need. */ |
| yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner ); |
| if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) |
| YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); |
| } |
| |
| yyg->yy_n_chars += number_to_move; |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; |
| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; |
| |
| yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; |
| |
| return ret_val; |
| } |
| |
| /* yy_get_previous_state - get the state just before the EOB char was reached */ |
| |
| static yy_state_type yy_get_previous_state (yyscan_t yyscanner) |
| { |
| yy_state_type yy_current_state; |
| char *yy_cp; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| yy_current_state = yyg->yy_start; |
| |
| for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) |
| { |
| YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); |
| if ( yy_accept[yy_current_state] ) |
| { |
| yyg->yy_last_accepting_state = yy_current_state; |
| yyg->yy_last_accepting_cpos = yy_cp; |
| } |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| { |
| yy_current_state = (int) yy_def[yy_current_state]; |
| if ( yy_current_state >= 570 ) |
| yy_c = yy_meta[(unsigned int) yy_c]; |
| } |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
| } |
| |
| return yy_current_state; |
| } |
| |
| /* yy_try_NUL_trans - try to make a transition on the NUL character |
| * |
| * synopsis |
| * next_state = yy_try_NUL_trans( current_state ); |
| */ |
| static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) |
| { |
| int yy_is_jam; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ |
| char *yy_cp = yyg->yy_c_buf_p; |
| |
| YY_CHAR yy_c = 1; |
| if ( yy_accept[yy_current_state] ) |
| { |
| yyg->yy_last_accepting_state = yy_current_state; |
| yyg->yy_last_accepting_cpos = yy_cp; |
| } |
| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
| { |
| yy_current_state = (int) yy_def[yy_current_state]; |
| if ( yy_current_state >= 570 ) |
| yy_c = yy_meta[(unsigned int) yy_c]; |
| } |
| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
| yy_is_jam = (yy_current_state == 569); |
| |
| (void)yyg; |
| return yy_is_jam ? 0 : yy_current_state; |
| } |
| |
| #ifndef YY_NO_UNPUT |
| |
| #endif |
| |
| #ifndef YY_NO_INPUT |
| #ifdef __cplusplus |
| static int yyinput (yyscan_t yyscanner) |
| #else |
| static int input (yyscan_t yyscanner) |
| #endif |
| |
| { |
| int c; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| *yyg->yy_c_buf_p = yyg->yy_hold_char; |
| |
| if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) |
| { |
| /* yy_c_buf_p now points to the character we want to return. |
| * If this occurs *before* the EOB characters, then it's a |
| * valid NUL; if not, then we've hit the end of the buffer. |
| */ |
| if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) |
| /* This was really a NUL. */ |
| *yyg->yy_c_buf_p = '\0'; |
| |
| else |
| { /* need more input */ |
| yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr; |
| ++yyg->yy_c_buf_p; |
| |
| switch ( yy_get_next_buffer( yyscanner ) ) |
| { |
| case EOB_ACT_LAST_MATCH: |
| /* This happens because yy_g_n_b() |
| * sees that we've accumulated a |
| * token and flags that we need to |
| * try matching the token before |
| * proceeding. But for input(), |
| * there's no matching to consider. |
| * So convert the EOB_ACT_LAST_MATCH |
| * to EOB_ACT_END_OF_FILE. |
| */ |
| |
| /* Reset buffer status. */ |
| yyrestart(yyin ,yyscanner); |
| |
| /*FALLTHROUGH*/ |
| |
| case EOB_ACT_END_OF_FILE: |
| { |
| if ( yywrap(yyscanner ) ) |
| return EOF; |
| |
| if ( ! yyg->yy_did_buffer_switch_on_eof ) |
| YY_NEW_FILE; |
| #ifdef __cplusplus |
| return yyinput(yyscanner); |
| #else |
| return input(yyscanner); |
| #endif |
| } |
| |
| case EOB_ACT_CONTINUE_SCAN: |
| yyg->yy_c_buf_p = yyg->yytext_ptr + offset; |
| break; |
| } |
| } |
| } |
| |
| c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ |
| *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ |
| yyg->yy_hold_char = *++yyg->yy_c_buf_p; |
| |
| return c; |
| } |
| #endif /* ifndef YY_NO_INPUT */ |
| |
| /** Immediately switch to a different input stream. |
| * @param input_file A readable stream. |
| * @param yyscanner The scanner object. |
| * @note This function does not reset the start condition to @c INITIAL . |
| */ |
| void yyrestart (FILE * input_file , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| if ( ! YY_CURRENT_BUFFER ){ |
| yyensure_buffer_stack (yyscanner); |
| YY_CURRENT_BUFFER_LVALUE = |
| yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); |
| } |
| |
| yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner); |
| yy_load_buffer_state(yyscanner ); |
| } |
| |
| /** Switch to a different input buffer. |
| * @param new_buffer The new input buffer. |
| * @param yyscanner The scanner object. |
| */ |
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| /* TODO. We should be able to replace this entire function body |
| * with |
| * yypop_buffer_state(); |
| * yypush_buffer_state(new_buffer); |
| */ |
| yyensure_buffer_stack (yyscanner); |
| if ( YY_CURRENT_BUFFER == new_buffer ) |
| return; |
| |
| if ( YY_CURRENT_BUFFER ) |
| { |
| /* Flush out information for old buffer. */ |
| *yyg->yy_c_buf_p = yyg->yy_hold_char; |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; |
| } |
| |
| YY_CURRENT_BUFFER_LVALUE = new_buffer; |
| yy_load_buffer_state(yyscanner ); |
| |
| /* We don't actually know whether we did this switch during |
| * EOF (yywrap()) processing, but the only time this flag |
| * is looked at is after yywrap() is called, so it's safe |
| * to go ahead and always set it. |
| */ |
| yyg->yy_did_buffer_switch_on_eof = 1; |
| } |
| |
| static void yy_load_buffer_state (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; |
| yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; |
| yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; |
| yyg->yy_hold_char = *yyg->yy_c_buf_p; |
| } |
| |
| /** Allocate and initialize an input buffer state. |
| * @param file A readable stream. |
| * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. |
| * @param yyscanner The scanner object. |
| * @return the allocated buffer state. |
| */ |
| YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) |
| { |
| YY_BUFFER_STATE b; |
| |
| b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); |
| if ( ! b ) |
| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
| |
| b->yy_buf_size = (yy_size_t)size; |
| |
| /* yy_ch_buf has to be 2 characters longer than the size given because |
| * we need to put in 2 end-of-buffer characters. |
| */ |
| b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ,yyscanner ); |
| if ( ! b->yy_ch_buf ) |
| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
| |
| b->yy_is_our_buffer = 1; |
| |
| yy_init_buffer(b,file ,yyscanner); |
| |
| return b; |
| } |
| |
| /** Destroy the buffer. |
| * @param b a buffer created with yy_create_buffer() |
| * @param yyscanner The scanner object. |
| */ |
| void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| if ( ! b ) |
| return; |
| |
| if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ |
| YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; |
| |
| if ( b->yy_is_our_buffer ) |
| yyfree((void *) b->yy_ch_buf ,yyscanner ); |
| |
| yyfree((void *) b ,yyscanner ); |
| } |
| |
| /* Initializes or reinitializes a buffer. |
| * This function is sometimes called more than once on the same buffer, |
| * such as during a yyrestart() or at EOF. |
| */ |
| static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) |
| |
| { |
| int oerrno = errno; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| yy_flush_buffer(b ,yyscanner); |
| |
| b->yy_input_file = file; |
| b->yy_fill_buffer = 1; |
| |
| /* If b is the current buffer, then yy_init_buffer was _probably_ |
| * called from yyrestart() or through yy_get_next_buffer. |
| * In that case, we don't want to reset the lineno or column. |
| */ |
| if (b != YY_CURRENT_BUFFER){ |
| b->yy_bs_lineno = 1; |
| b->yy_bs_column = 0; |
| } |
| |
| b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; |
| |
| errno = oerrno; |
| } |
| |
| /** Discard all buffered characters. On the next scan, YY_INPUT will be called. |
| * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. |
| * @param yyscanner The scanner object. |
| */ |
| void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| if ( ! b ) |
| return; |
| |
| b->yy_n_chars = 0; |
| |
| /* We always need two end-of-buffer characters. The first causes |
| * a transition to the end-of-buffer state. The second causes |
| * a jam in that state. |
| */ |
| b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; |
| b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; |
| |
| b->yy_buf_pos = &b->yy_ch_buf[0]; |
| |
| b->yy_at_bol = 1; |
| b->yy_buffer_status = YY_BUFFER_NEW; |
| |
| if ( b == YY_CURRENT_BUFFER ) |
| yy_load_buffer_state(yyscanner ); |
| } |
| |
| /** Pushes the new state onto the stack. The new state becomes |
| * the current state. This function will allocate the stack |
| * if necessary. |
| * @param new_buffer The new state. |
| * @param yyscanner The scanner object. |
| */ |
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| if (new_buffer == NULL) |
| return; |
| |
| yyensure_buffer_stack(yyscanner); |
| |
| /* This block is copied from yy_switch_to_buffer. */ |
| if ( YY_CURRENT_BUFFER ) |
| { |
| /* Flush out information for old buffer. */ |
| *yyg->yy_c_buf_p = yyg->yy_hold_char; |
| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; |
| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; |
| } |
| |
| /* Only push if top exists. Otherwise, replace top. */ |
| if (YY_CURRENT_BUFFER) |
| yyg->yy_buffer_stack_top++; |
| YY_CURRENT_BUFFER_LVALUE = new_buffer; |
| |
| /* copied from yy_switch_to_buffer. */ |
| yy_load_buffer_state(yyscanner ); |
| yyg->yy_did_buffer_switch_on_eof = 1; |
| } |
| |
| /** Removes and deletes the top of the stack, if present. |
| * The next element becomes the new top. |
| * @param yyscanner The scanner object. |
| */ |
| void yypop_buffer_state (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| if (!YY_CURRENT_BUFFER) |
| return; |
| |
| yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner); |
| YY_CURRENT_BUFFER_LVALUE = NULL; |
| if (yyg->yy_buffer_stack_top > 0) |
| --yyg->yy_buffer_stack_top; |
| |
| if (YY_CURRENT_BUFFER) { |
| yy_load_buffer_state(yyscanner ); |
| yyg->yy_did_buffer_switch_on_eof = 1; |
| } |
| } |
| |
| /* Allocates the stack if it does not exist. |
| * Guarantees space for at least one push. |
| */ |
| static void yyensure_buffer_stack (yyscan_t yyscanner) |
| { |
| yy_size_t num_to_alloc; |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| if (!yyg->yy_buffer_stack) { |
| |
| /* First allocation is just for 2 elements, since we don't know if this |
| * scanner will even need a stack. We use 2 instead of 1 to avoid an |
| * immediate realloc on the next call. |
| */ |
| num_to_alloc = 1; // After all that talk, this was set to 1 anyways... |
| yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc |
| (num_to_alloc * sizeof(struct yy_buffer_state*) |
| , yyscanner); |
| if ( ! yyg->yy_buffer_stack ) |
| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); |
| |
| memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); |
| |
| yyg->yy_buffer_stack_max = num_to_alloc; |
| yyg->yy_buffer_stack_top = 0; |
| return; |
| } |
| |
| if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ |
| |
| /* Increase the buffer to prepare for a possible push. */ |
| yy_size_t grow_size = 8 /* arbitrary grow size */; |
| |
| num_to_alloc = yyg->yy_buffer_stack_max + grow_size; |
| yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc |
| (yyg->yy_buffer_stack, |
| num_to_alloc * sizeof(struct yy_buffer_state*) |
| , yyscanner); |
| if ( ! yyg->yy_buffer_stack ) |
| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); |
| |
| /* zero only the new slots.*/ |
| memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); |
| yyg->yy_buffer_stack_max = num_to_alloc; |
| } |
| } |
| |
| /** Setup the input buffer state to scan directly from a user-specified character buffer. |
| * @param base the character buffer |
| * @param size the size in bytes of the character buffer |
| * @param yyscanner The scanner object. |
| * @return the newly allocated buffer state object. |
| */ |
| YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) |
| { |
| YY_BUFFER_STATE b; |
| |
| if ( size < 2 || |
| base[size-2] != YY_END_OF_BUFFER_CHAR || |
| base[size-1] != YY_END_OF_BUFFER_CHAR ) |
| /* They forgot to leave room for the EOB's. */ |
| return 0; |
| |
| b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); |
| if ( ! b ) |
| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); |
| |
| b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ |
| b->yy_buf_pos = b->yy_ch_buf = base; |
| b->yy_is_our_buffer = 0; |
| b->yy_input_file = 0; |
| b->yy_n_chars = b->yy_buf_size; |
| b->yy_is_interactive = 0; |
| b->yy_at_bol = 1; |
| b->yy_fill_buffer = 0; |
| b->yy_buffer_status = YY_BUFFER_NEW; |
| |
| yy_switch_to_buffer(b ,yyscanner ); |
| |
| return b; |
| } |
| |
| /** Setup the input buffer state to scan a string. The next call to yylex() will |
| * scan from a @e copy of @a str. |
| * @param yystr a NUL-terminated string to scan |
| * @param yyscanner The scanner object. |
| * @return the newly allocated buffer state object. |
| * @note If you want to scan bytes that may contain NUL values, then use |
| * yy_scan_bytes() instead. |
| */ |
| YY_BUFFER_STATE yy_scan_string (yyconst char * yystr , yyscan_t yyscanner) |
| { |
| |
| return yy_scan_bytes(yystr,strlen(yystr) ,yyscanner); |
| } |
| |
| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will |
| * scan from a @e copy of @a bytes. |
| * @param yybytes the byte buffer to scan |
| * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. |
| * @param yyscanner The scanner object. |
| * @return the newly allocated buffer state object. |
| */ |
| YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner) |
| { |
| YY_BUFFER_STATE b; |
| char *buf; |
| yy_size_t n; |
| yy_size_t i; |
| |
| /* Get memory for full buffer, including space for trailing EOB's. */ |
| n = _yybytes_len + 2; |
| buf = (char *) yyalloc(n ,yyscanner ); |
| if ( ! buf ) |
| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); |
| |
| for ( i = 0; i < _yybytes_len; ++i ) |
| buf[i] = yybytes[i]; |
| |
| buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; |
| |
| b = yy_scan_buffer(buf,n ,yyscanner); |
| if ( ! b ) |
| YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); |
| |
| /* It's okay to grow etc. this buffer, and we should throw it |
| * away when we're done. |
| */ |
| b->yy_is_our_buffer = 1; |
| |
| return b; |
| } |
| |
| #ifndef YY_EXIT_FAILURE |
| #define YY_EXIT_FAILURE 2 |
| #endif |
| |
| static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| (void)yyg; |
| (void) fprintf( stderr, "%s\n", msg ); |
| exit( YY_EXIT_FAILURE ); |
| } |
| |
| /* Redefine yyless() so it works in section 3 code. */ |
| |
| #undef yyless |
| #define yyless(n) \ |
| do \ |
| { \ |
| /* Undo effects of setting up yytext. */ \ |
| yy_size_t yyless_macro_arg = (n); \ |
| YY_LESS_LINENO(yyless_macro_arg);\ |
| yytext[yyleng] = yyg->yy_hold_char; \ |
| yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ |
| yyg->yy_hold_char = *yyg->yy_c_buf_p; \ |
| *yyg->yy_c_buf_p = '\0'; \ |
| yyleng = yyless_macro_arg; \ |
| } \ |
| while ( 0 ) |
| |
| /* Accessor methods (get/set functions) to struct members. */ |
| |
| /** Get the user-defined data for this scanner. |
| * @param yyscanner The scanner object. |
| */ |
| YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yyextra; |
| } |
| |
| /** Get the current line number. |
| * @param yyscanner The scanner object. |
| */ |
| int yyget_lineno (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| if (! YY_CURRENT_BUFFER) |
| return 0; |
| |
| return yylineno; |
| } |
| |
| /** Get the current column number. |
| * @param yyscanner The scanner object. |
| */ |
| int yyget_column (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| if (! YY_CURRENT_BUFFER) |
| return 0; |
| |
| return yycolumn; |
| } |
| |
| /** Get the input stream. |
| * @param yyscanner The scanner object. |
| */ |
| FILE *yyget_in (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yyin; |
| } |
| |
| /** Get the output stream. |
| * @param yyscanner The scanner object. |
| */ |
| FILE *yyget_out (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yyout; |
| } |
| |
| /** Get the length of the current token. |
| * @param yyscanner The scanner object. |
| */ |
| yy_size_t yyget_leng (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yyleng; |
| } |
| |
| /** Get the current token. |
| * @param yyscanner The scanner object. |
| */ |
| |
| char *yyget_text (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yytext; |
| } |
| |
| /** Set the user-defined data. This data is never touched by the scanner. |
| * @param user_defined The data to be associated with this scanner. |
| * @param yyscanner The scanner object. |
| */ |
| void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yyextra = user_defined ; |
| } |
| |
| /** Set the current line number. |
| * @param _line_number line number |
| * @param yyscanner The scanner object. |
| */ |
| void yyset_lineno (int _line_number , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| /* lineno is only valid if an input buffer exists. */ |
| if (! YY_CURRENT_BUFFER ) |
| YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); |
| |
| yylineno = _line_number; |
| } |
| |
| /** Set the current column. |
| * @param _column_no column number |
| * @param yyscanner The scanner object. |
| */ |
| void yyset_column (int _column_no , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| /* column is only valid if an input buffer exists. */ |
| if (! YY_CURRENT_BUFFER ) |
| YY_FATAL_ERROR( "yyset_column called with no buffer" ); |
| |
| yycolumn = _column_no; |
| } |
| |
| /** Set the input stream. This does not discard the current |
| * input buffer. |
| * @param _in_str A readable stream. |
| * @param yyscanner The scanner object. |
| * @see yy_switch_to_buffer |
| */ |
| void yyset_in (FILE * _in_str , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yyin = _in_str ; |
| } |
| |
| void yyset_out (FILE * _out_str , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yyout = _out_str ; |
| } |
| |
| int yyget_debug (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yy_flex_debug; |
| } |
| |
| void yyset_debug (int _bdebug , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yy_flex_debug = _bdebug ; |
| } |
| |
| /* Accessor methods for yylval and yylloc */ |
| |
| YYSTYPE * yyget_lval (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yylval; |
| } |
| |
| void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yylval = yylval_param; |
| } |
| |
| YYLTYPE *yyget_lloc (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| return yylloc; |
| } |
| |
| void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| yylloc = yylloc_param; |
| } |
| |
| /* User-visible API */ |
| |
| /* yylex_init is special because it creates the scanner itself, so it is |
| * the ONLY reentrant function that doesn't take the scanner as the last argument. |
| * That's why we explicitly handle the declaration, instead of using our macros. |
| */ |
| |
| int yylex_init(yyscan_t* ptr_yy_globals) |
| |
| { |
| if (ptr_yy_globals == NULL){ |
| errno = EINVAL; |
| return 1; |
| } |
| |
| *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); |
| |
| if (*ptr_yy_globals == NULL){ |
| errno = ENOMEM; |
| return 1; |
| } |
| |
| /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ |
| memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); |
| |
| return yy_init_globals ( *ptr_yy_globals ); |
| } |
| |
| /* yylex_init_extra has the same functionality as yylex_init, but follows the |
| * convention of taking the scanner as the last argument. Note however, that |
| * this is a *pointer* to a scanner, as it will be allocated by this call (and |
| * is the reason, too, why this function also must handle its own declaration). |
| * The user defined value in the first argument will be available to yyalloc in |
| * the yyextra field. |
| */ |
| |
| int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals ) |
| |
| { |
| struct yyguts_t dummy_yyguts; |
| |
| yyset_extra (yy_user_defined, &dummy_yyguts); |
| |
| if (ptr_yy_globals == NULL){ |
| errno = EINVAL; |
| return 1; |
| } |
| |
| *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); |
| |
| if (*ptr_yy_globals == NULL){ |
| errno = ENOMEM; |
| return 1; |
| } |
| |
| /* By setting to 0xAA, we expose bugs in |
| yy_init_globals. Leave at 0x00 for releases. */ |
| memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); |
| |
| yyset_extra (yy_user_defined, *ptr_yy_globals); |
| |
| return yy_init_globals ( *ptr_yy_globals ); |
| } |
| |
| static int yy_init_globals (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| /* Initialization is the same as for the non-reentrant scanner. |
| * This function is called from yylex_destroy(), so don't allocate here. |
| */ |
| |
| yyg->yy_buffer_stack = 0; |
| yyg->yy_buffer_stack_top = 0; |
| yyg->yy_buffer_stack_max = 0; |
| yyg->yy_c_buf_p = (char *) 0; |
| yyg->yy_init = 0; |
| yyg->yy_start = 0; |
| |
| yyg->yy_start_stack_ptr = 0; |
| yyg->yy_start_stack_depth = 0; |
| yyg->yy_start_stack = NULL; |
| |
| /* Defined in main.c */ |
| #ifdef YY_STDINIT |
| yyin = stdin; |
| yyout = stdout; |
| #else |
| yyin = (FILE *) 0; |
| yyout = (FILE *) 0; |
| #endif |
| |
| /* For future reference: Set errno on error, since we are called by |
| * yylex_init() |
| */ |
| return 0; |
| } |
| |
| /* yylex_destroy is for both reentrant and non-reentrant scanners. */ |
| int yylex_destroy (yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| |
| /* Pop the buffer stack, destroying each element. */ |
| while(YY_CURRENT_BUFFER){ |
| yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner ); |
| YY_CURRENT_BUFFER_LVALUE = NULL; |
| yypop_buffer_state(yyscanner); |
| } |
| |
| /* Destroy the stack itself. */ |
| yyfree(yyg->yy_buffer_stack ,yyscanner); |
| yyg->yy_buffer_stack = NULL; |
| |
| /* Destroy the start condition stack. */ |
| yyfree(yyg->yy_start_stack ,yyscanner ); |
| yyg->yy_start_stack = NULL; |
| |
| /* Reset the globals. This is important in a non-reentrant scanner so the next time |
| * yylex() is called, initialization will occur. */ |
| yy_init_globals( yyscanner); |
| |
| /* Destroy the main struct (reentrant only). */ |
| yyfree ( yyscanner , yyscanner ); |
| yyscanner = NULL; |
| return 0; |
| } |
| |
| /* |
| * Internal utility routines. |
| */ |
| |
| #ifndef yytext_ptr |
| static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| (void)yyg; |
| |
| int i; |
| for ( i = 0; i < n; ++i ) |
| s1[i] = s2[i]; |
| } |
| #endif |
| |
| #ifdef YY_NEED_STRLEN |
| static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) |
| { |
| int n; |
| for ( n = 0; s[n]; ++n ) |
| ; |
| |
| return n; |
| } |
| #endif |
| |
| void *yyalloc (yy_size_t size , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| (void)yyg; |
| return (void *) malloc( size ); |
| } |
| |
| void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| (void)yyg; |
| |
| /* The cast to (char *) in the following accommodates both |
| * implementations that use char* generic pointers, and those |
| * that use void* generic pointers. It works with the latter |
| * because both ANSI C and C++ allow castless assignment from |
| * any pointer type to void*, and deal with argument conversions |
| * as though doing an assignment. |
| */ |
| return (void *) realloc( (char *) ptr, size ); |
| } |
| |
| void yyfree (void * ptr , yyscan_t yyscanner) |
| { |
| struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| (void)yyg; |
| free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ |
| } |
| |
| #define YYTABLES_NAME "yytables" |
| |