/external/webkit/Source/WebCore/bridge/jni/jsc/ |
JavaRuntimeObject.h | 43 static const ClassInfo s_info; member in class:JSC::Bindings::JavaRuntimeObject 47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
/external/webkit/Source/WebCore/bridge/objc/ |
ObjCRuntimeObject.h | 43 static const ClassInfo s_info; member in class:JSC::Bindings::ObjCRuntimeObject 47 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
ProxyRuntimeObject.h | 46 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); 49 static const JSC::ClassInfo s_info; member in class:WebKit::ProxyRuntimeObject
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPMethod.h | 40 static const JSC::ClassInfo s_info; member in class:WebKit::JSNPMethod 47 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
RegExpPrototype.cpp | 64 if (!thisValue.inherits(&RegExpObject::s_info)) 72 if (!thisValue.inherits(&RegExpObject::s_info)) 80 if (!thisValue.inherits(&RegExpObject::s_info)) 87 if (arg0.inherits(&RegExpObject::s_info)) { 118 if (!thisValue.inherits(&RegExpObject::s_info)) { 119 if (thisValue.inherits(&RegExpPrototype::s_info))
|
Executable.cpp | 43 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
|
JSActivation.h | 67 static const ClassInfo s_info; member in class:JSC::JSActivation 69 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } 94 ASSERT(asObject(value)->inherits(&JSActivation::s_info));
|
JSFunction.h | 74 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));
|
JSZombie.h | 41 ASSERT(inherits(&s_info)); 71 return Structure::create(globalData, prototype, TypeInfo(LeafType, 0), AnonymousSlotCount, &s_info); 74 static const ClassInfo s_info; member in class:JSC::JSZombie
|
RegExpConstructor.h | 64 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));
|
BooleanPrototype.cpp | 63 if (!thisValue.inherits(&BooleanObject::s_info)) 79 if (!thisValue.inherits(&BooleanObject::s_info))
|
JSPropertyNameIterator.h | 50 return Structure::create(globalData, prototype, TypeInfo(CompoundType, OverridesMarkChildren), AnonymousSlotCount, &s_info); 80 static const ClassInfo s_info; member in class:JSC::JSPropertyNameIterator
|
ScopeChain.cpp | 54 const ClassInfo ScopeChainNode::s_info = { "ScopeChainNode", 0, 0, 0 }; member in class:JSC::ScopeChainNode 61 while (!(*iter)->inherits(&JSActivation::s_info)) {
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestObj.cpp | 151 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/bindings/js/ |
JSDOMWindowBase.cpp | 46 const ClassInfo JSDOMWindowBase::s_info = { "Window", &JSDOMGlobalObject::s_info, 0, 0 }; member in class:WebCore::JSDOMWindowBase 53 ASSERT(inherits(&s_info)); 217 if (classInfo == &JSDOMWindow::s_info) 219 if (classInfo == &JSDOMWindowShell::s_info)
|
JSAudioConstructor.cpp | 40 const ClassInfo JSAudioConstructor::s_info = { "AudioConstructor", &DOMConstructorWithDocument::s_info, 0, 0 }; member in class:WebCore::JSAudioConstructor 45 ASSERT(inherits(&s_info));
|
JSDOMGlobalObject.cpp | 43 const ClassInfo JSDOMGlobalObject::s_info = { "DOMGlobalObject", &JSGlobalObject::s_info, 0, 0 }; member in class:WebCore::JSDOMGlobalObject 50 ASSERT(inherits(&s_info));
|
JSDOMFormDataCustom.cpp | 46 return value.inherits(&JSHTMLFormElement::s_info) ? static_cast<HTMLFormElement*>(static_cast<JSHTMLFormElement*>(asObject(value))->impl()) : 0; 65 if (value.inherits(&JSBlob::s_info))
|
JSWorkerContextBase.h | 47 static const JSC::ClassInfo s_info; member in class:WebCore::JSWorkerContextBase 54 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
/external/webkit/Source/WebCore/bridge/c/ |
c_instance.cpp | 119 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/JavaScriptCore/API/ |
JSWeakObjectMapRefPrivate.cpp | 60 ASSERT(obj->inherits(&JSCallbackObject<JSGlobalObject>::s_info) || obj->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info));
|
/external/webkit/Source/JavaScriptGlue/ |
UserObjectImp.h | 42 static const ClassInfo s_info; member in class:UserObjectImp 63 return Structure::create(globalData, prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames), AnonymousSlotCount, &s_info);
|
/external/webkit/Source/WebCore/bridge/ |
runtime_array.h | 54 static const ClassInfo s_info; member in class:JSC::RuntimeArray 63 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
runtime_method.h | 41 static const ClassInfo s_info; member in class:JSC::RuntimeMethod 50 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|
runtime_object.h | 57 static const ClassInfo s_info; member in class:JSC::Bindings::RuntimeObject 66 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
|