• Home
  • Raw
  • Download

Lines Matching refs:tokenObjectEnd

389   case tokenObjectEnd:  in readValue()
436 token.type_ = tokenObjectEnd; in readToken()
643 if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object in readObject()
648 return recoverFromError(tokenObjectEnd); in readObject()
652 return recoverFromError(tokenObjectEnd); in readObject()
661 "Missing ':' after object member name", colon, tokenObjectEnd); in readObject()
668 return recoverFromError(tokenObjectEnd); in readObject()
672 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
675 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); in readObject()
680 if (comma.type_ == tokenObjectEnd) in readObject()
684 "Missing '}' or object member name", tokenName, tokenObjectEnd); in readObject()
1154 tokenObjectEnd, enumerator
1347 case tokenObjectEnd: in readValue()
1394 token.type_ = tokenObjectEnd; in readToken()
1600 if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object in readObject()
1605 return recoverFromError(tokenObjectEnd); in readObject()
1609 return recoverFromError(tokenObjectEnd); in readObject()
1618 "Missing ':' after object member name", colon, tokenObjectEnd); in readObject()
1624 msg, tokenName, tokenObjectEnd); in readObject()
1631 return recoverFromError(tokenObjectEnd); in readObject()
1635 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
1638 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); in readObject()
1643 if (comma.type_ == tokenObjectEnd) in readObject()
1647 "Missing '}' or object member name", tokenName, tokenObjectEnd); in readObject()