• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/

Lines Matching defs:line

60 static	    void			antlr3AsciiSetLine			(pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 line);
124 input->getLine = antlr3AsciiGetLine; /* Return the current line number in the input stream */
125 input->getLineBuf = antlr3AsciiGetLineBuf; /* Return a pointer to the start of the current line being consumed */
126 input->getCharPositionInLine = antlr3AsciiGetCharPosition; /* Return the offset into the current line of input */
127 input->setLine = antlr3AsciiSetLine; /* Set the input stream line number (does not set buffer pointers) */
128 input->setCharPositionInLine = antlr3AsciiSetCharPosition; /* Set the offset in to the current line (does not set any pointers ) */
142 /* Install default line separator character (it can be replaced
221 input->line = 1; /* starts at line 1 */
251 /* Indicate one more character in this line
257 /* Reset for start of a new line of input
259 input->line++;
409 state->line = input->line;
463 input->line = state->line;
536 /** \brief Return the line number as understood by the 8 bit/ASCII input stream.
544 return input->line;
548 * of the current input line as triggered by the end of line character installed
559 /** Return the current offset in to the current line in the input stream.
562 * \return Current line offset
570 /** Set the current line number as understood by the input stream.
573 * \param line Line number to tell the input stream we are on
577 * line number according to some external criterion, such as finding a lexed directive
582 antlr3AsciiSetLine (pANTLR3_INPUT_STREAM input, ANTLR3_UINT32 line)
584 input->line = line;
587 /** Set the current offset in the current line to be a particular setting.