Lines Matching refs:setError
135 setError(CurrentNode, "not a mapping"); in preflightKey()
142 setError(CurrentNode, Twine("missing required key '") + Key + "'"); in preflightKey()
165 setError(NN.second.get(), Twine("unknown key '") + NN.first() + "'"); in endMapping()
182 setError(CurrentNode, "not a sequence"); in beginSequence()
249 setError(CurrentNode, "unknown enumerated scalar"); in endEnumScalar()
258 setError(CurrentNode, "expected sequence of bit values"); in beginBitSetScalar()
276 setError(CurrentNode, "unexpected scalar in sequence of bit values"); in bitSetMatch()
281 setError(CurrentNode, "expected sequence of bit values"); in bitSetMatch()
293 setError(SQ->Entries[i].get(), "unknown bit value"); in endBitSetScalar()
304 setError(CurrentNode, "unexpected scalar"); in scalarString()
308 void Input::setError(HNode *hnode, const Twine &message) { in setError() function in Input
310 this->setError(hnode->_node, message); in setError()
313 void Input::setError(Node *node, const Twine &message) { in setError() function in Input
345 setError(KeyNode, "Map key must be a scalar"); in createHNodes()
366 setError(N, "unknown node kind"); in createHNodes()
379 void Input::setError(const Twine &Message) { in setError() function in Input
380 this->setError(CurrentNode, Message); in setError()
587 void Output::setError(const Twine &message) { in setError() function in Output