Lines Matching defs:BoxingMethod
507 ObjCMethodDecl *BoxingMethod = nullptr;
536 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
537 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
557 BoxingMethod = M;
561 stringWithUTF8String, BoxingMethod))
564 StringWithUTF8StringMethod = BoxingMethod;
567 BoxingMethod = StringWithUTF8StringMethod;
603 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
612 BoxingMethod = getNSNumberFactoryMethod(*this, Loc,
641 BoxingMethod = NSValueDecl->lookupClassMethod(ValueWithBytesObjCType);
642 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
683 BoxingMethod = M;
687 ValueWithBytesObjCType, BoxingMethod))
690 ValueWithBytesObjCTypeMethod = BoxingMethod;
699 BoxingMethod = ValueWithBytesObjCTypeMethod;
703 if (!BoxingMethod) {
709 DiagnoseUseOfDecl(BoxingMethod, Loc);
718 ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0];
731 BoxingMethod, SR);