Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dequals.cpp85 type::Type rhsType = (*rhs)->getType(); in parse() local
87 if (!isComparableType(lhsType) && !isComparableType(rhsType)) { in parse()
89 toString(lhsType) + ", " + toString(rhsType) + ") instead."); in parse()
93 if (lhsType != rhsType && lhsType != type::Value && rhsType != type::Value) { in parse()
94 ctx.error("Cannot compare " + toString(lhsType) + " and " + toString(rhsType) + "."); in parse()
100 if (lhsType != type::String && rhsType != type::String) { in parse()