HomeSort by relevance Sort by last modified time
    Searched full:functionprototype (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
FunctionPrototype.h 3 #include <JavaScriptCore/FunctionPrototype.h>
  /external/clang/lib/AST/
LambdaMangleContext.cpp 22 const FunctionProtoType *Proto
23 = CallOperator->getType()->getAs<FunctionProtoType>();
30 FunctionProtoType::ExtProtoInfo());
32 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 27 static const FunctionProtoType *GetUnderlyingFunction(QualType T)
35 return T->getAs<FunctionProtoType>();
106 const FunctionProtoType *FnT = T->getAs<FunctionProtoType>();
113 const FunctionProtoType *
114 Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
119 const FunctionProtoType *SourceFPT =
120 SourceDecl->getType()->castAs<FunctionProtoType>();
132 return SourceDecl->getType()->castAs<FunctionProtoType>();
148 const FunctionProtoType *Ty
    [all...]
SemaLambda.cpp 453 FunctionProtoType::ExtProtoInfo EPI;
694 const FunctionProtoType *Proto
695 = CallOperator->getType()->getAs<FunctionProtoType>();
699 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
709 FunctionProtoType::ExtProtoInfo ExtInfo;
768 const FunctionProtoType *Proto
769 = CallOperator->getType()->getAs<FunctionProtoType>();
772 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
782 FunctionProtoType::ExtProtoInfo ExtInfo;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
FunctionConstructor.h 28 class FunctionPrototype;
32 FunctionConstructor(ExecState*, JSGlobalObject*, Structure*, FunctionPrototype*);
FunctionPrototype.h 28 class FunctionPrototype : public InternalFunction {
30 FunctionPrototype(ExecState*, JSGlobalObject*, Structure*);
FunctionConstructor.cpp 26 #include "FunctionPrototype.h"
40 FunctionConstructor::FunctionConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, FunctionPrototype* functionPrototype)
41 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, functionPrototype->classInfo()->className))
43 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly);
FunctionPrototype.cpp 22 #include "FunctionPrototype.h"
34 ASSERT_CLASS_FITS_IN_CELL(FunctionPrototype);
40 FunctionPrototype::FunctionPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure)
46 void FunctionPrototype::addFunctionProperties(ExecState* exec, JSGlobalObject* globalObject, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction)
61 CallType FunctionPrototype::getCallData(CallData& callData)
NativeErrorConstructor.h 29 class FunctionPrototype;
InternalFunction.h 32 class FunctionPrototype;
InternalFunction.cpp 26 #include "FunctionPrototype.h"
JSGlobalObject.h 43 class FunctionPrototype;
82 WriteBarrier<FunctionPrototype> m_functionPrototype;
187 FunctionPrototype* functionPrototype() const { return m_functionPrototype.get(); }
JSFunction.h 33 class FunctionPrototype;
  /external/clang/include/clang/AST/
LambdaMangleContext.h 24 class FunctionProtoType;
29 llvm::DenseMap<const FunctionProtoType *, unsigned> ManglingNumbers;
  /external/webkit/Source/WebCore/bridge/
runtime_method.h 43 static FunctionPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
45 return globalObject->functionPrototype();
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPMethod.cpp 31 #include <JavaScriptCore/FunctionPrototype.h>
45 : InternalFunction(&exec->globalData(), globalObject, createStructure(exec->globalData(), globalObject->functionPrototype()), name)
  /external/clang/lib/CodeGen/
CGCall.h 115 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype,
121 static RequiredArgs forPrototype(const FunctionProtoType *prototype) {
125 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) {
129 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype,
CodeGenTypes.h 41 class FunctionProtoType;
204 const FunctionProtoType *type,
207 const CGFunctionInfo &arrangeFreeFunctionType(CanQual<FunctionProtoType> Ty);
210 const FunctionProtoType *FTP);
CGExprCXX.cpp 55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
339 const FunctionProtoType *FPT =
340 MPT->getPointeeType()->castAs<FunctionProtoType>();
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 476 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>())
515 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>()) {
531 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>()) {
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackFunction.cpp 34 #include "FunctionPrototype.h"
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 50 inline JSValueRef functionPrototype() const;
194 inline JSValueRef QScriptOriginalGlobalObject::functionPrototype() const
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.h 151 static FunctionPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
153 return globalObject->functionPrototype();
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 300 const FunctionProtoType *FPT
301 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
338 const FunctionProtoType *FPT
339 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
384 const FunctionProtoType *FPT
385 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
558 const FunctionProtoType *FPT
559 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
593 const FunctionProtoType *FTP
594 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens())
    [all...]
  /external/v8/src/
accessors.h 40 V(FunctionPrototype) \

Completed in 521 milliseconds

1 2 3 4 5