Lines Matching refs:BinaryOp
106 typedef BinaryOp<5, ASSOCIATIVITY_LEFT> CustomBinaryBase;
197 BinaryOp<Precedence, Assoc>::BinaryOp (Token::Type operatorToken) in BinaryOp() function in rsg::BinaryOp
207 BinaryOp<Precedence, Assoc>::~BinaryOp (void) in ~BinaryOp()
214 Expression* BinaryOp<Precedence, Assoc>::createNextChild (GeneratorState& state) in createNextChild()
326 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess va… in getWeight()
343 void BinaryOp<Precedence, Assoc>::tokenize (GeneratorState& state, TokenStream& str) const in tokenize()
351 void BinaryOp<Precedence, Assoc>::evaluate (ExecutionContext& execCtx) in evaluate()
365 : BinaryOp<Precedence, ASSOCIATIVITY_LEFT>(operatorToken) in BinaryVecOp()
648 : BinaryOp<7, ASSOCIATIVITY_LEFT>(operatorToken) in RelationalOp()
722 return BinaryOp<7, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange); in getWeight()
943 : BinaryOp<8, ASSOCIATIVITY_LEFT>(IsEqual ? Token::CMP_EQ : Token::CMP_NE) in EqualityComparisonOp()
1004 return BinaryOp<8, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange); in getWeight()