Searched refs:paramTy (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 261 std::vector<Type*> paramTy; in constructFunction() local 268 paramTy.push_back(value->getType()); in constructFunction() 276 paramTy.push_back((*I)->getType()); in constructFunction() 278 paramTy.push_back(PointerType::getUnqual((*I)->getType())); in constructFunction() 282 for (std::vector<Type*>::iterator i = paramTy.begin(), in constructFunction() 283 e = paramTy.end(); i != e; ++i) in constructFunction() 289 PointerType::getUnqual(StructType::get(M->getContext(), paramTy)); in constructFunction() 290 paramTy.clear(); in constructFunction() 291 paramTy.push_back(StructPtr); in constructFunction() 294 FunctionType::get(RetTy, paramTy, false); in constructFunction()
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 301 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/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 2283 QualType paramTy = in ProcessPropertyDecl() local 2290 QualType modifiedTy = paramTy; in ProcessPropertyDecl() 2293 paramTy = Context.getAttributedType(AttributedType::attr_nullable, in ProcessPropertyDecl() 2303 paramTy, in ProcessPropertyDecl()
|
D | SemaExprObjC.cpp | 1517 QualType paramTy; // ignored in CheckMessageArgumentTypes() local 1518 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 7578 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()
|