Home
last modified time | relevance | path

Searched defs:ParseResult (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/error/
H A Derror.h106 struct ParseResult { struct
109 ParseResult() : code_(kParseErrorNone), offset_(0) {} in ParseResult() argument
111 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {} in ParseResult() function
123 bool operator==(const ParseResult& that) const { return code_ == that.code_; } argument
128 void Clear() { Set(kParseErrorNone); } in Clear()
134 size_t offset_;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dparsing_context.hpp26 using ParseResult = optional<std::unique_ptr<Expression>>; typedef