Home | History | Annotate | Download | only in Sema

Lines Matching refs:Input

874 // Example: Given the following input:
10028 /// \param Input The input argument.
10032 Expr *Input) {
10041 if (checkPlaceholderForOverload(*this, Input))
10044 Expr *Args[2] = { Input, 0 };
10057 if (Input->isTypeDependent()) {
10059 return Owned(new (Context) UnaryOperator(Input,
10115 PerformObjectArgumentInitialization(Input, /*Qualifier=*/0,
10119 Input = InputRes.take();
10127 Input);
10130 Input = InputInit.take();
10144 Args[0] = Input;
10160 PerformImplicitConversion(Input, Best->BuiltinTypes.ParamTypes[0],
10164 Input = InputRes.take();
10185 << Input->getType()
10186 << Input->getSourceRange();
10197 << Input->getSourceRange();
10207 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);