/external/webkit/Source/JavaScriptCore/runtime/ |
D | InternalFunction.cpp | 33 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()
|
D | 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) in asInternalFunction() 65 ASSERT(asObject(value)->inherits(&InternalFunction::s_info)); in asInternalFunction() 66 return static_cast<InternalFunction*>(asObject(value)); in asInternalFunction()
|
D | NumberConstructor.cpp | 45 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()
|
D | NativeErrorConstructor.cpp | 33 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()
|
D | ObjectConstructor.h | 30 class ObjectConstructor : public InternalFunction { 45 …static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFl…
|
D | NativeErrorConstructor.h | 32 class NativeErrorConstructor : public InternalFunction { 46 … static const unsigned StructureFlags = OverridesMarkChildren | InternalFunction::StructureFlags;
|
D | NumberConstructor.h | 30 class NumberConstructor : public InternalFunction { 48 …uctureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFla…
|
D | FunctionPrototype.cpp | 41 …: 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()
|
D | RegExpConstructor.cpp | 70 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()
|
D | RegExpConstructor.h | 58 class RegExpConstructor : public InternalFunction { 88 …uctureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFla…
|
D | ErrorConstructor.h | 31 class ErrorConstructor : public InternalFunction {
|
D | ArrayConstructor.h | 30 class ArrayConstructor : public InternalFunction {
|
D | StringConstructor.h | 30 class StringConstructor : public InternalFunction {
|
D | DateConstructor.h | 30 class DateConstructor : public InternalFunction {
|
D | BooleanConstructor.h | 30 class BooleanConstructor : public InternalFunction {
|
D | FunctionConstructor.h | 30 class FunctionConstructor : public InternalFunction {
|
D | FunctionPrototype.h | 28 class FunctionPrototype : public InternalFunction {
|
/external/webkit/Source/WebCore/bridge/ |
D | runtime_method.cpp | 44 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()
|
D | runtime_method.h | 36 class RuntimeMethod : public InternalFunction { 54 …static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFl…
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
D | JSNPMethod.cpp | 42 const ClassInfo JSNPMethod::s_info = { "NPMethod", &InternalFunction::s_info, 0, 0 }; 45 …: InternalFunction(&exec->globalData(), globalObject, createStructure(exec->globalData(), globalOb… in JSNPMethod()
|
D | JSNPMethod.h | 36 class JSNPMethod : public JSC::InternalFunction {
|
/external/webkit/Source/JavaScriptCore/API/ |
D | JSCallbackFunction.cpp | 43 const ClassInfo JSCallbackFunction::s_info = { "CallbackFunction", &InternalFunction::s_info, 0, 0 … 46 …: InternalFunction(&exec->globalData(), globalObject, globalObject->callbackFunctionStructure(), n… in JSCallbackFunction()
|
D | JSCallbackFunction.h | 34 class JSCallbackFunction : public InternalFunction {
|
/external/webkit/Source/JavaScriptCore/profiler/ |
D | Profiler.cpp | 173 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/ |
D | qt_runtime.h | 145 class QtRuntimeMethod : public InternalFunction { 162 …reFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | InternalFunction::StructureFla…
|