HomeSort by relevance Sort by last modified time
    Searched refs:CheckedError (Results 1 - 2 of 2) sorted by null

  /external/flatbuffers/src/
idl_parser.cpp 56 // CheckedError object, and return straight away on error.
75 CheckedError Parser::Error(const std::string &msg) {
84 return CheckedError(true);
87 inline CheckedError NoError() { return CheckedError(false); }
90 CheckedError Parser::CheckBitsFit(int64_t val, size_t bits) {
105 template<typename T> inline CheckedError atot(const char *s, Parser &parser,
112 template<> inline CheckedError atot<uint64_t>(const char *s, Parser &parser,
118 template<> inline CheckedError atot<bool>(const char *s, Parser &parser,
124 template<> inline CheckedError atot<float>(const char *s, Parser &parser
    [all...]
  /external/flatbuffers/include/flatbuffers/
idl.h 425 class CheckedError {
427 explicit CheckedError(bool error)
430 CheckedError &operator=(const CheckedError &other) {
437 CheckedError(const CheckedError &other) {
441 ~CheckedError() { assert(has_been_checked_); }
453 #define FLATBUFFERS_CHECKED_ERROR CheckedError \
456 #define FLATBUFFERS_CHECKED_ERROR CheckedError

Completed in 58 milliseconds