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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp793 std::vector<Type *> paramTy; local
798 paramTy.push_back(value->getType());
805 paramTy.push_back(output->getType());
807 paramTy.push_back(PointerType::getUnqual(output->getType()));
812 for (Type *i : paramTy)
819 StructTy = StructType::get(M->getContext(), paramTy);
820 paramTy.clear();
821 paramTy.push_back(PointerType::getUnqual(StructTy));
824 FunctionType::get(RetTy, paramTy,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2564 QualType paramTy = local
2571 QualType modifiedTy = paramTy;
2574 paramTy = Context.getAttributedType(attr::TypeNullable,
2584 paramTy,
H A DSemaExprObjC.cpp1721 QualType paramTy; // ignored local
1722 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9303 QualType paramTy = proto->getParamType(i); local
9307 if (const auto *Enum = paramTy->getAs<EnumType>()) {
9308 paramTy = Enum->getDecl()->getIntegerType();
9309 if (paramTy.isNull())
9313 if (paramTy->isPromotableIntegerType() ||
9314 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy)

Completed in 211 milliseconds