Lines Matching refs:OOK
230 OverloadedOperatorKind OOK = OO_None; in parseOpenMPReductionId() local
240 OOK = OO_Plus; in parseOpenMPReductionId()
243 OOK = OO_Minus; in parseOpenMPReductionId()
246 OOK = OO_Star; in parseOpenMPReductionId()
249 OOK = OO_Amp; in parseOpenMPReductionId()
252 OOK = OO_Pipe; in parseOpenMPReductionId()
255 OOK = OO_Caret; in parseOpenMPReductionId()
258 OOK = OO_AmpAmp; in parseOpenMPReductionId()
261 OOK = OO_PipePipe; in parseOpenMPReductionId()
275 return OOK == OO_None ? DeclNames.getIdentifier(Tok.getIdentifierInfo()) in parseOpenMPReductionId()
276 : DeclNames.getCXXOperatorName(OOK); in parseOpenMPReductionId()
4012 auto OOK = OO_None; in ParseReductionId() local
4015 OOK = OO_Plus; in ParseReductionId()
4018 OOK = OO_Minus; in ParseReductionId()
4021 OOK = OO_Star; in ParseReductionId()
4024 OOK = OO_Amp; in ParseReductionId()
4027 OOK = OO_Pipe; in ParseReductionId()
4030 OOK = OO_Caret; in ParseReductionId()
4033 OOK = OO_AmpAmp; in ParseReductionId()
4036 OOK = OO_PipePipe; in ParseReductionId()
4041 if (OOK != OO_None) { in ParseReductionId()
4044 ReductionId.setOperatorFunctionId(OpLoc, OOK, SymbolLocations); in ParseReductionId()