Searched refs:ParsingError (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | find_zoom_curve.cpp | 14 optional<variant<const Interpolate*, const Step*, ParsingError>> findZoomCurve(const expression::Ex… in findZoomCurve() 15 optional<variant<const Interpolate*, const Step*, ParsingError>> result; in findZoomCurve() 58 if (result && result->is<ParsingError>()) { in findZoomCurve() 63 …optional<variant<const Interpolate*, const Step*, ParsingError>> childResult(findZoomCurve(&child)… in findZoomCurve() 65 if (childResult->is<ParsingError>()) { in findZoomCurve() 68 result = {ParsingError { in findZoomCurve() 72 result = {ParsingError { in findZoomCurve() 87 [](const ParsingError&) -> variant<std::nullptr_t, const Interpolate*, const Step*> { in findZoomCurveChecked() argument
|
| H A D | parsing_context.cpp | 222 …optional<variant<const Interpolate*, const Step*, ParsingError>> zoomCurve = findZoomCurve(parsed-… in parseLayerPropertyExpression() 226 } else if (zoomCurve->is<ParsingError>()) { in parseLayerPropertyExpression() 227 error(zoomCurve->get<ParsingError>().message); in parseLayerPropertyExpression() 236 for (const ParsingError& parsingError : *errors) { in getCombinedErrors()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/ |
| H A D | parsing_context.hpp | 20 struct ParsingError { struct 23 …bool operator==(const ParsingError& rhs) const { return message == rhs.message && key == rhs.key; } in operator ==() argument 56 ParsingContext() : errors(std::make_shared<std::vector<ParsingError>>()) {} in ParsingContext() 57 …(std::string key_) : key(std::move(key_)), errors(std::make_shared<std::vector<ParsingError>>()) {} in ParsingContext() 60 errors(std::make_shared<std::vector<ParsingError>>()) in ParsingContext() 69 const std::vector<ParsingError>& getErrors() const { return *errors; } in getErrors() 141 std::shared_ptr<std::vector<ParsingError>> errors_, in ParsingContext() 163 std::shared_ptr<std::vector<ParsingError>> errors;
|
| H A D | find_zoom_curve.hpp | 14 optional<variant<const Interpolate*, const Step*, ParsingError>> findZoomCurve(const expression::Ex…
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/openbox/files/ |
| H A D | 0001-openbox-xdg-autostart-convert-to-python3.patch | 25 from xdg.Exceptions import ParsingError 39 except ParsingError:
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | bpf_helpers_doc.py | 16 class ParsingError(BaseException): class
|