Home
last modified time | relevance | path

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

/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControlReference/
H A DExpressionParser.cpp711 auto arg = ParseBinary(BinaryOperatorPrecedence(TOK_COMMA)); in ParseFunctionArguments()
800 static int BinaryOperatorPrecedence(TokenType type) in BinaryOperatorPrecedence() function in ciface::ExpressionParser::Parser
840 while (Peek().IsBinaryOperator() && BinaryOperatorPrecedence(Peek().type) < precedence) in ParseBinary()
843 ParseResult rhs = ParseBinary(BinaryOperatorPrecedence(tok.type)); in ParseBinary()