Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dboolean_operator.cpp25 return Expression::childrenEqual(inputs, rhs->inputs); in operator ==()
53 return Expression::childrenEqual(inputs, rhs->inputs); in operator ==()
H A Dcoalesce.cpp26 return Expression::childrenEqual(args, rhs->args); in operator ==()
H A Dassertion.cpp77 return getType() == rhs->getType() && Expression::childrenEqual(inputs, rhs->inputs); in operator ==()
H A Dcase.cpp33 … return *otherwise == *(rhs->otherwise) && Expression::childrenEqual(branches, rhs->branches); in operator ==()
H A Dcoercion.cpp143 return getType() == rhs->getType() && Expression::childrenEqual(inputs, rhs->inputs); in operator ==()
H A Dstep.cpp62 return *input == *(rhs->input) && Expression::childrenEqual(stops, rhs->stops); in operator ==()
H A Dmatch.cpp25 Expression::childrenEqual(branches, rhs->branches)); in operator ==()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dinterpolate.hpp63 return Expression::childrenEqual(stops, rhs->stops); in operator ==()
H A Dcompound_expression.hpp116 return getName() == rhs->getName() && Expression::childrenEqual(args, rhs->args); in operator ==()
H A Dexpression.hpp176 static bool childrenEqual(const T& lhs, const T& rhs) { in childrenEqual() function in mbgl::style::expression::Expression