Home
last modified time | relevance | path

Searched refs:getFirstLine (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DConversionController.cpp241 throw semantic_error(format_string("line %d: option already set", (*it)->getFirstLine())); in processOptions()
274 …semantic_error(format_string("line %d: constant value is an invalid type", (*it)->getFirstLine())); in processConstants()
304 …rror(format_string("line %d: source definition node is an unexpected type", node->getFirstLine())); in processSources()
312 throw semantic_error(format_string("line %d: source already defined", node->getFirstLine())); in processSources()
361 …ic_error(format_string("line %d: expression didn't evaluate to an integer", expr->getFirstLine())); in processSources()
387 …ntic_error(format_string("line %d: unexpected source definition node type", node->getFirstLine())); in processSources()
415 …antic_error(format_string("line %d: section definition is unexpected type", node->getFirstLine())); in processSections()
423 …r(format_string("line %d: section number did not evaluate to an integer", idExpr->getFirstLine())); in processSections()
478 …w semantic_error(format_string("line %d: unexpected section contents type", node->getFirstLine())); in processSections()
548 …throw semantic_error(format_string("line %d: node is wrong type", assignmentNode->getFirstLine())); in convertAssignmentNodeToValue()
[all …]
H A DElftosbAST.cpp247 …throw std::runtime_error(format_string("line %d: undefined variable '%s'", getFirstLine(), m_varia… in reduce()
299 …throw semantic_error(format_string("line %d: no source file named %s", getFirstLine(), sourceName-… in reduce()
307 throw semantic_error(format_string("line %d: no default source file is set", getFirstLine())); in reduce()
320 …ror(format_string("line %d: source file %s does not support symbols", getFirstLine(), sourceFile->… in reduce()
325 …format_string("line %d: source file %s does not have an entry point", getFirstLine(), sourceFile->… in reduce()
405 …error(format_string("line %d: expression did not evaluate to an integer", m_expr->getFirstLine())); in reduce()
534 …throw semantic_error(format_string("line %d: invalid source file: %s", getFirstLine(), sourceName-… in reduce()
542 throw semantic_error(format_string("line %d: no default source file is set", getFirstLine())); in reduce()
568 …or(format_string("line %d: cannot get size of undefined constant %s", getFirstLine(), m_constantNa… in reduce()
H A DElftosbAST.h77 virtual int getFirstLine() { return m_location.m_firstLine; } in getFirstLine() function