Searched defs:FunctionType (Results 1 - 20 of 20) sorted by relevance

/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/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/chromium_org/chrome/browser/extensions/api/power/
H A Dpower_api_unittest.cc143 enum FunctionType { enum in class:extensions::PowerApiTest
150 bool CallFunction(FunctionType type,
/external/clang/utils/ABITest/
H A DTypeGen.py162 class FunctionType(Type): class in inherits:Type
403 return FunctionType(N, retTy, args)
/external/chromium_org/third_party/jinja2/
H A Dsandbox.py18 from jinja2.utils import FunctionType, MethodType, TracebackType, CodeType, \
127 if isinstance(obj, FunctionType):
19 FrameType, GeneratorType namespace
H A Dnodes.py18 from jinja2.utils import Markup, MethodType, FunctionType namespace
22 _context_function_types = (FunctionType, MethodType)
H A Dutils.py101 FunctionType = type(_func) variable
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h94 /// FunctionType - Class to represent function types
96 class FunctionType : public Type { class in namespace:llvm
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 *ge
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.h881 typedef void (*FunctionType)(); typedef in class:google::protobuf::internal::FunctionClosure0
883 FunctionClosure0(FunctionType function, bool self_deleting)
894 FunctionType function_;
922 typedef void (*FunctionType)(Arg1 arg1); typedef in class:google::protobuf::internal::FunctionClosure1
924 FunctionClosure1(FunctionType function, bool self_deleting,
937 FunctionType function_;
969 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2); typedef in class:google::protobuf::internal::FunctionClosure2
971 FunctionClosure2(FunctionType function, bool self_deleting,
984 FunctionType function_;
/external/clang/include/clang/Sema/
H A DScopeInfo.h523 QualType FunctionType; member in class:clang::sema::BlockScopeInfo
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp665 llvm::Type *FunctionType = local
666 llvm::FunctionType::get(llvm::Type::getInt32Ty(Types.getLLVMContext()),
668 llvm::Type *VTableTy = FunctionType->getPointerTo();
/external/llvm/lib/IR/
H A DType.cpp183 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, function in class:FunctionType
360 // FunctionType::get - The factory function for the FunctionType class.
361 FunctionType *FunctionType
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.h821 typedef void (*FunctionType)(); typedef in class:google::protobuf::internal::FunctionClosure0
823 FunctionClosure0(FunctionType function, bool self_deleting)
833 FunctionType function_;
860 typedef void (*FunctionType)(Arg1 arg1); typedef in class:google::protobuf::internal::FunctionClosure1
862 FunctionClosure1(FunctionType function, bool self_deleting,
874 FunctionType function_;
905 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2); typedef in class:google::protobuf::internal::FunctionClosure2
907 FunctionClosure2(FunctionType function, bool self_deleting,
919 FunctionType function_;
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp884 const FunctionType *ParamFunction = Param->getAs<FunctionType>(),
885 *ArgFunction = Arg->getAs<FunctionType>();
2468 /// \param FunctionType if non-NULL, the result type of the function template
2483 QualType *FunctionType,
2498 if (FunctionType)
2499 *FunctionType = Function->getType();
2617 if (FunctionType) {
2618 *FunctionType = BuildFunctionType(ResultType, ParamTypes,
2622 if (FunctionType
2478 SubstituteExplicitTemplateArguments( FunctionTemplateDecl *FunctionTemplate, TemplateArgumentListInfo &ExplicitTemplateArgs, SmallVectorImpl<DeducedTemplateArgument> &Deduced, SmallVectorImpl<QualType> &ParamTypes, QualType *FunctionType, TemplateDeductionInfo &Info) argument
3531 QualType FunctionType = Function->getType(); local
[all...]
H A DSemaCodeComplete.cpp703 if (const FunctionType *Function = T->getAs<FunctionType>()) {
2835 const FunctionType *FT = getFunctionType();
3924 if (const FunctionType *FType = Results[I].getFunctionType())
3940 QualType FunctionType = Fn->getType(); local
3941 if (const PointerType *Ptr = FunctionType->getAs<PointerType>())
3942 FunctionType = Ptr->getPointeeType();
3944 = FunctionType->getAs<BlockPointerType>())
3945 FunctionType = BlockPtr->getPointeeType();
3947 = FunctionType
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp266 typedef typename PassT::FunctionType FuncT;
2654 typedef MachineFunction FunctionType; typedef in class:llvm::AMDGPUCFGStructurizer
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp266 typedef typename PassT::FunctionType FuncT;
2654 typedef MachineFunction FunctionType; typedef in class:llvm::AMDGPUCFGStructurizer
/external/chromium_org/v8/src/
H A Dast.h2211 enum FunctionType { enum in class:v8::internal::FunctionLiteral
2310 FunctionType function_type,
3195 FunctionLiteral::FunctionType function_type,
/external/clang/include/clang/AST/
H A DType.h1248 friend class FunctionType;
2623 /// FunctionType - C99 6.7.5.3 - Function Declarators. This is the common base
2626 class FunctionType : public Type { class in namespace:clang
2635 /// a FunctionType, although FunctionType does currently use the
2670 friend class FunctionType;
2739 FunctionType(TypeClass tc, QualType res,
2784 class FunctionNoProtoType : public FunctionType, public llvm::FoldingSetNode {
2786 : FunctionType(FunctionNoProto, Result, 0, Canonical,
2794 // No additional state past what FunctionType provide
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 566 milliseconds