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

  /external/webkit/Source/JavaScriptCore/runtime/
InternalFunction.h 34 class InternalFunction : public JSObjectWithGlobalObject {
51 InternalFunction(VPtrStealingHackType);
53 InternalFunction(JSGlobalData*, JSGlobalObject*, Structure*, const Identifier&);
61 InternalFunction* asInternalFunction(JSValue);
63 inline InternalFunction* asInternalFunction(JSValue value)
65 ASSERT(asObject(value)->inherits(&InternalFunction::s_info));
66 return static_cast<InternalFunction*>(asObject(value));
InternalFunction.cpp 24 #include "InternalFunction.h"
32 // Ensure the compiler generates a vtable for InternalFunction!
33 void InternalFunction::vtableAnchor() {}
35 ASSERT_CLASS_FITS_IN_CELL(InternalFunction);
37 const ClassInfo InternalFunction::s_info = { "Function", &JSObjectWithGlobalObject::s_info, 0, 0 };
39 InternalFunction::InternalFunction(VPtrStealingHackType)
44 InternalFunction::InternalFunction(JSGlobalData* globalData, JSGlobalObject* globalObject, Structure* structure, const Identifier& name)
51 const UString& InternalFunction::name(ExecState* exec
    [all...]

Completed in 123 milliseconds