Lines Matching defs:AnnotValue
3334 auto *AnnotValue = new (PP.getPreprocessorAllocator()) TokFPAnnotValue;
3372 AnnotValue->ContractValue =
3379 if (!AnnotValue->ContractValue) {
3385 auto &Value = FlagKind == PFK_Reassociate ? AnnotValue->ReassociateValue
3386 : AnnotValue->ReciprocalValue;
3398 AnnotValue->ExceptionsValue =
3405 if (!AnnotValue->ExceptionsValue) {
3411 AnnotValue->EvalMethodValue =
3418 if (!AnnotValue->EvalMethodValue) {
3445 FPTok.setAnnotationValue(reinterpret_cast<void *>(AnnotValue));
3512 auto *AnnotValue =
3515 if (AnnotValue->ReassociateValue)
3518 *AnnotValue->ReassociateValue == LangOptions::FPModeKind::FPM_On);
3520 if (AnnotValue->ReciprocalValue)
3523 *AnnotValue->ReciprocalValue == LangOptions::FPModeKind::FPM_On);
3525 if (AnnotValue->ContractValue)
3527 *AnnotValue->ContractValue);
3528 if (AnnotValue->ExceptionsValue)
3530 *AnnotValue->ExceptionsValue);
3531 if (AnnotValue->EvalMethodValue)
3533 *AnnotValue->EvalMethodValue);