Home | History | Annotate | Download | only in Sema

Lines Matching defs:param

1607     ParmVarDecl *param = Method->parameters()[i];
1613 !param->hasAttr<CFConsumedAttr>())
1618 if (param->getType() == Context.UnknownAnyTy) {
1627 param->setType(paramType);
1632 QualType origParamType = param->getType();
1633 QualType paramType = param->getType();
1646 = InitializedEntity::InitializeParameter(Context, param, paramType);
2307 /// \param ReceiverTypeInfo Type source information that describes the
2312 /// \param ReceiverType The type of the object receiving the
2317 /// \param SuperLoc The location of the "super" keyword in a
2320 /// \param Sel The selector to which the message is being sent.
2322 /// \param Method The method that this class message is invoking, if
2325 /// \param LBracLoc The location of the opening square bracket ']'.
2327 /// \param RBracLoc The location of the closing square bracket ']'.
2329 /// \param ArgsIn The message arguments.
2509 /// \param Receiver The expression that computes the object that will
2514 /// \param ReceiverType The (static) type of the object receiving the
2519 /// \param SuperLoc The location of the "super" keyword in a
2522 /// \param Sel The selector to which the message is being sent.
2524 /// \param Method The method that this instance message is invoking, if
2527 /// \param LBracLoc The location of the opening square bracket ']'.
2529 /// \param RBracLoc The location of the closing square bracket ']'.
2531 /// \param ArgsIn The message arguments.