Home
last modified time | relevance | path

Searched refs:getExpected (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dcase.cpp67 if (ctx.getExpected() && *ctx.getExpected() != type::Value) { in parse()
68 outputType = ctx.getExpected(); in parse()
H A Dliteral.cpp83 ctx.getExpected() && in parse()
84 ctx.getExpected()->template is<type::Array>() && in parse()
88 auto expected = ctx.getExpected()->template get<type::Array>(); in parse()
H A Dat.cpp59 type::Type inputType = type::Array(ctx.getExpected() ? *ctx.getExpected() : type::Value); in parse()
H A Dstep.cpp105 if (ctx.getExpected() && *ctx.getExpected() != type::Value) { in parse()
106 outputType = ctx.getExpected(); in parse()
H A Dinterpolate.cpp159 if (ctx.getExpected() && *ctx.getExpected() != type::Value) { in parseInterpolate()
160 outputType = ctx.getExpected(); in parseInterpolate()
H A Dmatch.cpp243 if (ctx.getExpected() && *ctx.getExpected() != type::Value) { in parseMatch()
244 outputType = ctx.getExpected(); in parseMatch()
H A Dcoalesce.cpp51 optional<type::Type> expectedType = ctx.getExpected(); in parse()
H A Dlet.cpp60 …ParseResult result_ = ctx.parse(arrayMember(value, length - 1), length - 1, ctx.getExpected(), bin… in parse()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dparsing_context.hpp68 optional<type::Type> getExpected() const { return expected; } in getExpected() function in mbgl::style::expression::ParsingContext