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

  /external/clang/test/Sema/
invalid-decl.c 24 typedef int (FunctionType)(int *value);
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.h 38 enum Type { ProgramType, FunctionType };
  /external/webkit/Source/WebKit2/Platform/
WorkItem.h 60 typedef void (C::*FunctionType)();
62 MemberFunctionWorkItem0(C* ptr, FunctionType function)
80 FunctionType m_function;
88 typedef void (C::*FunctionType)(T0);
90 MemberFunctionWorkItem1(C* ptr, FunctionType function, T0 t0)
109 FunctionType m_function;
118 typedef void (C::*FunctionType)(T0, T1);
120 MemberFunctionWorkItem2(C* ptr, FunctionType function, T0 t0, T1 t1)
140 FunctionType m_function;
167 typedef void (*FunctionType)();
    [all...]
  /external/clang/utils/ABITest/
TypeGen.py 162 class FunctionType(Type):
403 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 &) LLVM_DELETED_FUNCTION;
98 const FunctionType &operator=(const FunctionType &) LLVM_DELETED_FUNCTION;
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/lib/IR/
Type.cpp 183 return cast<FunctionType>(this)->isVarArg();
187 return cast<FunctionType>(this)->getParamType(i);
191 return cast<FunctionType>(this)->getNumParams();
338 // FunctionType Implementation
341 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params,
360 // FunctionType::get - The factory function for the FunctionType class.
361 FunctionType *FunctionType::get(Type *ReturnType
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 479 QualType FunctionType;
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 671 llvm::Type *FunctionType =
672 llvm::FunctionType::get(llvm::Type::getInt32Ty(Types.getLLVMContext()),
674 llvm::Type *VTableTy = FunctionType->getPointerTo();
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 821 typedef void (*FunctionType)();
823 FunctionClosure0(FunctionType function, bool self_deleting)
833 FunctionType function_;
860 typedef void (*FunctionType)(Arg1 arg1);
862 FunctionClosure1(FunctionType function, bool self_deleting,
874 FunctionType function_;
905 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
907 FunctionClosure2(FunctionType function, bool self_deleting,
919 FunctionType function_;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaCodeComplete.cpp 703 if (const FunctionType *Function = T->getAs<FunctionType>()) {
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 166 typedef typename PassT::FunctionType FuncT;
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 2330 milliseconds