Lines Matching refs:setError
140 setError(CurrentNode, "not a mapping"); in keys()
167 setError(CurrentNode, "not a mapping"); in preflightKey()
176 setError(CurrentNode, Twine("missing required key '") + Key + "'"); in preflightKey()
201 setError(ReportLoc, Twine("unknown key '") + NN.first() + "'"); in endMapping()
224 setError(CurrentNode, "not a sequence"); in beginSequence()
291 setError(CurrentNode, "unknown enumerated scalar"); in endEnumScalar()
300 setError(CurrentNode, "expected sequence of bit values"); in beginBitSetScalar()
318 setError(CurrentNode, "unexpected scalar in sequence of bit values"); in bitSetMatch()
323 setError(CurrentNode, "expected sequence of bit values"); in bitSetMatch()
335 setError(SQ->Entries[i], "unknown bit value"); in endBitSetScalar()
346 setError(CurrentNode, "unexpected scalar"); in scalarString()
356 void Input::setError(HNode *hnode, const Twine &message) { in setError() function in Input
358 setError(hnode->_node, message); in setError()
371 void Input::setError(Node *node, const Twine &message) { in setError() function in Input
376 void Input::setError(const SMRange &range, const Twine &message) { in setError() function in Input
438 setError(KeyNode, "Map key must be a scalar"); in createHNodes()
440 setError(KeyNode, "Map value must not be empty"); in createHNodes()
453 setError(KeyNode, Twine("duplicated mapping key '") + KeyStr + "'"); in createHNodes()
465 setError(N, "unknown node kind"); in createHNodes()
470 void Input::setError(const Twine &Message) { in setError() function in Input
471 setError(CurrentNode, Message); in setError()
783 void Output::setError(const Twine &message) { in setError() function in Output