Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp301 std::vector<Type*> paramTy; in constructFunction() local
306 paramTy.push_back(value->getType()); in constructFunction()
313 paramTy.push_back(output->getType()); in constructFunction()
315 paramTy.push_back(PointerType::getUnqual(output->getType())); in constructFunction()
320 for (Type *i : paramTy) in constructFunction()
327 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
328 paramTy.clear(); in constructFunction()
329 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
332 FunctionType::get(RetTy, paramTy, false); in constructFunction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp784 std::vector<Type *> paramTy; in constructFunction() local
789 paramTy.push_back(value->getType()); in constructFunction()
796 paramTy.push_back(output->getType()); in constructFunction()
798 paramTy.push_back(PointerType::getUnqual(output->getType())); in constructFunction()
803 for (Type *i : paramTy) in constructFunction()
810 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
811 paramTy.clear(); in constructFunction()
812 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
815 FunctionType::get(RetTy, paramTy, in constructFunction()
/external/llvm-project/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp833 std::vector<Type *> paramTy; in constructFunction() local
838 paramTy.push_back(value->getType()); in constructFunction()
845 paramTy.push_back(output->getType()); in constructFunction()
847 paramTy.push_back(PointerType::getUnqual(output->getType())); in constructFunction()
852 for (Type *i : paramTy) in constructFunction()
859 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
860 paramTy.clear(); in constructFunction()
861 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
864 FunctionType::get(RetTy, paramTy, in constructFunction()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp2283 QualType paramTy = in ProcessPropertyDecl() local
2290 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2293 paramTy = Context.getAttributedType(AttributedType::attr_nullable, in ProcessPropertyDecl()
2303 paramTy, in ProcessPropertyDecl()
DSemaExprObjC.cpp1517 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1518 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/external/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroSplit.cpp1377 for (auto paramTy : FnTy->params()) { in coerceArguments() local
1379 if (paramTy != FnArgs[ArgIdx]->getType()) in coerceArguments()
1381 Builder.CreateBitOrPointerCast(FnArgs[ArgIdx], paramTy)); in coerceArguments()
/external/llvm-project/clang/lib/Sema/
DSemaObjCProperty.cpp2562 QualType paramTy = in ProcessPropertyDecl() local
2569 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2572 paramTy = Context.getAttributedType(attr::TypeNullable, in ProcessPropertyDecl()
2582 paramTy, in ProcessPropertyDecl()
DSemaExprObjC.cpp1732 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1733 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/external/clang/lib/AST/
DASTContext.cpp7578 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
7582 if (const EnumType *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
7583 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
7584 if (paramTy.isNull()) in mergeFunctionTypes()
7588 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
7589 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()
/external/llvm-project/clang/lib/AST/
DASTContext.cpp9453 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
9457 if (const auto *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
9458 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
9459 if (paramTy.isNull()) in mergeFunctionTypes()
9463 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
9464 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()