HomeSort by: relevance | last modified time | path
    Searched defs:FuncType (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 1229 FunctionType *FuncType = FunctionType::get(ReturnType, ParamTypes, IsVaArgs);
1230 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 791 const FunctionType *FuncType = Decl->getFunctionType();
792 if (!FuncType)
794 QualType ReturnType = FuncType->getReturnType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 647 struct FuncType {
660 auto GetMethodType = [this, St, MTA](const CXXMethodDecl *CMD, FuncType &Type,
672 Type.MemberType = FuncType::ft_static_member;
675 Type.MemberType = FuncType::ft_non_static_member;
722 CalleeType.MemberType = FuncType::ft_pointer_to_member;
786 auto CheckTypesMatch = [this](FuncType CallerType, FuncType CalleeType,
SemaChecking.cpp 1783 const auto *FuncType =
1786 if (!FuncType) {
1793 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 385 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
609 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
612 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
622 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
623 const PointerType *PT = funcType->getAs<PointerType>();
624 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2208 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2209 assert(funcType && "missing function type");
2210 proto = dyn_cast<FunctionProtoType>(funcType);
2383 const FunctionType *funcType = FD->getType()->getAs<FunctionType>()
    [all...]
RewriteObjC.cpp 313 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
545 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
548 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
558 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
559 const PointerType *PT = funcType->getAs<PointerType>();
560 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
2126 const FunctionType *funcType = FD->getType()->getAs<FunctionType>();
2127 assert(funcType && "missing function type");
2128 proto = dyn_cast<FunctionProtoType>(funcType);
2297 const FunctionType *funcType = FD->getType()->getAs<FunctionType>()
    [all...]

Completed in 52 milliseconds