Lines Matching refs:to
36 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
103 /* Promotes a possibly negative, possibly signed char to an unsigned
105 * we want to instead treat it as an 8-bit unsigned char, hence the
110 /* Enter a start condition. This macro really ought to take a parameter,
117 * to BEGIN to return to the state. The YYSTATE alias is for lex
144 /* The state buf must be large enough to hold one state per character in the main buffer.
169 /* Return all but the first "n" matched characters back to the input stream. */
205 * and can realloc() it to grow it, and should free() it to
211 * if we're using stdio for input, then we want to use getc()
212 * instead of fread(), to make sure we stop fetching input after
217 /* Whether we're considered to be at the beginning of a line.
226 /* Whether to try to fill the input buffer when we reach the
235 /* When an EOF's been seen but there's still some text to process
236 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
238 * still have a bunch of tokens to match, though, because of
241 * When we actually see the EOF, we change the status to "new"
256 * future we want to put the buffer states in a more general
275 /* Points to current character in buffer. */
277 static int yy_init = 0; /* whether we need to initialize */
280 /* Flag which is used to allow yywrap()'s to do buffer switches
621 * along with this program; if not, write to the Free Software
667 * down here because we want the user's section 1 to have been scanned first.
668 * The user has a chance to override it with an option.
679 /* Accessor methods to globals.
680 These are made visible to non-reentrant scanners for convenience. */
742 /* Amount of stuff to slurp up with each read. */
752 /* Copy whatever the last rule matched to the standard output. */
754 /* This used to be an fputs(), but since the string might contain NUL's,
796 /* No semi-colon after return; correct usage is to write "yyterminate();" -
798 * some compilers to complain about unreachable statements.
891 /* yy_bp points to the position in yy_ch_buf of the start of
925 do_action: /* This label is used only to access EOF actions. */
1270 * yylex(). If so, then we have to assure
1272 * globals. Here is the right place to do so, because
1281 /* Note that here we test for yy_c_buf_p "<=" to the position
1284 * (since all states make transitions on EOB to the
1296 /* Okay, we're now positioned to make the NUL
1299 * for us because it doesn't know how to deal
1301 * want to build jamming into it because then it
1334 * yy_get_next_buffer() to have set up
1337 * hoser (like flex itself) wants to
1387 /* yy_get_next_buffer - try to read in a new buffer
1406 { /* Don't try to fill the buffer, so this is an EOF. */
1417 /* We matched some text prior to the EOB, first
1424 /* Try to read more data. */
1426 /* First move last chars to start of buffer. */
1433 /* don't do the read, it's not guaranteed to return an EOF,
1556 /* yy_try_NUL_trans - try to make a transition on the NUL character
1602 /* yy_c_buf_p now points to the character we want to return.
1620 * token and flags that we need to
1623 * there's no matching to consider.
1625 * to EOB_ACT_END_OF_FILE.
1664 /** Immediately switch to a different input stream.
1667 * @note This function does not reset the start condition to @c INITIAL .
1682 /** Switch to a different input buffer.
1689 /* TODO. We should be able to replace this entire function body
1712 * to go ahead and always set it.
1741 /* yy_ch_buf has to be 2 characters longer than the size given because
1742 * we need to put in 2 end-of-buffer characters.
1790 * In that case, we don't want to reset the lineno or column.
1803 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1814 * a transition to the end-of-buffer state. The second causes
1891 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1894 num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
1910 /* Increase the buffer to prepare for a possible push. */
1927 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1940 /* They forgot to leave room for the EOB's. */
1947 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1962 /** Setup the input buffer state to scan a string. The next call to yylex() will
1964 * @param yystr a NUL-terminated string to scan
1967 * @note If you want to scan bytes that may contain NUL values, then use
1976 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1978 * @param yybytes the byte buffer to scan
1979 * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
2005 /* It's okay to grow etc. this buffer, and we should throw it
2040 /* Accessor methods (get/set functions) to struct members. */
2203 /* The cast to (char *) in the following accommodates both
2207 * any pointer type to void*, and deal with argument conversions