HomeSort by relevance Sort by last modified time
    Searched refs:InternalFunction (Results 1 - 25 of 47) sorted by null

1 2

  /external/webkit/WebCore/ForwardingHeaders/runtime/
InternalFunction.h 3 #include <JavaScriptCore/InternalFunction.h>
  /external/webkit/JavaScriptCore/runtime/
InternalFunction.h 34 class InternalFunction : public JSObject {
51 InternalFunction(NonNullPassRefPtr<Structure> structure) : JSObject(structure) { }
52 InternalFunction(JSGlobalData*, NonNullPassRefPtr<Structure>, const Identifier&);
58 InternalFunction* asInternalFunction(JSValue);
60 inline InternalFunction* asInternalFunction(JSValue value)
62 ASSERT(asObject(value)->inherits(&InternalFunction::info));
63 return static_cast<InternalFunction*>(asObject(value));
InternalFunction.cpp 24 #include "InternalFunction.h"
31 ASSERT_CLASS_FITS_IN_CELL(InternalFunction);
33 const ClassInfo InternalFunction::info = { "Function", 0, 0, 0 };
35 const ClassInfo* InternalFunction::classInfo() const
40 InternalFunction::InternalFunction(JSGlobalData* globalData, NonNullPassRefPtr<Structure> structure, const Identifier& name)
46 const UString& InternalFunction::name(ExecState* exec)
51 const UString InternalFunction::displayName(ExecState* exec)
61 const UString InternalFunction::calculatedDisplayName(ExecState* exec)
ArrayConstructor.h 24 #include "InternalFunction.h"
30 class ArrayConstructor : public InternalFunction {
ObjectConstructor.h 24 #include "InternalFunction.h"
30 class ObjectConstructor : public InternalFunction {
StringConstructor.h 24 #include "InternalFunction.h"
30 class StringConstructor : public InternalFunction {
NumberConstructor.h 24 #include "InternalFunction.h"
30 class NumberConstructor : public InternalFunction {
48 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFlags;
BooleanConstructor.h 24 #include "InternalFunction.h"
30 class BooleanConstructor : public InternalFunction {
DateConstructor.h 24 #include "InternalFunction.h"
30 class DateConstructor : public InternalFunction {
ErrorConstructor.h 25 #include "InternalFunction.h"
31 class ErrorConstructor : public InternalFunction {
FunctionConstructor.h 24 #include "InternalFunction.h"
30 class FunctionConstructor : public InternalFunction {
NativeErrorConstructor.h 24 #include "InternalFunction.h"
32 class NativeErrorConstructor : public InternalFunction {
PrototypeFunction.h 27 #include "InternalFunction.h"
32 class PrototypeFunction : public InternalFunction {
PrototypeFunction.cpp 36 : InternalFunction(&exec->globalData(), exec->lexicalGlobalObject()->prototypeFunctionStructure(), name)
44 : InternalFunction(&exec->globalData(), prototypeFunctionStructure, name)
FunctionPrototype.h 24 #include "InternalFunction.h"
30 class FunctionPrototype : public InternalFunction {
NumberConstructor.cpp 44 const ClassInfo NumberConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::numberTable };
57 : InternalFunction(&exec->globalData(), structure, Identifier(exec, numberPrototype->info.className))
68 return getStaticValueSlot<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, slot);
73 return getStaticValueDescriptor<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
NativeErrorConstructor.cpp 33 const ClassInfo NativeErrorConstructor::info = { "Function", &InternalFunction::info, 0, 0 };
36 : InternalFunction(&exec->globalData(), structure, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name).getString(exec)))
JSFunction.h 27 #include "InternalFunction.h"
37 class JSFunction : public InternalFunction {
41 typedef InternalFunction Base;
76 const static unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren | OverridesGetPropertyNames | InternalFunction::StructureFlags;
  /external/webkit/WebCore/bridge/
runtime_method.h 30 #include <runtime/InternalFunction.h>
36 class RuntimeMethod : public InternalFunction {
54 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren | InternalFunction::StructureFlags;
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.h 29 #include "InternalFunction.h"
34 class JSCallbackFunction : public InternalFunction {
40 // InternalFunction mish-mashes constructor and function behavior -- we should
JSCallbackFunction.cpp 43 const ClassInfo JSCallbackFunction::info = { "CallbackFunction", &InternalFunction::info, 0, 0 };
46 : InternalFunction(&exec->globalData(), exec->lexicalGlobalObject()->callbackFunctionStructure(), name)
  /external/webkit/WebCore/bindings/js/
ScriptCallStack.h 63 JSC::InternalFunction* m_caller;
ScriptCallFrame.h 42 class InternalFunction;
JSNavigatorCustom.cpp 28 #include <runtime/InternalFunction.h>
56 if (!args.at(1).inherits(&InternalFunction::info)) {
ScriptCallStack.cpp 36 #include <runtime/InternalFunction.h>
96 InternalFunction* internalFunction = asInternalFunction(func);
98 m_frames.append(ScriptCallFrame(internalFunction->name(m_exec), UString(), 0, emptyArgList, 0));
99 func = m_exec->interpreter()->retrieveCaller(m_exec, internalFunction);

Completed in 282 milliseconds

1 2