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

1 2 3 4 5 6 7 8 91011

  /external/llvm/include/llvm/Analysis/
JumpInstrTableInfo.h 24 class FunctionType;
47 typedef DenseMap<FunctionType *, std::vector<JumpPair> > JumpTables;
50 void insertEntry(FunctionType *TableFunTy, Function *Target, Function *Jump);
  /external/llvm/include/llvm/CodeGen/
JumpInstrTables.h 23 class FunctionType;
64 /// Checks to see if there is already a table for the given FunctionType.
65 bool hasTable(FunctionType *FunTy);
77 typedef DenseMap<FunctionType *, struct TableMeta> JumpMap;
85 FunctionType *transformType(FunctionType *FunTy);
  /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/chromium_org/tools/json_schema_compiler/test/
functions_as_parameters_unittest.cc 16 FunctionType out;
17 EXPECT_FALSE(FunctionType::Populate(empty_value, &out));
23 FunctionType out;
24 ASSERT_TRUE(FunctionType::Populate(value, &out));
35 FunctionType out;
36 ASSERT_TRUE(FunctionType::Populate(value, &out));
46 FunctionType out;
47 ASSERT_TRUE(FunctionType::Populate(value, &out));
  /external/llvm/unittests/IR/
VerifierTest.cpp 27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
50 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
WaymarkTest.cpp 31 FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true);
  /art/compiler/llvm/
runtime_support_builder_arm.cc 33 using ::llvm::FunctionType;
73 FunctionType* func_ty = FunctionType::get(/*Result=*/type,
87 FunctionType* func_ty = FunctionType::get(/*Result=*/Type::getVoidTy(context_),
111 FunctionType* func_ty = FunctionType::get(/*Result=*/Type::getVoidTy(context_),
runtime_support_builder_x86.cc 34 using ::llvm::FunctionType;
56 FunctionType* func_ty = FunctionType::get(/*Result=*/type,
68 FunctionType* func_ty = FunctionType::get(/*Result=*/Type::getVoidTy(context_),
  /art/compiler/llvm/generated/
art_module.cc 59 FunctionType* FuncTy_0 = FunctionType::get(
65 FunctionType* FuncTy_3 = FunctionType::get(
72 FunctionType* FuncTy_4 = FunctionType::get(
80 FunctionType* FuncTy_5 = FunctionType::get(
87 FunctionType* FuncTy_6 = FunctionType::get
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.h 25 class FunctionType;
131 llvm::FunctionType *GetFunctionType(const CGFunctionInfo &Info);
133 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
138 bool isFuncTypeConvertible(const FunctionType *FT);
180 const FunctionType::ExtInfo &Info,
199 const FunctionType *Ty);
202 FunctionType::ExtInfo info,
205 const FunctionType *type);
225 FunctionType::ExtInfo info,
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 165 FunctionType *OrigFunTy = Target->getFunctionType();
166 FunctionType *FunTy = transformType(OrigFunTy);
193 bool JumpInstrTables::hasTable(FunctionType *FunTy) {
194 FunctionType *TransTy = transformType(FunTy);
198 FunctionType *JumpInstrTables::transformType(FunctionType *FunTy) {
207 FunctionType::param_iterator PI, PE;
212 FunctionType *VoidFnTy = FunctionType::get(
217 return FunctionType::get(RetTy, EmptyParams, false)
    [all...]
  /external/llvm/include/llvm/IR/
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/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 369 template<typename FunctionWrapper, typename FunctionType>
550 template<typename FunctionType> FunctionImpl<FunctionType>* impl() const
552 return static_cast<FunctionImpl<FunctionType>*>(m_impl.get());
581 template<typename FunctionType>
582 Function<typename FunctionWrapper<FunctionType>::ResultType()> bind(FunctionType function)
584 return Function<typename FunctionWrapper<FunctionType>::ResultType()>(adoptRef(new BoundFunctionImpl<FunctionWrapper<FunctionType>, typename FunctionWrapper<FunctionType>::ResultType()>(FunctionWrapper<FunctionType>(function))))
    [all...]
  /art/compiler/jni/portable/
jni_compiler.h 40 class FunctionType;
65 ::llvm::FunctionType* GetFunctionType(uint32_t method_idx,
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 33 FunctionType *FT =
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
  /external/llvm/lib/Analysis/
JumpInstrTableInfo.cpp 37 void JumpInstrTableInfo::insertEntry(FunctionType *TableFunTy, Function *Target,
  /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)
new.py 12 from types import FunctionType as function
  /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)
new.py 12 from types import FunctionType as function
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 136 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
150 FunctionType *Fty = FunctionType::get(I8X, Params, /*isVarArg=*/false);
175 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 35 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 28 FunctionType* FuncTy =
29 FunctionType::get(Type::getVoidTy(Mod->getContext()), false);
  /external/llvm/lib/IR/
LLVMContextImpl.h 151 KeyTy(const FunctionType* FT) :
168 static inline FunctionType* getEmptyKey() {
169 return DenseMapInfo<FunctionType*>::getEmptyKey();
171 static inline FunctionType* getTombstoneKey() {
172 return DenseMapInfo<FunctionType*>::getTombstoneKey();
180 static unsigned getHashValue(const FunctionType *FT) {
183 static bool isEqual(const KeyTy& LHS, const FunctionType *RHS) {
188 static bool isEqual(const FunctionType *LHS, const FunctionType *RHS) {
315 typedef DenseMap<FunctionType*, bool, FunctionTypeKeyInfo> FunctionTypeMap
    [all...]

Completed in 392 milliseconds

1 2 3 4 5 6 7 8 91011