Lines Matching refs:OOK
146 OverloadedOperatorKind OOK = OO_None; in parseOpenMPReductionId() local
156 OOK = OO_Plus; in parseOpenMPReductionId()
159 OOK = OO_Minus; in parseOpenMPReductionId()
162 OOK = OO_Star; in parseOpenMPReductionId()
165 OOK = OO_Amp; in parseOpenMPReductionId()
168 OOK = OO_Pipe; in parseOpenMPReductionId()
171 OOK = OO_Caret; in parseOpenMPReductionId()
174 OOK = OO_AmpAmp; in parseOpenMPReductionId()
177 OOK = OO_PipePipe; in parseOpenMPReductionId()
190 return OOK == OO_None ? DeclNames.getIdentifier(Tok.getIdentifierInfo()) in parseOpenMPReductionId()
191 : DeclNames.getCXXOperatorName(OOK); in parseOpenMPReductionId()
1480 auto OOK = OO_None; in ParseReductionId() local
1483 OOK = OO_Plus; in ParseReductionId()
1486 OOK = OO_Minus; in ParseReductionId()
1489 OOK = OO_Star; in ParseReductionId()
1492 OOK = OO_Amp; in ParseReductionId()
1495 OOK = OO_Pipe; in ParseReductionId()
1498 OOK = OO_Caret; in ParseReductionId()
1501 OOK = OO_AmpAmp; in ParseReductionId()
1504 OOK = OO_PipePipe; in ParseReductionId()
1509 if (OOK != OO_None) { in ParseReductionId()
1512 ReductionId.setOperatorFunctionId(OpLoc, OOK, SymbolLocations); in ParseReductionId()