HomeSort by relevance Sort by last modified time
    Searched full:s_info (Results 101 - 125 of 173) sorted by null

1 2 3 45 6 7

  /external/webkit/Source/WebCore/bindings/js/
JSNodeFilterCustom.cpp 47 if (value.inherits(&JSNodeFilter::s_info))
JSDOMWindowShell.cpp 44 const ClassInfo JSDOMWindowShell::s_info = { "JSDOMWindowShell", &Base::s_info, 0, 0 }; member in class:WebCore::JSDOMWindowShell
50 ASSERT(inherits(&s_info));
JSDOMWindowCustom.cpp 148 entry = s_info.propHashTable(exec)->entry(exec, propertyName);
153 entry = JSDOMWindowPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
180 entry = JSDOMWindowPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
220 entry = JSDOMWindow::s_info.propHashTable(exec)->entry(exec, propertyName);
291 entry = s_info.propHashTable(exec)->entry(exec, propertyName);
296 entry = JSDOMWindowPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
307 entry = JSDOMWindow::s_info.propHashTable(exec)->entry(exec, propertyName);
363 if (lookupPut<JSDOMWindow>(exec, propertyName, value, s_info.propHashTable(exec), this))
803 if (object->inherits(&JSDOMWindow::s_info))
805 if (object->inherits(&JSDOMWindowShell::s_info))
    [all...]
JSNavigatorCustom.cpp 80 if (!exec->argument(1).inherits(&InternalFunction::s_info)) {
JSDOMWindowShell.h 55 static const JSC::ClassInfo s_info; member in class:WebCore::JSDOMWindowShell
63 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSDirectoryEntryCustom.cpp 62 if (!exec->argument(1).isNull() && !exec->argument(1).isUndefined() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
108 if (!exec->argument(1).isNull() && !exec->argument(1).isUndefined() && exec->argument(1).isObject() && !exec->argument(1).inherits(&JSWebKitFlags::s_info)) {
JSEventTarget.cpp 199 if (value.inherits(&JS##type::s_info)) \
207 if (value.inherits(&JSDOMWindowShell::s_info))
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.mm 190 const ClassInfo ObjcFallbackObjectImp::s_info = { "ObjcFallbackObject", &JSObjectWithGlobalObject::s_info, 0, 0 };
198 ASSERT(inherits(&s_info));
222 if (!thisValue.inherits(&ObjCRuntimeObject::s_info))
objc_instance.mm 184 ASSERT(inherits(&s_info));
189 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
192 static const ClassInfo s_info;
195 const ClassInfo ObjCRuntimeMethod::s_info = { "ObjCRuntimeMethod", &RuntimeMethod::s_info, 0, 0 };
205 if (!asObject(runtimeMethod)->inherits(&ObjCRuntimeMethod::s_info))
  /external/webkit/Source/JavaScriptCore/profiler/
Profiler.cpp 166 if (asObject(functionValue)->inherits(&JSFunction::s_info)) {
171 if (asObject(functionValue)->inherits(&JSFunction::s_info))
173 if (asObject(functionValue)->inherits(&InternalFunction::s_info))
  /external/webkit/Source/JavaScriptCore/runtime/
JSArray.h 76 static JS_EXPORTDATA const ClassInfo s_info; member in class:JSC::JSArray
128 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
176 ASSERT(cell->inherits(&JSArray::s_info));
RegExpObject.cpp 52 const ClassInfo RegExpObject::s_info = { "RegExp", &JSObjectWithGlobalObject::s_info, 0, ExecState::regExpTable }; member in class:JSC::RegExpObject
68 ASSERT(inherits(&s_info));
JSFunction.cpp 52 const ClassInfo JSFunction::s_info = { "Function", &Base::s_info, 0, 0 }; member in class:JSC::JSFunction
69 ASSERT(inherits(&s_info));
78 ASSERT(inherits(&s_info));
92 ASSERT(inherits(&s_info));
MathObject.cpp 64 const ClassInfo MathObject::s_info = { "Math", &JSObjectWithGlobalObject::s_info, 0, ExecState::mathTable }; member in class:JSC::MathObject
92 ASSERT(inherits(&s_info));
JSNotAnObject.h 48 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSStaticScopeObject.h 50 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); }
RegExpConstructor.cpp 70 const ClassInfo RegExpConstructor::s_info = { "Function", &InternalFunction::s_info, 0, ExecState::regExpConstructorTable }; member in class:JSC::RegExpConstructor
102 ASSERT(inherits(&s_info));
301 if (arg0.inherits(&RegExpObject::s_info)) {
StructureChain.cpp 35 ClassInfo StructureChain::s_info = { "StructureChain", 0, 0, 0 }; member in class:JSC::StructureChain
  /external/webkit/Source/WebCore/bindings/objc/
DOMUtility.mm 99 if (object->inherits(&WebCore::JS##className::s_info)) \
131 if (object->inherits(&WebCore::JSDOMWindowShell::s_info))
134 if (object->inherits(&WebCore::JSDOMImplementation::s_info))
  /external/webkit/Source/WebCore/bridge/
runtime_array.cpp 38 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/qt/
qt_instance.cpp 52 static const ClassInfo s_info; member in class:JSC::Bindings::QtRuntimeObject
64 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
71 const ClassInfo QtRuntimeObject::s_info = { "QtRuntimeObject", &RuntimeObject::s_info, 0, 0 }; member in class:JSC::Bindings::QtRuntimeObject
166 if (!object->inherits(&QtRuntimeObject::s_info))
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 50 const ClassInfo JSNPObject::s_info = { "NPObject", &JSObjectWithGlobalObject::s_info, 0, 0 }; member in class:WebKit::JSNPObject
57 ASSERT(inherits(&s_info));
198 ASSERT(object->inherits(&JSNPObject::s_info));
215 ASSERT(constructor->inherits(&JSNPObject::s_info));
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 187 ASSERT(inherits(&s_info));
192 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
195 static const ClassInfo s_info;
198 const ClassInfo ProxyRuntimeMethod::s_info = { "ProxyRuntimeMethod", &RuntimeMethod::s_info, 0, 0 };
208 if (!asObject(runtimeMethod)->inherits(&ProxyRuntimeMethod::s_info))
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.h 54 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObject.h 126 static const ClassInfo s_info; member in class:JSC::JSCallbackObject
133 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), Base::AnonymousSlotCount, &s_info);

Completed in 982 milliseconds

1 2 3 45 6 7