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

12345678910

/external/llvm/include/llvm/CodeGen/
H A DJumpInstrTables.h23 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/llvm/include/llvm/Analysis/
H A DJumpInstrTableInfo.h24 class FunctionType;
47 typedef DenseMap<FunctionType *, std::vector<JumpPair> > JumpTables;
50 void insertEntry(FunctionType *TableFunTy, Function *Target, Function *Jump);
/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_org/third_party/WebKit/Source/core/dom/
H A DExecutionContextTask.h73 template<typename FunctionType>
75 FunctionType function)
80 template<typename FunctionType, typename P1>
82 FunctionType function,
89 template<typename FunctionType, typename P1, typename P2>
91 FunctionType function,
99 template<typename FunctionType, typename P1, typename P2, typename P3>
101 FunctionType function,
110 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4>
112 FunctionType functio
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h424 template<typename FunctionWrapper, typename FunctionType>
529 template<typename FunctionWrapper, typename FunctionType>
627 template<typename FunctionWrapper, typename FunctionType>
714 template<typename FunctionWrapper, typename FunctionType>
786 template<typename FunctionWrapper, typename FunctionType>
839 template<typename FunctionWrapper, typename FunctionType>
869 template<typename FunctionWrapper, typename FunctionType>
1050 template<typename FunctionType> FunctionImpl<FunctionType>* impl() const
1052 return static_cast<FunctionImpl<FunctionType>*>(m_imp
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Dfunctions_as_parameters_unittest.cc16 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/
H A DVerifierTest.cpp27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
50 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
H A DWaymarkTest.cpp31 FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true);
H A DTypeBuilderTest.cpp123 EXPECT_EQ(FunctionType::get(Type::getVoidTy(getGlobalContext()), params, false),
125 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
128 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
130 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
133 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
135 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
138 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
140 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
143 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
145 EXPECT_EQ(FunctionType
[all...]
/external/llvm/lib/CodeGen/
H A DJumpInstrTables.cpp165 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
[all...]
/external/llvm/include/llvm/IR/
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...]
H A DInlineAsm.h26 class FunctionType;
67 static InlineAsm *get(FunctionType *Ty, StringRef AsmString,
84 FunctionType *getFunctionType() const;
93 static bool Verify(FunctionType *Ty, StringRef Constraints);
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp33 FunctionType *FT =
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
/external/llvm/lib/Analysis/
H A DJumpInstrTableInfo.cpp37 void JumpInstrTableInfo::insertEntry(FunctionType *TableFunTy, Function *Target,
/external/llvm/lib/Transforms/ObjCARC/
H A DARCRuntimeEntryPoints.h136 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/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
H A DChromeCodingConvention.java14 import com.google.javascript.rhino.jstype.FunctionType;
49 public void applySingletonGetter(FunctionType functionType,
50 FunctionType getterType, ObjectType objectType) {
/external/clang/lib/CodeGen/
H A DCodeGenTypes.h25 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,
H A DCGDeclCXX.cpp160 llvm::FunctionType *ty,
170 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
204 llvm::FunctionType *atexitTy =
205 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
231 llvm::FunctionType *FTy,
264 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
323 llvm::FunctionType *FTy = llvm::FunctionType
[all...]
/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp35 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp28 FunctionType* FuncTy =
29 FunctionType::get(Type::getVoidTy(Mod->getContext()), false);
/external/llvm/lib/IR/
H A DLLVMContextImpl.h151 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*, boo
[all...]
/external/chromium_org/base/debug/
H A Dprofiler.cc180 template <typename FunctionType>
181 FunctionType FindFunctionInImports(const char* function_name) {
191 return reinterpret_cast<FunctionType>(ctx.function);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dcallback.h38 typedef R (FunctionType)(A1, A2, A3, A4); typedef in class:i18n::phonenumbers::FunctionCallback4
40 explicit FunctionCallback4(FunctionType* function) : function_(function) {}
48 FunctionType* const function_;
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp155 if (isa<FunctionType>(GA.getType()->getElementType()))
227 FunctionType *DFSanUnionFnTy;
228 FunctionType *DFSanUnionLoadFnTy;
229 FunctionType *DFSanUnimplementedFnTy;
230 FunctionType *DFSanSetLabelFnTy;
231 FunctionType *DFSanNonzeroLabelFnTy;
246 FunctionType *getArgsFunctionType(FunctionType *T);
247 FunctionType *getTrampolineFunctionType(FunctionType *
[all...]
/external/clang/include/clang/CodeGen/
H A DCodeGenABITypes.h67 FunctionType::ExtInfo info,

Completed in 526 milliseconds

12345678910