Lines Matching defs:pr
197 Message(ProvenanceRange pr, const MessageFixedText &t)
198 : location_{pr}, text_{t} {}
199 Message(ProvenanceRange pr, const MessageFormattedText &s)
200 : location_{pr}, text_{s} {}
201 Message(ProvenanceRange pr, MessageFormattedText &&s)
202 : location_{pr}, text_{std::move(s)} {}
203 Message(ProvenanceRange pr, const MessageExpectedText &t)
204 : location_{pr}, text_{t} {}
206 Message(common::LanguageFeature feature, ProvenanceRange pr,
208 : location_{pr}, text_{t}, languageFeature_{feature} {}
209 Message(common::LanguageFeature feature, ProvenanceRange pr,
211 : location_{pr}, text_{s}, languageFeature_{feature} {}
212 Message(common::LanguageFeature feature, ProvenanceRange pr,
214 : location_{pr}, text_{std::move(s)}, languageFeature_{feature} {}
216 Message(common::UsageWarning warning, ProvenanceRange pr,
218 : location_{pr}, text_{t}, usageWarning_{warning} {}
219 Message(common::UsageWarning warning, ProvenanceRange pr,
221 : location_{pr}, text_{s}, usageWarning_{warning} {}
222 Message(common::UsageWarning warning, ProvenanceRange pr,
224 : location_{pr}, text_{std::move(s)}, usageWarning_{warning} {}