亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ael_lex.c

?? asterisk 是一個很有知名度開源軟件
?? C
?? 第 1 頁 / 共 5 頁
字號:
#include "ael/ael.tab.h"#include "asterisk/ael_structs.h"/* * A stack to keep track of matching brackets ( [ { } ] ) */static char pbcstack[400];	/* XXX missing size checks */static int pbcpos = 0;static void pbcpush(char x);static int pbcpop(char x);static int parencount = 0;/* * A similar stack to keep track of matching brackets ( [ { } ] ) in word tokens surrounded by ${ ... } */static char pbcstack2[400];	/* XXX missing size checks */static int pbcpos2 = 0;static void pbcpush2(char x);static int pbcpop2(char x);static int parencount2 = 0;/* * A similar stack to keep track of matching brackets ( [ { } ] ) in word tokens surrounded by $[ ... ] */static char pbcstack3[400];	/* XXX missing size checks */static int pbcpos3 = 0;static void pbcpush3(char x);static int pbcpop3(char x);static int parencount3 = 0;/* * current line, column and filename, updated as we read the input. */static int my_lineno = 1;	/* current line in the source */static int my_col = 1;		/* current column in the source */char *my_file = 0;		/* used also in the bison code */char *prev_word;		/* XXX document it */#define MAX_INCLUDE_DEPTH 50/* * flex is not too smart, and generates global functions * without prototypes so the compiler may complain. * To avoid that, we declare the prototypes here, * even though these functions are not used. */int ael_yyget_column  (yyscan_t yyscanner);void ael_yyset_column (int  column_no , yyscan_t yyscanner);int ael_yyparse (struct parse_io *);/* * A stack to process include files. * As we switch into the new file we need to store the previous * state to restore it later. */struct stackelement {	char *fname;	int lineno;	int colno;	glob_t globbuf;        /* the current globbuf */	int globbuf_pos;   /* where we are in the current globbuf */	YY_BUFFER_STATE bufstate;};static struct stackelement  include_stack[MAX_INCLUDE_DEPTH];static int include_stack_index = 0;static void setup_filestack(char *fnamebuf, int fnamebuf_siz, glob_t *globbuf, int globpos, yyscan_t xscan, int create);/* * if we use the @n feature of bison, we must supply the start/end * location of tokens in the structure pointed by yylloc. * Simple tokens are just assumed to be on the same line, so * the line number is constant, and the column is incremented * by the length of the token. */#ifdef FLEX_BETA	/* set for 2.5.33 *//* compute the total number of lines and columns in the text * passed as argument. */static void pbcwhere(const char *text, int *line, int *col ){	int loc_line = *line;	int loc_col = *col;	char c;	while ( (c = *text++) ) {		if ( c == '\t' ) {			loc_col += 8 - (loc_col % 8);		} else if ( c == '\n' ) {			loc_line++;			loc_col = 1;		} else			loc_col++;	}	*line = loc_line;	*col = loc_col;}#define	STORE_POS do {							\		yylloc->first_line = yylloc->last_line = my_lineno;	\		yylloc->first_column=my_col;				\		yylloc->last_column=my_col+yyleng-1;			\		my_col+=yyleng;						\	} while (0)#define	STORE_LOC do {					\		yylloc->first_line = my_lineno;		\		yylloc->first_column=my_col;		\		pbcwhere(yytext, &my_lineno, &my_col);	\		yylloc->last_line = my_lineno;		\		yylloc->last_column = my_col - 1;	\	} while (0)#else#define	STORE_POS#define	STORE_LOC#endif#line 955 "ael_lex.c"#define INITIAL 0#define paren 1#define semic 2#define argg 3#define comment 4#define curlystate 5#define wordstate 6#define brackstate 7#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;    int yy_n_chars;    int 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 ael_yylex_init (yyscan_t* scanner);int ael_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 ael_yylex_destroy (yyscan_t yyscanner );int ael_yyget_debug (yyscan_t yyscanner );void ael_yyset_debug (int debug_flag ,yyscan_t yyscanner );YY_EXTRA_TYPE ael_yyget_extra (yyscan_t yyscanner );void ael_yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );FILE *ael_yyget_in (yyscan_t yyscanner );void ael_yyset_in  (FILE * in_str ,yyscan_t yyscanner );FILE *ael_yyget_out (yyscan_t yyscanner );void ael_yyset_out  (FILE * out_str ,yyscan_t yyscanner );int ael_yyget_leng (yyscan_t yyscanner );char *ael_yyget_text (yyscan_t yyscanner );int ael_yyget_lineno (yyscan_t yyscanner );void ael_yyset_lineno (int line_number ,yyscan_t yyscanner );YYSTYPE * ael_yyget_lval (yyscan_t yyscanner );void ael_yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner );       YYLTYPE *ael_yyget_lloc (yyscan_t yyscanner );            void ael_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 __cplusplusextern "C" int ael_yywrap (yyscan_t yyscanner );#elseextern int ael_yywrap (yyscan_t yyscanner );#endif#endif    static void yyunput (int c,char *buf_ptr  ,yyscan_t yyscanner);    #ifndef yytext_ptrstatic void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);#endif#ifdef YY_NEED_STRLENstatic int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);#endif#ifndef YY_NO_INPUT#ifdef __cplusplusstatic int yyinput (yyscan_t yyscanner );#elsestatic int input (yyscan_t yyscanner );#endif#endif/* Amount of stuff to slurp up with each read. */#ifndef YY_READ_BUF_SIZE#define YY_READ_BUF_SIZE 8192#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 1extern int ael_yylex \               (YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner);#define YY_DECL int ael_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 break;#endif#define YY_RULE_SETUP \	YY_USER_ACTION/** The main scanner function which does all the work. */YY_DECL{	register yy_state_type yy_current_state;	register char *yy_cp, *yy_bp;	register int yy_act;    struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;#line 217 "ael.flex"#line 1206 "ael_lex.c"    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 ) {			ael_yyensure_buffer_stack (yyscanner);			YY_CURRENT_BUFFER_LVALUE =				ael_yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);		}		ael_yy_load_buffer_state(yyscanner );		}	while ( 1 )		/* loops until end-of-file is reached */		{		yyg->yy_more_len = 0;		if ( yyg->yy_more_flag )			{			yyg->yy_more_len = yyg->yy_c_buf_p - yyg->yytext_ptr;			yyg->yy_more_flag = 0;			}		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;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本成人中文字幕在线视频| 亚洲精品成人悠悠色影视| 99国产精品久久久久| 丝瓜av网站精品一区二区| 国产日韩一级二级三级| 777xxx欧美| 99在线热播精品免费| 韩国女主播成人在线| 夜夜精品视频一区二区| 国产精品色呦呦| 亚洲自拍欧美精品| 五月综合激情婷婷六月色窝| 国产日韩av一区二区| 欧美一区二区三区日韩视频| caoporn国产一区二区| 精品亚洲aⅴ乱码一区二区三区| 亚洲黄色免费电影| 国产精品久久毛片| 欧美极品少妇xxxxⅹ高跟鞋| 3d动漫精品啪啪一区二区竹菊 | 一区二区三区中文免费| 久久久.com| 欧美精品一区二区不卡 | 欧美一级片在线看| 欧美调教femdomvk| 色噜噜夜夜夜综合网| 99热99精品| 成人高清免费观看| 成人丝袜18视频在线观看| 国产一区二区视频在线播放| 蜜臀av一区二区| 免费xxxx性欧美18vr| 日韩电影在线一区| 午夜欧美大尺度福利影院在线看| 亚洲美女区一区| 亚洲视频免费在线观看| 国产精品视频九色porn| 国产精品毛片a∨一区二区三区| 国产三级精品三级| 国产精品久久毛片a| 一区二区中文视频| 一区二区三区四区国产精品| 一区二区免费视频| 亚洲成av人片在www色猫咪| 亚洲小说春色综合另类电影| 亚洲一区二区美女| 亚洲国产一区二区三区青草影视 | 亚洲色欲色欲www在线观看| 国产精品免费aⅴ片在线观看| 国产日韩欧美高清在线| 中文字幕的久久| 亚洲免费在线观看| 亚洲午夜视频在线观看| 午夜久久久久久久久久一区二区| 亚洲bt欧美bt精品| 麻豆国产精品一区二区三区 | 欧美一区二区美女| 日韩免费在线观看| 精品久久久久香蕉网| 亚洲国产精品精华液2区45| 国产精品乱子久久久久| 亚洲精品免费播放| 日日摸夜夜添夜夜添精品视频| 麻豆精品一区二区av白丝在线| 国产精品一色哟哟哟| 91在线丨porny丨国产| 欧美日韩二区三区| 国产精品久久久久9999吃药| 亚洲一级在线观看| 久久99精品国产| 99国产精品国产精品久久| 欧美性大战久久久久久久| 日韩视频123| 国产精品久久久久久久裸模| 亚洲午夜精品一区二区三区他趣| 日韩电影在线免费观看| 成人免费黄色大片| 欧美色大人视频| 久久综合久久综合亚洲| 一区二区久久久久| 国产美女精品人人做人人爽 | 欧美不卡在线视频| 亚洲视频网在线直播| 蜜桃久久久久久| 成人v精品蜜桃久久一区| 88在线观看91蜜桃国自产| 国产清纯在线一区二区www| 亚洲va在线va天堂| 成人网在线免费视频| 91麻豆精品国产91久久久久 | 亚洲va欧美va人人爽| 国产精华液一区二区三区| 欧美在线观看视频一区二区三区 | 亚洲三级在线免费| 国内外成人在线| 欧美亚洲综合一区| 日本一区二区三区电影| 日韩av电影天堂| 91丝袜国产在线播放| 精品国产一区二区亚洲人成毛片| 亚洲激情网站免费观看| 国产美女精品在线| 91精品欧美一区二区三区综合在| 一色桃子久久精品亚洲| 韩国精品一区二区| 欧美日本国产一区| 亚洲精品高清在线| 成人小视频在线| 欧美精品一区二区三区蜜桃| 午夜精品成人在线视频| 日韩精品中文字幕一区二区三区| 天堂午夜影视日韩欧美一区二区| 中文字幕一区二区三区四区不卡| 免费人成在线不卡| 欧美日韩在线播放| 亚洲视频免费观看| 国产99精品视频| 久久久美女艺术照精彩视频福利播放| 视频一区视频二区中文字幕| 亚洲一区二区四区蜜桃| 一区二区三区波多野结衣在线观看| 国产剧情av麻豆香蕉精品| 欧美一区二区精品| 奇米影视一区二区三区| 欧美三级在线视频| 亚洲国产人成综合网站| 欧美在线观看视频一区二区三区| 亚洲婷婷在线视频| 91年精品国产| 日韩一区有码在线| 精品日韩一区二区三区免费视频| 日韩av电影天堂| 日韩一区二区免费高清| 日韩精品一二区| 7777精品伊人久久久大香线蕉的 | 久久日韩精品一区二区五区| 日本sm残虐另类| 欧美肥妇free| 视频一区二区三区在线| 91精品国产乱| 免费成人在线播放| 精品国一区二区三区| 蜜臀久久99精品久久久久久9| 在线播放中文字幕一区| 蜜臂av日日欢夜夜爽一区| 欧美一区二区福利在线| 久久91精品久久久久久秒播 | 亚洲激情图片一区| 欧美亚洲一区二区在线| 香蕉av福利精品导航| 欧美一级一区二区| 国内精品久久久久影院色| 久久免费偷拍视频| 91丨九色丨蝌蚪丨老版| 午夜精品视频一区| 日韩欧美视频一区| 欧美日韩一区二区三区在线 | www.日韩大片| 伊人一区二区三区| 在线播放欧美女士性生活| 韩国三级中文字幕hd久久精品| 国产日韩精品一区二区浪潮av| 91香蕉视频污| 丝袜美腿亚洲一区| 久久久久久久久一| 91农村精品一区二区在线| 日韩有码一区二区三区| 国产亚洲人成网站| 色哟哟精品一区| 蜜臀91精品一区二区三区| 欧美激情一区二区| 欧美性视频一区二区三区| 国内一区二区视频| 亚洲精品一二三| 精品日韩在线一区| 91视频在线观看免费| 麻豆国产欧美一区二区三区| 国产精品电影一区二区| 91精品国产综合久久国产大片| 国产另类ts人妖一区二区| 亚洲精品成人少妇| 久久综合中文字幕| 欧美日韩一区高清| 懂色av噜噜一区二区三区av| 亚洲chinese男男1069| 国产色91在线| 欧美日韩精品免费观看视频 | 欧美日韩激情在线| 国产福利不卡视频| 午夜精品福利一区二区蜜股av| 亚洲国产精品精华液2区45| 欧美一区二区三区思思人| 9i在线看片成人免费| 麻豆国产91在线播放| 一区二区日韩电影| 中文av字幕一区| 欧美一级黄色大片| 欧美综合欧美视频| 成人精品视频网站| 久久99久久久久|