Lines Matching defs:Key
197 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
199 : Key(std::string(Key)) {
222 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Type *T)
223 : Key(std::string(Key)) {
228 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S)
229 : Key(std::string(Key)), Val(S.str()) {}
231 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N)
232 : Key(std::string(Key)), Val(itostr(N)) {}
234 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, float N)
235 : Key(std::string(Key)), Val(llvm::to_string(N)) {}
237 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long N)
238 : Key(std::string(Key)), Val(itostr(N)) {}
240 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long long N)
241 : Key(std::string(Key)), Val(itostr(N)) {}
243 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, unsigned N)
244 : Key(std::string(Key)), Val(utostr(N)) {}
246 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
248 : Key(std::string(Key)), Val(utostr(N)) {}
250 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
252 : Key(std::string(Key)), Val(utostr(N)) {}
254 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
256 : Key(std::string(Key)) {
261 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
263 : Key(std::string(Key)) {
268 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, DebugLoc Loc)
269 : Key(std::string(Key)), Loc(Loc) {