HomeSort by relevance Sort by last modified time
    Searched defs:FuncType (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 441 typedef ReturnType (*FuncType)();
443 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
452 typedef ReturnType (*FuncType)(ArgType1);
455 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
469 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 224 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
225 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
236 DICompositeType FuncType = DBuilder.createSubroutineType(File, ParamTypes);
241 FuncType, true, true, 3, 0, false, OldFunc);
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 396 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
623 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
626 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
636 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
637 const PointerType *PT = funcType->getAs<PointerType>();
638 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]
RewriteObjC.cpp 321 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D);
554 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType,
557 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) {
567 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
568 const PointerType *PT = funcType->getAs<PointerType>();
569 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
    [all...]

Completed in 79 milliseconds