Lines Matching defs:BoxingMethod
515 ObjCMethodDecl *BoxingMethod = nullptr;
566 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
567 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
588 BoxingMethod = M;
592 stringWithUTF8String, BoxingMethod))
595 StringWithUTF8StringMethod = BoxingMethod;
598 BoxingMethod = StringWithUTF8StringMethod;
602 BoxingMethod->getReturnType()->getNullability();
640 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
649 BoxingMethod = getNSNumberFactoryMethod(*this, Loc,
675 BoxingMethod = NSValueDecl->lookupClassMethod(ValueWithBytesObjCType);
676 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
712 BoxingMethod = M;
716 ValueWithBytesObjCType, BoxingMethod))
719 ValueWithBytesObjCTypeMethod = BoxingMethod;
728 BoxingMethod = ValueWithBytesObjCTypeMethod;
732 if (!BoxingMethod) {
738 SemaRef.DiagnoseUseOfDecl(BoxingMethod, Loc);
747 ParmVarDecl *ParamDecl = BoxingMethod->parameters()[0];
760 BoxingMethod, SR);