Lines Matching refs:OpenACCReductionOperator
309 OpenACCReductionOperator ParseReductionOperator(Parser &P) { in ParseReductionOperator()
315 return OpenACCReductionOperator::Invalid; in ParseReductionOperator()
324 return OpenACCReductionOperator::Addition; in ParseReductionOperator()
326 return OpenACCReductionOperator::Multiplication; in ParseReductionOperator()
328 return OpenACCReductionOperator::BitwiseAnd; in ParseReductionOperator()
330 return OpenACCReductionOperator::BitwiseOr; in ParseReductionOperator()
332 return OpenACCReductionOperator::BitwiseXOr; in ParseReductionOperator()
334 return OpenACCReductionOperator::And; in ParseReductionOperator()
336 return OpenACCReductionOperator::Or; in ParseReductionOperator()
339 return OpenACCReductionOperator::Max; in ParseReductionOperator()
341 return OpenACCReductionOperator::Min; in ParseReductionOperator()
345 return OpenACCReductionOperator::Invalid; in ParseReductionOperator()
944 OpenACCReductionOperator Op = ParseReductionOperator(*this); in ParseOpenACCClauseParams()