Home
last modified time | relevance | path

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

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/codecompletion/parser/
H A Dexpression.h65 static bool IsBinaryOperator(wxString first, wxString second);
H A Dexpression.cpp197 bool ExpressionNode::IsBinaryOperator(wxString first, wxString second) in IsBinaryOperator() function in ExpressionNode
240 if (ExpressionNode::IsBinaryOperator(lastToken, token)) in AddToInfixExpression()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControlReference/
H A DExpressionParser.h60 bool IsBinaryOperator() const;
H A DExpressionParser.cpp83 bool Token::IsBinaryOperator() const in IsBinaryOperator() function in ciface::ExpressionParser::Token
840 while (Peek().IsBinaryOperator() && BinaryOperatorPrecedence(Peek().type) < precedence) in ParseBinary()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/
H A DOperators.Resolution.vb117 Debug.Assert((IsBinaryOperator(op) AndAlso arguments.Length = 2) OrElse
H A DSymbols.vb144 Friend Shared Function IsBinaryOperator(ByVal op As UserDefinedOperator) As Boolean
191 (paramCount = 2 AndAlso IsBinaryOperator(op)) Then
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DolphinQt/Config/Mapping/
H A DIOWindow.cpp161 if (token.IsBinaryOperator()) in highlightBlock()