Home
last modified time | relevance | path

Searched refs:paramTy (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp698 std::vector<Type *> paramTy; in constructFunction() local
703 paramTy.push_back(value->getType()); in constructFunction()
710 paramTy.push_back(output->getType()); in constructFunction()
712 paramTy.push_back(PointerType::getUnqual(output->getType())); in constructFunction()
717 for (Type *i : paramTy) in constructFunction()
724 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
725 paramTy.clear(); in constructFunction()
726 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
729 FunctionType::get(RetTy, paramTy, in constructFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp2451 QualType paramTy = in ProcessPropertyDecl() local
2458 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2461 paramTy = Context.getAttributedType(attr::TypeNullable, in ProcessPropertyDecl()
2471 paramTy, in ProcessPropertyDecl()
H A DSemaExprObjC.cpp1554 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1555 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp8647 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
8651 if (const auto *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
8652 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
8653 if (paramTy.isNull()) in mergeFunctionTypes()
8657 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
8658 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()