Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp310 std::vector<Type*> paramTy; in constructFunction() local
317 paramTy.push_back(value->getType()); in constructFunction()
325 paramTy.push_back((*I)->getType()); in constructFunction()
327 paramTy.push_back(PointerType::getUnqual((*I)->getType())); in constructFunction()
331 for (std::vector<Type*>::iterator i = paramTy.begin(), in constructFunction()
332 e = paramTy.end(); i != e; ++i) in constructFunction()
338 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
339 paramTy.clear(); in constructFunction()
340 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
343 FunctionType::get(RetTy, paramTy, false); in constructFunction()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp2209 QualType paramTy = property->getType().getUnqualifiedType(); in ProcessPropertyDecl() local
2212 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2215 paramTy = Context.getAttributedType(AttributedType::attr_nullable, in ProcessPropertyDecl()
2225 paramTy, in ProcessPropertyDecl()
DSemaExprObjC.cpp1520 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1521 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/external/clang/lib/AST/
DASTContext.cpp7472 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
7476 if (const EnumType *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
7477 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
7478 if (paramTy.isNull()) in mergeFunctionTypes()
7482 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
7483 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()