Lines Matching defs:Key
165 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
167 : Key(std::string(Key)) {
190 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Type *T)
191 : Key(std::string(Key)) {
196 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S)
197 : Key(std::string(Key)), Val(S.str()) {}
199 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N)
200 : Key(std::string(Key)), Val(itostr(N)) {}
202 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, float N)
203 : Key(std::string(Key)), Val(llvm::to_string(N)) {}
205 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long N)
206 : Key(std::string(Key)), Val(itostr(N)) {}
208 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, long long N)
209 : Key(std::string(Key)), Val(itostr(N)) {}
211 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, unsigned N)
212 : Key(std::string(Key)), Val(utostr(N)) {}
214 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
216 : Key(std::string(Key)), Val(utostr(N)) {}
218 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
220 : Key(std::string(Key)), Val(utostr(N)) {}
222 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
224 : Key(std::string(Key)) {
229 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key,
231 : Key(std::string(Key)) {
236 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, DebugLoc Loc)
237 : Key(std::string(Key)), Loc(Loc) {