Lines Matching refs:opRight

2083     if ( node->opRight()->nodeType() == QgsExpressionNode::ntLiteral )  in expressionBinaryOperatorToOgcFilter()
2085 …ExpressionNodeLiteral *rightLit = static_cast<const QgsExpressionNodeLiteral *>( node->opRight() ); in expressionBinaryOperatorToOgcFilter()
2108 const QDomElement rightElem = expressionNodeToOgcFilter( node->opRight(), expression, context ); in expressionBinaryOperatorToOgcFilter()
2517 if ( node->opRight()->nodeType() == QgsSQLStatement::ntLiteral ) in toOgcFilter()
2519 …ment::NodeLiteral *rightLit = static_cast<const QgsSQLStatement::NodeLiteral *>( node->opRight() ); in toOgcFilter()
2542 const QDomElement rightElem = toOgcFilter( node->opRight() ); in toOgcFilter()
3296 std::unique_ptr<QgsExpressionNode> opRight( nodeFromOgcFilter( operandElem ) ); in nodeBinaryOperatorFromOgcFilter() local
3297 if ( !opRight ) in nodeBinaryOperatorFromOgcFilter()
3325 …QString oprValue = static_cast<const QgsExpressionNodeLiteral *>( opRight.get() )->value().toStrin… in nodeBinaryOperatorFromOgcFilter()
3368 opRight.reset( new QgsExpressionNodeLiteral( oprValue ) ); in nodeBinaryOperatorFromOgcFilter()
3371 …st< QgsExpressionNodeBinaryOperator::BinaryOperator >( op ), expr.release(), opRight.release() ) ); in nodeBinaryOperatorFromOgcFilter()
3545 std::unique_ptr<QgsExpressionNode> opRight( new QgsExpressionNodeLiteral( QVariant() ) ); in nodePropertyIsNullFromOgcFilter() local
3546 …onNodeBinaryOperator( QgsExpressionNodeBinaryOperator::boIs, opLeft.release(), opRight.release() ); in nodePropertyIsNullFromOgcFilter()