HomeSort by relevance Sort by last modified time
    Searched refs:FunctionType (Results 1 - 25 of 562) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
invalid-decl.c 24 typedef int (FunctionType)(int *value);
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
  /bionic/libc/bionic/
NetdClient.cpp 27 template <typename FunctionType>
28 static void netdClientInitFunction(void* handle, const char* symbol, FunctionType* function) {
29 typedef void (*InitFunctionType)(FunctionType*);
  /external/llvm/include/llvm/IR/
TypeBuilder.h 257 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::get(TypeBuilder<R, cross>::get(Context)
    [all...]
InlineAsm.h 26 class FunctionType;
47 FunctionType *FTy;
52 InlineAsm(FunctionType *Ty, const std::string &AsmString,
64 static InlineAsm *get(FunctionType *Ty, StringRef AsmString,
81 FunctionType *getFunctionType() const;
90 static bool Verify(FunctionType *Ty, StringRef Constraints);
DerivedTypes.h 99 class FunctionType : public Type {
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 *get(Type *Result, bool isVarArg)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TypeBuilder.h 249 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::get(TypeBuilder<R, cross>::get(Context)
    [all...]
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 39 FunctionType *FT =
40 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
  /external/swiftshader/third_party/LLVM/examples/ModuleMaker/
ModuleMaker.cpp 33 FunctionType *FT =
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
  /external/swiftshader/third_party/LLVM/include/llvm/
Intrinsics.h 25 class FunctionType;
52 FunctionType *getType(LLVMContext &Context, ID id,
DerivedTypes.h 94 /// FunctionType - Class to represent function types
96 class FunctionType : public Type {
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 *get(Type *Result
    [all...]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
meta_class.py 13 if isinstance(attr_value, types.FunctionType):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
new.py 12 from types import FunctionType as function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
  /prebuilts/gdb/linux-x86/lib/python2.7/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 43 FunctionType = type(_f)
44 LambdaType = type(lambda: None) # Same as FunctionType
81 GetSetDescriptorType = type(FunctionType.func_code)
82 MemberDescriptorType = type(FunctionType.func_globals)
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 134 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/llvm/unittests/IR/
FunctionTest.cpp 20 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
42 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
VerifierTest.cpp 29 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);
WaymarkTest.cpp 29 FunctionType *FT = FunctionType::get(Type::getVoidTy(Context), true);
  /external/protobuf/src/google/protobuf/stubs/
callback.h 121 typedef void (*FunctionType)();
123 FunctionClosure0(FunctionType function, bool self_deleting)
134 FunctionType function_;
162 typedef void (*FunctionType)(Arg1 arg1);
164 FunctionClosure1(FunctionType function, bool self_deleting,
177 FunctionType function_;
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
211 FunctionClosure2(FunctionType function, bool self_deleting,
224 FunctionType function_;
258 typedef R (*FunctionType)();
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 121 typedef void (*FunctionType)();
123 FunctionClosure0(FunctionType function, bool self_deleting)
134 FunctionType function_;
162 typedef void (*FunctionType)(Arg1 arg1);
164 FunctionClosure1(FunctionType function, bool self_deleting,
177 FunctionType function_;
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
211 FunctionClosure2(FunctionType function, bool self_deleting,
224 FunctionType function_;
258 typedef R (*FunctionType)();
    [all...]
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 37 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),

Completed in 1706 milliseconds

1 2 3 4 5 6 7 8 91011>>