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

1 2

  /external/clang/test/Sema/
invalid-decl.c 24 typedef int (FunctionType)(int *value);
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
71 if isinstance(obj, FunctionType):
82 if not isinstance(classdict[name], FunctionType):
97 self.assertIsInstance(py_item, (FunctionType, BuiltinFunctionType))
142 if isinstance(item, FunctionType):
147 if isinstance(item, (ClassType, FunctionType)):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
71 if isinstance(obj, FunctionType):
82 if not isinstance(classdict[name], FunctionType):
97 self.assertIsInstance(py_item, (FunctionType, BuiltinFunctionType))
142 if isinstance(item, FunctionType):
147 if isinstance(item, (ClassType, FunctionType)):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
71 if isinstance(obj, FunctionType):
82 if not isinstance(classdict[name], FunctionType):
97 self.assertIsInstance(py_item, (FunctionType, BuiltinFunctionType))
142 if isinstance(item, FunctionType):
147 if isinstance(item, (ClassType, FunctionType)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
71 if isinstance(obj, FunctionType):
82 if not isinstance(classdict[name], FunctionType):
97 self.assertIsInstance(py_item, (FunctionType, BuiltinFunctionType))
142 if isinstance(item, FunctionType):
147 if isinstance(item, (ClassType, FunctionType)):
  /external/clang/utils/ABITest/
TypeGen.py 166 class FunctionType(Type):
407 return FunctionType(N, retTy, args)
  /external/llvm/include/llvm/IR/
DerivedTypes.h 94 /// FunctionType - Class to represent function types
96 class FunctionType : public Type {
97 FunctionType(const FunctionType &) = delete;
98 const FunctionType &operator=(const FunctionType &) = delete;
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/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 482 LLVMTypeRef FunctionType = LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0);
483 LLVMValueRef MappedFn = LLVMAddFunction(Module, "mapped_fn", FunctionType);
485 Function = LLVMAddFunction(Module, "test_fn", FunctionType);
  /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)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Target.java 33 public enum FunctionType {
50 private FunctionType mFunctionType;
76 Target(FunctionType functionType, ReturnType returnType, boolean relaxed) {
77 mFunctionType = functionType;
89 mHandleSubnormal = (mFunctionType == FunctionType.NORMAL) && !relaxed;
94 assert(mFunctionType == FunctionType.NORMAL);
590 if (mFunctionType == FunctionType.NATIVE) {
  /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/lib/IR/
Type.cpp 174 return cast<FunctionType>(this)->isVarArg();
178 return cast<FunctionType>(this)->getParamType(i);
182 return cast<FunctionType>(this)->getNumParams();
332 // FunctionType Implementation
335 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params,
354 // FunctionType::get - The factory function for the FunctionType class.
355 FunctionType *FunctionType::get(Type *ReturnType
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 579 QualType FunctionType;
  /external/protobuf/src/google/protobuf/stubs/
common.h 868 typedef void (*FunctionType)();
870 FunctionClosure0(FunctionType function, bool self_deleting)
881 FunctionType function_;
909 typedef void (*FunctionType)(Arg1 arg1);
911 FunctionClosure1(FunctionType function, bool self_deleting,
924 FunctionType function_;
956 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
958 FunctionClosure2(FunctionType function, bool self_deleting,
    [all...]
  /external/v8/src/
types.h 587 class FunctionType : public StructuralType {
599 FunctionType(Type* result, Type* receiver, int arity, Zone* zone)
606 return AsType(new (zone->New(sizeof(FunctionType)))
607 FunctionType(result, receiver, arity, zone));
610 static FunctionType* cast(Type* type) {
612 return static_cast<FunctionType*>(FromType(type));
702 return FunctionType::New(result, receiver, arity, zone);
800 FunctionType* AsFunction() { return FunctionType::cast(this); }
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 865 typedef void (*FunctionType)();
867 FunctionClosure0(FunctionType function, bool self_deleting)
878 FunctionType function_;
906 typedef void (*FunctionType)(Arg1 arg1);
908 FunctionClosure1(FunctionType function, bool self_deleting,
921 FunctionType function_;
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
955 FunctionClosure2(FunctionType function, bool self_deleting,
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 865 typedef void (*FunctionType)();
867 FunctionClosure0(FunctionType function, bool self_deleting)
878 FunctionType function_;
906 typedef void (*FunctionType)(Arg1 arg1);
908 FunctionClosure1(FunctionType function, bool self_deleting,
921 FunctionType function_;
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
955 FunctionClosure2(FunctionType function, bool self_deleting,
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 865 typedef void (*FunctionType)();
867 FunctionClosure0(FunctionType function, bool self_deleting)
878 FunctionType function_;
906 typedef void (*FunctionType)(Arg1 arg1);
908 FunctionClosure1(FunctionType function, bool self_deleting,
921 FunctionType function_;
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
955 FunctionClosure2(FunctionType function, bool self_deleting,
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 865 typedef void (*FunctionType)();
867 FunctionClosure0(FunctionType function, bool self_deleting)
878 FunctionType function_;
906 typedef void (*FunctionType)(Arg1 arg1);
908 FunctionClosure1(FunctionType function, bool self_deleting,
921 FunctionType function_;
953 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
955 FunctionClosure2(FunctionType function, bool self_deleting,
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 266 typedef typename PassT::FunctionType FuncT;
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 1067 milliseconds

1 2