Home
last modified time | relevance | path

Searched refs:paramType (Results 1 – 7 of 7) sorted by relevance

/minix3/minix/llvm/passes/include/magic/support/
H A DMagicMemFunction.h517 TYPECONST Type* paramType = function->getFunctionType()->getParamType(i); in getCustomWrapper() local
519 if (paramType != argType) { in getCustomWrapper()
520 assert(CastInst::isCastable(argType, paramType) && "The value of the argument cannot be " in getCustomWrapper()
522 Instruction::CastOps opcode = CastInst::getCastOpcode(argValue, false, paramType, false); in getCustomWrapper()
523 argValue = CastInst::Create(opcode, argValue, paramType, "", callInst); in getCustomWrapper()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaPseudoObject.cpp747 QualType paramType = (*Setter->param_begin())->getType(); in buildSet() local
748 if (!S.getLangOpts().CPlusPlus || !paramType->isRecordType()) { in buildSet()
751 = S.CheckSingleAssignmentConstraints(paramType, opResult); in buildSet()
752 if (S.DiagnoseAssignmentResult(assignResult, opcLoc, paramType, in buildSet()
H A DSemaExprObjC.cpp1396 QualType paramType; in CheckMessageArgumentTypes() local
1397 ExprResult argE = checkUnknownAnyArg(SelLoc, argExpr, paramType); in CheckMessageArgumentTypes()
1404 param->setType(paramType); in CheckMessageArgumentTypes()
H A DSemaExpr.cpp4419 QualType paramType; // ignored in GatherArgumentsForCall() local
4420 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType); in GatherArgumentsForCall()
13642 Expr *arg, QualType &paramType) { in checkUnknownAnyArg() argument
13649 paramType = result.get()->getType(); in checkUnknownAnyArg()
13655 paramType = castArg->getTypeAsWritten(); in checkUnknownAnyArg()
13659 InitializedEntity::InitializeParameter(Context, paramType, in checkUnknownAnyArg()
/minix3/external/bsd/tcpdump/dist/
H A Dprint-sctp.c177 uint16_t paramType; member
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DASTContext.cpp7005 QualType paramType = mergeFunctionParameterTypes( in mergeFunctionTypes() local
7007 if (paramType.isNull()) in mergeFunctionTypes()
7011 paramType = paramType.getUnqualifiedType(); in mergeFunctionTypes()
7013 types.push_back(paramType); in mergeFunctionTypes()
7019 if (getCanonicalType(paramType) != getCanonicalType(lParamType)) in mergeFunctionTypes()
7021 if (getCanonicalType(paramType) != getCanonicalType(rParamType)) in mergeFunctionTypes()
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DSema.h8155 Expr *result, QualType &paramType);