Lines Matching refs:OOK
226 OverloadedOperatorKind OOK = OO_None; in parseOpenMPReductionId() local
236 OOK = OO_Plus; in parseOpenMPReductionId()
239 OOK = OO_Minus; in parseOpenMPReductionId()
242 OOK = OO_Star; in parseOpenMPReductionId()
245 OOK = OO_Amp; in parseOpenMPReductionId()
248 OOK = OO_Pipe; in parseOpenMPReductionId()
251 OOK = OO_Caret; in parseOpenMPReductionId()
254 OOK = OO_AmpAmp; in parseOpenMPReductionId()
257 OOK = OO_PipePipe; in parseOpenMPReductionId()
271 return OOK == OO_None ? DeclNames.getIdentifier(Tok.getIdentifierInfo()) in parseOpenMPReductionId()
272 : DeclNames.getCXXOperatorName(OOK); in parseOpenMPReductionId()
3867 auto OOK = OO_None; in ParseReductionId() local
3870 OOK = OO_Plus; in ParseReductionId()
3873 OOK = OO_Minus; in ParseReductionId()
3876 OOK = OO_Star; in ParseReductionId()
3879 OOK = OO_Amp; in ParseReductionId()
3882 OOK = OO_Pipe; in ParseReductionId()
3885 OOK = OO_Caret; in ParseReductionId()
3888 OOK = OO_AmpAmp; in ParseReductionId()
3891 OOK = OO_PipePipe; in ParseReductionId()
3896 if (OOK != OO_None) { in ParseReductionId()
3899 ReductionId.setOperatorFunctionId(OpLoc, OOK, SymbolLocations); in ParseReductionId()