Lines Matching refs:Assoc
196 template <int Precedence, Associativity Assoc>
197 BinaryOp<Precedence, Assoc>::BinaryOp (Token::Type operatorToken) in BinaryOp()
206 template <int Precedence, Associativity Assoc>
207 BinaryOp<Precedence, Assoc>::~BinaryOp (void) in ~BinaryOp()
213 template <int Precedence, Associativity Assoc>
214 Expression* BinaryOp<Precedence, Assoc>::createNextChild (GeneratorState& state) in createNextChild()
216 int leftPrec = Assoc == ASSOCIATIVITY_LEFT ? Precedence : Precedence-1; in createNextChild()
217 int rightPrec = Assoc == ASSOCIATIVITY_LEFT ? Precedence-1 : Precedence; in createNextChild()
325 template <int Precedence, Associativity Assoc>
326 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess va… in getWeight()
342 template <int Precedence, Associativity Assoc>
343 void BinaryOp<Precedence, Assoc>::tokenize (GeneratorState& state, TokenStream& str) const in tokenize()
350 template <int Precedence, Associativity Assoc>
351 void BinaryOp<Precedence, Assoc>::evaluate (ExecutionContext& execCtx) in evaluate()