• Home
  • Raw
  • Download

Lines Matching refs:tokenObjectEnd

404   case tokenObjectEnd:  in readValue()
451 token.type_ = tokenObjectEnd; in readToken()
658 if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object in readObject()
663 return recoverFromError(tokenObjectEnd); in readObject()
667 return recoverFromError(tokenObjectEnd); in readObject()
676 "Missing ':' after object member name", colon, tokenObjectEnd); in readObject()
683 return recoverFromError(tokenObjectEnd); in readObject()
687 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
690 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); in readObject()
695 if (comma.type_ == tokenObjectEnd) in readObject()
699 "Missing '}' or object member name", tokenName, tokenObjectEnd); in readObject()
1131 tokenObjectEnd, enumerator
1353 case tokenObjectEnd: in readValue()
1400 token.type_ = tokenObjectEnd; in readToken()
1634 if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object in readObject()
1639 return recoverFromError(tokenObjectEnd); in readObject()
1643 return recoverFromError(tokenObjectEnd); in readObject()
1652 "Missing ':' after object member name", colon, tokenObjectEnd); in readObject()
1658 msg, tokenName, tokenObjectEnd); in readObject()
1665 return recoverFromError(tokenObjectEnd); in readObject()
1669 (comma.type_ != tokenObjectEnd && comma.type_ != tokenArraySeparator && in readObject()
1672 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd); in readObject()
1677 if (comma.type_ == tokenObjectEnd) in readObject()
1681 "Missing '}' or object member name", tokenName, tokenObjectEnd); in readObject()