Lines Matching refs:setError
140 setError(CurrentNode, "not a mapping"); in preflightKey()
147 setError(CurrentNode, Twine("missing required key '") + Key + "'"); in preflightKey()
170 setError(NN.second.get(), Twine("unknown key '") + NN.first() + "'"); in endMapping()
191 setError(CurrentNode, "not a sequence"); in beginSequence()
258 setError(CurrentNode, "unknown enumerated scalar"); in endEnumScalar()
267 setError(CurrentNode, "expected sequence of bit values"); in beginBitSetScalar()
285 setError(CurrentNode, "unexpected scalar in sequence of bit values"); in bitSetMatch()
290 setError(CurrentNode, "expected sequence of bit values"); in bitSetMatch()
302 setError(SQ->Entries[i].get(), "unknown bit value"); in endBitSetScalar()
313 setError(CurrentNode, "unexpected scalar"); in scalarString()
319 void Input::setError(HNode *hnode, const Twine &message) { in setError() function in Input
321 this->setError(hnode->_node, message); in setError()
324 void Input::setError(Node *node, const Twine &message) { in setError() function in Input
356 setError(KeyNode, "Map key must be a scalar"); in createHNodes()
374 setError(N, "unknown node kind"); in createHNodes()
387 void Input::setError(const Twine &Message) { in setError() function in Input
388 this->setError(CurrentNode, Message); in setError()
656 void Output::setError(const Twine &message) { in setError() function in Output