Lines Matching refs:setError
140 setError(CurrentNode, "not a mapping"); in keys()
165 setError(CurrentNode, "not a mapping"); in preflightKey()
172 setError(CurrentNode, Twine("missing required key '") + Key + "'"); in preflightKey()
195 setError(NN.second.get(), Twine("unknown key '") + NN.first() + "'"); in endMapping()
216 setError(CurrentNode, "not a sequence"); in beginSequence()
283 setError(CurrentNode, "unknown enumerated scalar"); in endEnumScalar()
292 setError(CurrentNode, "expected sequence of bit values"); in beginBitSetScalar()
310 setError(CurrentNode, "unexpected scalar in sequence of bit values"); in bitSetMatch()
315 setError(CurrentNode, "expected sequence of bit values"); in bitSetMatch()
327 setError(SQ->Entries[i].get(), "unknown bit value"); in endBitSetScalar()
338 setError(CurrentNode, "unexpected scalar"); in scalarString()
348 void Input::setError(HNode *hnode, const Twine &message) { in setError() function in Input
350 setError(hnode->_node, message); in setError()
363 void Input::setError(Node *node, const Twine &message) { in setError() function in Input
397 setError(KeyNode, "Map key must be a scalar"); in createHNodes()
399 setError(KeyNode, "Map value must not be empty"); in createHNodes()
417 setError(N, "unknown node kind"); in createHNodes()
422 void Input::setError(const Twine &Message) { in setError() function in Input
423 setError(CurrentNode, Message); in setError()
720 void Output::setError(const Twine &message) { in setError() function in Output