Home | History | Annotate | Download | only in Sema

Lines Matching refs:ArrayWithObjectsMethod

587   if (!ArrayWithObjectsMethod) {
590 ArrayWithObjectsMethod = NSArrayDecl->lookupClassMethod(Sel);
591 if (!ArrayWithObjectsMethod && getLangOpts().DebuggerObjCLiteral) {
593 ArrayWithObjectsMethod =
605 ParmVarDecl *objects = ParmVarDecl::Create(Context, ArrayWithObjectsMethod,
614 ParmVarDecl *cnt = ParmVarDecl::Create(Context, ArrayWithObjectsMethod,
623 ArrayWithObjectsMethod->setMethodParams(Context, Params,
629 if (!ArrayWithObjectsMethod) {
636 if (!ArrayWithObjectsMethod->getResultType()->isObjCObjectPointerType()) {
638 << ArrayWithObjectsMethod->getSelector();
639 Diag(ArrayWithObjectsMethod->getLocation(),
641 << ArrayWithObjectsMethod->getResultType();
646 QualType T = ArrayWithObjectsMethod->param_begin()[0]->getType();
651 << ArrayWithObjectsMethod->getSelector();
652 Diag(ArrayWithObjectsMethod->param_begin()[0]->getLocation(),
661 if (!ArrayWithObjectsMethod->param_begin()[1]->getType()->isIntegerType()) {
663 << ArrayWithObjectsMethod->getSelector();
664 Diag(ArrayWithObjectsMethod->param_begin()[1]->getLocation(),
667 << ArrayWithObjectsMethod->param_begin()[1]->getType()
693 Ty, ArrayWithObjectsMethod, SR));