Searched refs:CheckedError (Results 1 – 2 of 2) sorted by relevance
/external/flatbuffers/src/ |
D | idl_parser.cpp | 75 CheckedError Parser::Error(const std::string &msg) { in Error() 84 return CheckedError(true); in Error() 87 inline CheckedError NoError() { return CheckedError(false); } in NoError() 90 CheckedError Parser::CheckBitsFit(int64_t val, size_t bits) { in CheckBitsFit() 105 template<typename T> inline CheckedError atot(const char *s, Parser &parser, in atot() 112 template<> inline CheckedError atot<uint64_t>(const char *s, Parser &parser, in atot() 118 template<> inline CheckedError atot<bool>(const char *s, Parser &parser, in atot() 124 template<> inline CheckedError atot<float>(const char *s, Parser &parser, in atot() 130 template<> inline CheckedError atot<double>(const char *s, Parser &parser, in atot() 137 template<> inline CheckedError atot<Offset<void>>(const char *s, Parser &parser, in atot() [all …]
|
/external/flatbuffers/include/flatbuffers/ |
D | idl.h | 425 class CheckedError { 427 explicit CheckedError(bool error) in CheckedError() function 430 CheckedError &operator=(const CheckedError &other) { 437 CheckedError(const CheckedError &other) { in CheckedError() function 441 ~CheckedError() { assert(has_been_checked_); } in ~CheckedError() 453 #define FLATBUFFERS_CHECKED_ERROR CheckedError \ 456 #define FLATBUFFERS_CHECKED_ERROR CheckedError
|