Searched refs:s_info (Results 76 - 100 of 169) sorted by relevance

1234567

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSFunction.h74 static JS_EXPORTDATA const ClassInfo s_info; member in class:JSC::JSFunction
78 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
114 ASSERT(asObject(value)->inherits(&JSFunction::s_info));
H A DRegExpConstructor.h64 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
71 static const ClassInfo s_info; member in class:JSC::RegExpConstructor
103 ASSERT(asObject(value)->inherits(&RegExpConstructor::s_info));
H A DDatePrototype.cpp377 const ClassInfo DatePrototype::s_info = {"Date", &DateInstance::s_info, 0, ExecState::dateTable}; member in class:JSC::DatePrototype
435 ASSERT(inherits(&s_info));
457 if (!thisValue.inherits(&DateInstance::s_info))
475 if (!thisValue.inherits(&DateInstance::s_info))
493 if (!thisValue.inherits(&DateInstance::s_info))
512 if (!thisValue.inherits(&DateInstance::s_info))
528 if (!thisValue.inherits(&DateInstance::s_info))
544 if (!thisValue.inherits(&DateInstance::s_info))
554 if (!thisValue.inherits(&DateInstance::s_info))
[all...]
H A DJSWrapperObject.h41 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DStringObjectThatMasqueradesAsUndefined.h47 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DStructureChain.cpp35 ClassInfo StructureChain::s_info = { "StructureChain", 0, 0, 0 }; member in class:JSC::StructureChain
H A DJSPropertyNameIterator.h50 return Structure::create(globalData, prototype, TypeInfo(CompoundType, OverridesMarkChildren), AnonymousSlotCount, &s_info);
80 static const ClassInfo s_info; member in class:JSC::JSPropertyNameIterator
H A DExecutable.cpp43 const ClassInfo ExecutableBase::s_info = { "Executable", 0, 0, 0 }; member in class:JSC::ExecutableBase
45 const ClassInfo NativeExecutable::s_info = { "NativeExecutable", &ExecutableBase::s_info, 0, 0 }; member in class:JSC::NativeExecutable
51 const ClassInfo EvalExecutable::s_info = { "EvalExecutable", &ScriptExecutable::s_info, 0, 0 }; member in class:JSC::EvalExecutable
62 const ClassInfo ProgramExecutable::s_info = { "ProgramExecutable", &ScriptExecutable::s_info, 0, 0 }; member in class:JSC::ProgramExecutable
73 const ClassInfo FunctionExecutable::s_info = { "FunctionExecutable", &ScriptExecutable::s_info, 0, 0 }; member in class:JSC::FunctionExecutable
H A DRegExpObject.cpp52 const ClassInfo RegExpObject::s_info = { "RegExp", &JSObjectWithGlobalObject::s_info, 0, ExecState::regExpTable }; member in class:JSC::RegExpObject
68 ASSERT(inherits(&s_info));
H A DScopeChain.h68 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(CompoundType, StructureFlags), AnonymousSlotCount, &s_info); }
72 static const ClassInfo s_info; member in class:JSC::ScopeChainNode
H A DFunctionPrototype.cpp88 if (thisValue.inherits(&JSFunction::s_info)) {
98 if (thisValue.inherits(&InternalFunction::s_info)) {
120 if (asObject(array)->classInfo() == &Arguments::s_info)
124 else if (asObject(array)->inherits(&JSArray::s_info)) {
H A DJSActivation.cpp40 const ClassInfo JSActivation::s_info = { "JSActivation", &Base::s_info, 0, 0 }; member in class:JSC::JSActivation
49 ASSERT(inherits(&s_info));
224 ASSERT(callFrame->uncheckedR(realArgumentsRegister).jsValue().inherits(&Arguments::s_info));
H A DJSNotAnObject.h48 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebCore/bindings/js/
H A DJSImageDataCustom.cpp50 static const ClassInfo cpaClassInfo = { "CanvasPixelArray", &JSByteArray::Base::s_info, 0, 0 };
H A DJSDOMStringMapCustom.cpp64 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
84 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
H A DJSDOMWindowBase.h58 static const JSC::ClassInfo s_info; member in class:WebCore::JSDOMWindowBase
62 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
H A DJSStorageCustom.cpp56 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
82 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
H A DJSDOMWindowShell.cpp44 const ClassInfo JSDOMWindowShell::s_info = { "JSDOMWindowShell", &Base::s_info, 0, 0 }; member in class:WebCore::JSDOMWindowShell
50 ASSERT(inherits(&s_info));
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DJSNPObject.h51 static const JSC::ClassInfo s_info; member in class:WebKit::JSNPObject
60 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.cpp151 static const JSC::ClassInfo s_info; member in class:WebCore::JSTestObjConstructor
154 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
160 const ClassInfo JSTestObjConstructor::s_info = { "TestObjConstructor", &DOMConstructorObject::s_info, &JSTestObjConstructorTable, 0 }; member in class:WebCore::JSTestObjConstructor
165 ASSERT(inherits(&s_info));
240 const ClassInfo JSTestObjPrototype::s_info = { "TestObjPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSTestObjPrototypeTable, 0 }; member in class:WebCore::JSTestObjPrototype
257 const ClassInfo JSTestObj::s_info = { "TestObj", &DOMObjectWithGlobalPointer::s_info, &JSTestObjTable, 0 }; member in class:WebCore::JSTestObj
263 ASSERT(inherits(&s_info));
[all...]
/external/webkit/Source/WebCore/bridge/
H A Druntime_array.cpp38 const ClassInfo RuntimeArray::s_info = { "RuntimeArray", &JSArray::s_info, 0, 0 }; member in class:JSC::RuntimeArray
45 ASSERT(inherits(&s_info));
/external/webkit/Source/WebCore/bridge/c/
H A Dc_instance.cpp119 ASSERT(inherits(&s_info));
124 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
127 static const ClassInfo s_info; member in class:JSC::Bindings::CRuntimeMethod
130 const ClassInfo CRuntimeMethod::s_info = { "CRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; member in class:JSC::Bindings::CRuntimeMethod
140 if (!asObject(runtimeMethod)->inherits(&CRuntimeMethod::s_info))
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaInstanceJSC.cpp124 ASSERT(inherits(&s_info));
129 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
132 static const ClassInfo s_info; member in class:JavaRuntimeMethod
135 const ClassInfo JavaRuntimeMethod::s_info = { "JavaRuntimeMethod", &RuntimeMethod::s_info, 0, 0 }; member in class:JavaRuntimeMethod
145 if (!asObject(runtimeMethod)->inherits(&JavaRuntimeMethod::s_info))
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_runtime.h97 static const ClassInfo s_info; member in class:JSC::Bindings::ObjcFallbackObjectImp
108 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.h54 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);

Completed in 281 milliseconds

1234567