Searched refs:Postfix (Results 1 – 6 of 6) sorted by relevance
892 UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) { in getOverloadedOpcode() argument895 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc; in getOverloadedOpcode()896 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec; in getOverloadedOpcode()
1617 static Opcode getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix);
8608 @item Postfix operator
7845 Postfix operator
2324 * kjs/grammar.y: Create {Prefix,Postfix}ErrorNode based on the actual node,
28733 …Split the increment and decrement cases for Prefix- and Postfix- ResolveNode, BracketNode, and Dot…