Home
last modified time | relevance | path

Searched refs:InternalFunction (Results 1 – 25 of 55) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/runtime/
DInternalFunction.cpp33 void InternalFunction::vtableAnchor() {} in vtableAnchor()
35 ASSERT_CLASS_FITS_IN_CELL(InternalFunction);
37 const ClassInfo InternalFunction::s_info = { "Function", &JSObjectWithGlobalObject::s_info, 0, 0 };
39 InternalFunction::InternalFunction(VPtrStealingHackType) in InternalFunction() function in JSC::InternalFunction
44 InternalFunction::InternalFunction(JSGlobalData* globalData, JSGlobalObject* globalObject, Structur… in InternalFunction() function in JSC::InternalFunction
51 const UString& InternalFunction::name(ExecState* exec) in name()
56 const UString InternalFunction::displayName(ExecState* exec) in displayName()
66 const UString InternalFunction::calculatedDisplayName(ExecState* exec) in calculatedDisplayName()
DInternalFunction.h34 class InternalFunction : public JSObjectWithGlobalObject {
51 InternalFunction(VPtrStealingHackType);
53 InternalFunction(JSGlobalData*, JSGlobalObject*, Structure*, const Identifier&);
61 InternalFunction* asInternalFunction(JSValue);
63 inline InternalFunction* asInternalFunction(JSValue value) in asInternalFunction()
65 ASSERT(asObject(value)->inherits(&InternalFunction::s_info)); in asInternalFunction()
66 return static_cast<InternalFunction*>(asObject(value)); in asInternalFunction()
DNumberConstructor.cpp45 const ClassInfo NumberConstructor::s_info = { "Function", &InternalFunction::s_info, 0, ExecState::…
58 …: InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype-… in NumberConstructor()
71 …return getStaticValueSlot<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec),… in getOwnPropertySlot()
76 …return getStaticValueDescriptor<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(… in getOwnPropertyDescriptor()
DNativeErrorConstructor.cpp33 const ClassInfo NativeErrorConstructor::s_info = { "Function", &InternalFunction::s_info, 0, 0 };
36 … : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, nameAndMessage)) in NativeErrorConstructor()
51 InternalFunction::markChildren(markStack); in markChildren()
DObjectConstructor.h30 class ObjectConstructor : public InternalFunction {
45 …static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFl…
DNativeErrorConstructor.h32 class NativeErrorConstructor : public InternalFunction {
46 … static const unsigned StructureFlags = OverridesMarkChildren | InternalFunction::StructureFlags;
DNumberConstructor.h30 class NumberConstructor : public InternalFunction {
48 …uctureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFla…
DFunctionPrototype.cpp41 …: InternalFunction(&exec->globalData(), globalObject, structure, exec->propertyNames().nullIdentif… in FunctionPrototype()
98 if (thisValue.inherits(&InternalFunction::s_info)) { in functionProtoFuncToString()
99 InternalFunction* function = asInternalFunction(thisValue); in functionProtoFuncToString()
DRegExpConstructor.cpp70 const ClassInfo RegExpConstructor::s_info = { "Function", &InternalFunction::s_info, 0, ExecState::…
99 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "RegExp")) in RegExpConstructor()
197 …return getStaticValueSlot<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorT… in getOwnPropertySlot()
202 …return getStaticValueDescriptor<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstr… in getOwnPropertyDescriptor()
282 …lookupPut<RegExpConstructor, InternalFunction>(exec, propertyName, value, ExecState::regExpConstru… in put()
DRegExpConstructor.h58 class RegExpConstructor : public InternalFunction {
88 …uctureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFla…
DErrorConstructor.h31 class ErrorConstructor : public InternalFunction {
DArrayConstructor.h30 class ArrayConstructor : public InternalFunction {
DStringConstructor.h30 class StringConstructor : public InternalFunction {
DDateConstructor.h30 class DateConstructor : public InternalFunction {
DBooleanConstructor.h30 class BooleanConstructor : public InternalFunction {
DFunctionConstructor.h30 class FunctionConstructor : public InternalFunction {
DFunctionPrototype.h28 class FunctionPrototype : public InternalFunction {
/external/webkit/Source/WebCore/bridge/
Druntime_method.cpp44 const ClassInfo RuntimeMethod::s_info = { "RuntimeMethod", &InternalFunction::s_info, 0, 0 };
48 : InternalFunction(&exec->globalData(), globalObject, structure, ident) in RuntimeMethod()
74 return InternalFunction::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
86 return InternalFunction::getOwnPropertyDescriptor(exec, propertyName, descriptor); in getOwnPropertyDescriptor()
Druntime_method.h36 class RuntimeMethod : public InternalFunction {
54 …static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFl…
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DJSNPMethod.cpp42 const ClassInfo JSNPMethod::s_info = { "NPMethod", &InternalFunction::s_info, 0, 0 };
45 …: InternalFunction(&exec->globalData(), globalObject, createStructure(exec->globalData(), globalOb… in JSNPMethod()
DJSNPMethod.h36 class JSNPMethod : public JSC::InternalFunction {
/external/webkit/Source/JavaScriptCore/API/
DJSCallbackFunction.cpp43 const ClassInfo JSCallbackFunction::s_info = { "CallbackFunction", &InternalFunction::s_info, 0, 0 …
46 …: InternalFunction(&exec->globalData(), globalObject, globalObject->callbackFunctionStructure(), n… in JSCallbackFunction()
DJSCallbackFunction.h34 class JSCallbackFunction : public InternalFunction {
/external/webkit/Source/JavaScriptCore/profiler/
DProfiler.cpp173 if (asObject(functionValue)->inherits(&InternalFunction::s_info)) in createCallIdentifier()
174 …return CallIdentifier(static_cast<InternalFunction*>(asObject(functionValue))->name(exec), default… in createCallIdentifier()
/external/webkit/Source/WebCore/bridge/qt/
Dqt_runtime.h145 class QtRuntimeMethod : public InternalFunction {
162 …reFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | InternalFunction::StructureFla…

123