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

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 767 Code(SExpr *T, SExpr *B) : SExpr(COP_Code), ReturnType(T), Body(B) {}
769 : SExpr(C), ReturnType(T), Body(B) {}
773 SExpr *returnType() { return ReturnType; }
774 const SExpr *returnType() const { return ReturnType; }
781 auto Nt = Vs.traverse(ReturnType, Vs.typeCtx(Ctx));
788 typename C::CType Ct = Cmp.compare(returnType(), E->returnType());
795 SExpr* ReturnType;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 1023 QualType returnType = recurse(T->getReturnType());
1024 if (returnType.isNull())
1027 if (returnType.getAsOpaquePtr() == T->getReturnType().getAsOpaquePtr())
1030 return Ctx.getFunctionNoProtoType(returnType, T->getExtInfo());
1034 QualType returnType = recurse(T->getReturnType());
1035 if (returnType.isNull())
1074 if (returnType.getAsOpaquePtr() == T->getReturnType().getAsOpaquePtr() &&
1078 return Ctx.getFunctionType(returnType, paramTypes, info);
1313 QualType returnType = funcType->getReturnType().substObjCTypeArgs(
1315 if (returnType.isNull()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 418 QualType returnType,
2674 QualType returnType = Exp->getType();
2687 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic());
2795 QualType returnType = Exp->getType();
2808 getSimpleFunctionType(returnType, ArgTypes, ArrayMethod->isVariadic());
2947 QualType returnType = Exp->getType();
2960 getSimpleFunctionType(returnType, ArgTypes, DictMethod->isVariadic());
3089 /// returnType - Result type of the method being synthesized.
3095 QualType returnType,
3101 returnType, ArgTypes, Method ? Method->isVariadic() : false)
    [all...]
RewriteObjC.cpp 355 QualType returnType,
2595 QualType returnType,
2608 QualType castType = getSimpleFunctionType(returnType, ArgTypes,
2923 QualType returnType;
2941 returnType = Exp->getType();
2942 convertToUnqualifiedObjCType(returnType);
2943 (void)convertBlockPointerToFunctionPointer(returnType);
2945 returnType = Context->getObjCIdType();
2966 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true);
2985 msgSendType, returnType,
    [all...]

Completed in 35 milliseconds