Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDCodeExtractor.cpp309 std::vector<Type*> paramTy; in constructFunction() local
316 paramTy.push_back(value->getType()); in constructFunction()
324 paramTy.push_back((*I)->getType()); in constructFunction()
326 paramTy.push_back(PointerType::getUnqual((*I)->getType())); in constructFunction()
330 for (std::vector<Type*>::iterator i = paramTy.begin(), in constructFunction()
331 e = paramTy.end(); i != e; ++i) in constructFunction()
337 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
338 paramTy.clear(); in constructFunction()
339 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
342 FunctionType::get(RetTy, paramTy, false); in constructFunction()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaObjCProperty.cpp2104 QualType paramTy = property->getType().getUnqualifiedType(); in ProcessPropertyDecl() local
2107 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2110 paramTy = Context.getAttributedType(AttributedType::attr_nullable, in ProcessPropertyDecl()
2120 paramTy, in ProcessPropertyDecl()
HDSemaExprObjC.cpp1520 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1521 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp7398 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
7402 if (const EnumType *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
7403 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
7404 if (paramTy.isNull()) in mergeFunctionTypes()
7408 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
7409 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()