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

  /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/include/clang/Sema/
ScopeInfo.h 129 QualType FunctionType;
  /external/clang/utils/ABITest/
TypeGen.py 162 class FunctionType(Type):
403 return FunctionType(N, retTy, args)
  /external/llvm/include/llvm/
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/llvm/lib/VMCore/
Type.cpp 306 // FunctionType Implementation
309 FunctionType::FunctionType(Type *Result, ArrayRef<Type*> Params,
328 // FunctionType::get - The factory function for the FunctionType class.
329 FunctionType *FunctionType::get(Type *ReturnType,
341 FunctionType *&FT = pImpl->FunctionTypes[Key];
344 FT = (FunctionType*) pImpl->TypeAllocator.
345 Allocate(sizeof(FunctionType) + sizeof(Type*)*(Params.size()+1)
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 679 llvm::Type *FunctionType =
680 llvm::FunctionType::get(llvm::Type::getInt32Ty(Types.getLLVMContext()),
682 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 694 if (const FunctionType *Function = T->getAs<FunctionType>()) {
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 418 milliseconds