Home
last modified time | relevance | path

Searched refs:m_firstLine (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.cpp36 m_location.m_firstLine = first.m_firstLine; in setLocation()
42 m_location.m_firstLine = first->getLocation().m_firstLine; in setLocation()
107 if (current.m_firstLine == 0) in updateLocation()
113 if (loc.m_firstLine < current.m_firstLine) in updateLocation()
115 current.m_firstLine = loc.m_firstLine; in updateLocation()
H A Delftosb_lexer.l27 m_location.m_firstLine = m_line; \
267 m_location.m_firstLine = m_blobFirstLine;
H A Delftosb_parser.y44 (Current).m_firstLine = YYRHSLOC(Rhs, 1).m_firstLine; \
49 (Current).m_firstLine = (Current).m_lastLine = YYRHSLOC(Rhs, 0).m_lastLine; \
976 throw syntax_error(format_string("line %d: %s\n", yylloc->m_firstLine, error)); in yyerror()
H A Delftosb_parser.tab.cpp173 (Current).m_firstLine = YYRHSLOC(Rhs, 1).m_firstLine; \
178 (Current).m_firstLine = (Current).m_lastLine = YYRHSLOC(Rhs, 0).m_lastLine; \
2800 throw syntax_error(format_string("line %d: %s\n", yylloc->m_firstLine, error)); in yyerror()
H A Delftosb_lexer.cpp617 m_location.m_firstLine = m_line; \
1196 m_location.m_firstLine = m_blobFirstLine;
H A DElftosbAST.h27 int m_firstLine; //!< Starting line of the token. member
77 virtual int getFirstLine() { return m_location.m_firstLine; } in getFirstLine()