HomeSort by relevance Sort by last modified time
    Searched full:functionprototype (Results 1 - 25 of 118) 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 20 const FunctionProtoType *Proto
21 = CallOperator->getType()->getAs<FunctionProtoType>();
27 FunctionProtoType::ExtProtoInfo());
29 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 27 static const FunctionProtoType *GetUnderlyingFunction(QualType T)
35 return T->getAs<FunctionProtoType>();
92 const FunctionProtoType *FnT = T->getAs<FunctionProtoType>();
99 const FunctionProtoType *
100 Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
107 const FunctionProtoType *SourceFPT =
108 SourceDecl->getType()->castAs<FunctionProtoType>();
116 return SourceDecl->getType()->castAs<FunctionProtoType>();
130 Old->getType()->getAs<FunctionProtoType>(),
    [all...]
SemaLambda.cpp 239 FunctionProtoType::ExtProtoInfo EPI;
459 const FunctionProtoType *Proto
460 = CallOperator->getType()->getAs<FunctionProtoType>();
464 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
473 FunctionProtoType::ExtProtoInfo ExtInfo;
531 const FunctionProtoType *Proto
532 = CallOperator->getType()->getAs<FunctionProtoType>();
535 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
545 FunctionProtoType::ExtProtoInfo ExtInfo;
671 const FunctionProtoType *Prot
    [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 22 class FunctionProtoType;
27 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 118 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype,
124 static RequiredArgs forPrototype(const FunctionProtoType *prototype) {
128 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) {
132 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype,
CodeGenTypes.h 41 class FunctionProtoType;
199 const CGFunctionInfo &arrangeFunctionType(CanQual<FunctionProtoType> Ty);
202 const FunctionProtoType *FTP);
CGExprCXX.cpp 47 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
295 const FunctionProtoType *FPT =
296 MPT->getPointeeType()->castAs<FunctionProtoType>();
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 426 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>())
463 if (const FunctionProtoType *FD = T->getAs<FunctionProtoType>()) {
479 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 305 const FunctionProtoType *FPT
306 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
343 const FunctionProtoType *FPT
344 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
389 const FunctionProtoType *FPT
390 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
563 const FunctionProtoType *FPT
564 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens());
598 const FunctionProtoType *FTP
599 = dyn_cast<FunctionProtoType>(FD->getType().IgnoreParens())
    [all...]
  /external/v8/src/
accessors.h 40 V(FunctionPrototype) \

Completed in 533 milliseconds

1 2 3 4 5