Lines Matching defs:sourceLocation
492 void SayBadDoControl(parser::CharBlock sourceLocation) {
493 context_.Say(sourceLocation, "DO controls should be INTEGER"_err_en_US);
496 void CheckDoControl(const parser::CharBlock &sourceLocation, bool isReal) {
498 context_.Warn(common::LanguageFeature::RealDoControls, sourceLocation,
501 SayBadDoControl(sourceLocation);
506 const parser::CharBlock &sourceLocation{scalarName.thing.source};
510 sourceLocation, "DO control must be an INTEGER variable"_err_en_US);
511 } else if (auto why{WhyNotDefinable(sourceLocation,
512 context_.FindScope(sourceLocation), DefinabilityFlags{},
515 .Say(sourceLocation,
522 SayBadDoControl(sourceLocation);
526 sourceLocation, symType->IsNumeric(TypeCategory::Real));