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

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
error.h 53 // ParseErrorCode
59 enum ParseErrorCode {
87 //! Result of parsing (wraps ParseErrorCode)
106 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {}
109 ParseErrorCode Code() const { return code_; }
119 bool operator==(ParseErrorCode code) const { return code_ == code; }
120 friend bool operator==(ParseErrorCode code, const ParseResult & err) { return code == err.code_; }
125 void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; }
128 ParseErrorCode code_;
142 typedef const RAPIDJSON_ERROR_CHARTYPE* (*GetParseErrorFunc)(ParseErrorCode);
    [all...]
en.h 25 \param parseErrorCode Error code obtained in parsing.
30 inline const RAPIDJSON_ERROR_CHARTYPE* GetParseError_En(ParseErrorCode parseErrorCode) {
31 switch (parseErrorCode) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/messagereader/
messagereader.cpp 73 ParseErrorCode e = reader.GetParseErrorCode();
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h 62 \param parseErrorCode \ref rapidjson::ParseErrorCode of the error
73 #define RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode,offset) \
74 throw ParseException(parseErrorCode, #parseErrorCode, offset)
80 ParseException(rapidjson::ParseErrorCode code, const char* msg, size_t offset)
90 #define RAPIDJSON_PARSE_ERROR_NORETURN(parseErrorCode, offset) \
93 SetParseError(parseErrorCode, offset); \
100 \param parseErrorCode \ref rapidjson::ParseErrorCode of the error
    [all...]
document.h     [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 591 ParseErrorCode TestString(const typename Encoding::Ch* str) {
643 ParseErrorCode error = TestString<UTF8<> >(e);
    [all...]

Completed in 5728 milliseconds