/external/clang/test/CodeGen/ |
H A D | regparm.c | 11 typedef void (*FType)(int, int) __attribute ((regparm (3), stdcall)); 12 FType bar;
|
/external/v8/test/cctest/compiler/ |
H A D | call-tester.h | 131 typedef R V8_CDECL FType(); typedef 133 return DoCall(FUNCTION_CAST<FType*>(Generate())); 138 typedef R V8_CDECL FType(P1); typedef 140 return DoCall(FUNCTION_CAST<FType*>(Generate()), p1); 145 typedef R V8_CDECL FType(P1, P2); typedef 147 return DoCall(FUNCTION_CAST<FType*>(Generate()), p1, p2); 152 typedef R V8_CDECL FType(P1, P2, P3); typedef 154 return DoCall(FUNCTION_CAST<FType*>(Generate()), p1, p2, p3); 159 typedef R V8_CDECL FType(P1, P2, P3, P4); typedef 161 return DoCall(FUNCTION_CAST<FType*>(Generat 166 typedef R V8_CDECL FType(P1, P2, P3, P4, P5); typedef [all...] |
/external/llvm/include/llvm/MC/ |
H A D | MCAssembler.h | 158 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, argument 160 : MCFragment(FType, HasInstructions, 0, Sec) {} 184 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, argument 187 : MCEncodedFragment(FType, HasInstructions, Sec) {} 205 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, argument 208 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions,
|
/external/clang/lib/CodeGen/ |
H A D | CGDebugInfo.cpp | 754 QualType FType; local 760 FType = CGM.getContext().UnsignedLongTy; 761 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); 762 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); 780 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 781 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); 782 FType = CGM.getContext().IntTy; 783 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); 784 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); 785 FType 1851 QualType FType = Field->getType(); local 2398 CreateMemberType(llvm::DIFile *Unit, QualType FType, StringRef Name, uint64_t *Offset) argument 2853 QualType FType; local [all...] |
H A D | CGDebugInfo.h | 434 /// Create new member and increase Offset by FType's size. 435 llvm::DIType *CreateMemberType(llvm::DIFile *Unit, QualType FType,
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 4365 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); local 4367 SourceLocation(), ID, FType, nullptr, SC_Extern, 4425 QualType FType = Context->getPointerType(BFT); local 4432 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, 4550 FType, VK_LValue, SourceLocation()); 4554 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast,
|
H A D | RewriteModernObjC.cpp | 5279 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); local 5281 SourceLocation(), ID, FType, nullptr, SC_Extern, 5348 QualType FType = Context->getPointerType(BFT); local 5363 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, 5481 FType, VK_LValue, SourceLocation()); 5493 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast,
|
/external/llvm/lib/Target/AMDGPU/ |
H A D | SIISelLowering.cpp | 580 FunctionType *FType = MF.getFunction()->getFunctionType(); local 624 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); 700 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); 736 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex());
|
/external/clang/lib/Sema/ |
H A D | SemaCodeComplete.cpp | 3959 if (auto FType = Candidate.getFunctionType()) 3960 if (auto Proto = dyn_cast<FunctionProtoType>(FType))
|