Searched refs:FunctionType (Results 1 - 25 of 372) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dinvalid-decl.c24 typedef int (FunctionType)(int *value); typedef
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
H A Dmeta_class.py13 if isinstance(attr_value, types.FunctionType):
/external/python/cpython2/Lib/
H A Dnew.py12 from types import FunctionType as function
H A Dtypes.py43 FunctionType = type(_f) variable
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
/external/llvm/include/llvm/IR/
H A DTypeBuilder.h257 static FunctionType *get(LLVMContext &Context) {
258 return FunctionType::get(TypeBuilder<R, cross>::get(Context), false);
263 static FunctionType *get(LLVMContext &Context) {
267 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
274 static FunctionType *get(LLVMContext &Context) {
279 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
286 static FunctionType *get(LLVMContext &Context) {
292 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
301 static FunctionType *get(LLVMContext &Context) {
308 return FunctionType
[all...]
H A DDerivedTypes.h99 class FunctionType : public Type { class in namespace:llvm
100 FunctionType(const FunctionType &) = delete;
101 const FunctionType &operator=(const FunctionType &) = delete;
102 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
105 /// This static method is the primary way of constructing a FunctionType.
106 static FunctionType *get(Type *Result,
109 /// Create a FunctionType taking no parameters.
110 static FunctionType *ge
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DTypeBuilder.h249 static FunctionType *get(LLVMContext &Context) {
250 return FunctionType::get(TypeBuilder<R, cross>::get(Context), false);
255 static FunctionType *get(LLVMContext &Context) {
259 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
266 static FunctionType *get(LLVMContext &Context) {
271 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
278 static FunctionType *get(LLVMContext &Context) {
284 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
293 static FunctionType *get(LLVMContext &Context) {
300 return FunctionType
[all...]
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp39 FunctionType *FT =
40 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
/external/swiftshader/third_party/LLVM/examples/ModuleMaker/
H A DModuleMaker.cpp33 FunctionType *FT =
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
/external/swiftshader/third_party/LLVM/include/llvm/
H A DIntrinsics.h25 class FunctionType;
52 FunctionType *getType(LLVMContext &Context, ID id,
H A DDerivedTypes.h94 /// FunctionType - Class to represent function types
96 class FunctionType : public Type { class in namespace:llvm
97 FunctionType(const FunctionType &); // Do not implement
98 const FunctionType &operator=(const FunctionType &); // Do not implement
99 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
102 /// FunctionType::get - This static method is the primary way of constructing
103 /// a FunctionType.
105 static FunctionType *ge
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DARCRuntimeEntryPoints.h134 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
148 FunctionType *Fty = FunctionType::get(I8X, Params, /*isVarArg=*/false);
173 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDerivedTypes.h102 class FunctionType : public Type { class in namespace:llvm
103 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
106 FunctionType(const FunctionType &) = delete;
107 FunctionType &operator=(const FunctionType &) = delete;
109 /// This static method is the primary way of constructing a FunctionType.
110 static FunctionType *get(Type *Result,
113 /// Create a FunctionType taking no parameters.
114 static FunctionType *ge
[all...]
/external/llvm/unittests/IR/
H A DFunctionTest.cpp20 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
42 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
H A DVerifierTest.cpp29 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
52 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
70 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
166 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
H A DWaymarkTest.cpp29 FunctionType *FT = FunctionType::get(Type::getVoidTy(Context), true);
H A DTypeBuilderTest.cpp151 EXPECT_EQ(FunctionType::get(Type::getVoidTy(Context), params, false),
153 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, true),
156 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, false),
158 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, true),
161 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, false),
163 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, true),
167 FunctionType::get(Type::getInt8Ty(Context), params, false),
170 FunctionType::get(Type::getInt8Ty(Context), params, true),
173 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(Context), params, false),
177 FunctionType
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dcallback.h121 typedef void (*FunctionType)(); typedef in class:google::protobuf::internal::FunctionClosure0
123 FunctionClosure0(FunctionType function, bool self_deleting)
134 FunctionType function_;
162 typedef void (*FunctionType)(Arg1 arg1); typedef in class:google::protobuf::internal::FunctionClosure1
164 FunctionClosure1(FunctionType function, bool self_deleting,
177 FunctionType function_;
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2); typedef in class:google::protobuf::internal::FunctionClosure2
211 FunctionClosure2(FunctionType function, bool self_deleting,
224 FunctionType function_;
258 typedef R (*FunctionType)(); typedef in class:google::protobuf::internal::FunctionResultCallback_0_0
279 typedef R (*FunctionType)(P1); typedef in class:google::protobuf::internal::FunctionResultCallback_1_0
302 typedef R (*FunctionType)(Arg1 arg1); typedef in class:google::protobuf::internal::FunctionResultCallback_0_1
323 typedef R (*FunctionType)(P1, A1); typedef in class:google::protobuf::internal::FunctionResultCallback_1_1
[all...]
/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp37 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinIntrinsicInfo.cpp84 static FunctionType *getType(LLVMContext &Context, unsigned id) {
93 return FunctionType::get(ResultTy, ArgTys, IsVarArg);
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp93 static FunctionType *getType(LLVMContext &Context, unsigned id) {
102 return FunctionType::get(ResultTy, ArgTys, IsVarArg);
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DVerifierTest.cpp27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp26 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
110 FunctionType::get(Type::getVoidTy(M.getContext()), false),
116 InitName, FunctionType::get(IRB.getVoidTy(), InitArgTypes, false),
123 VersionCheckName, FunctionType::get(IRB.getVoidTy(), {}, false),
H A DSanitizerStats.cpp58 FunctionType *StatReportTy =
59 FunctionType::get(B.getVoidTy(), Int8PtrTy, false);
95 auto F = Function::Create(FunctionType::get(VoidTy, false),
100 FunctionType *StatInitTy = FunctionType::get(VoidTy, Int8PtrTy, false);
/external/clang/lib/CodeGen/
H A DCodeGenTypes.h25 class FunctionType;
200 llvm::FunctionType *GetFunctionType(const CGFunctionInfo &Info);
202 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
207 bool isFuncTypeConvertible(const FunctionType *FT);
263 const FunctionType *Ty,
297 const FunctionType *type);
328 FunctionType::ExtInfo info,

Completed in 692 milliseconds

1234567891011>>