HomeSort by relevance Sort by last modified time
    Searched defs:s_info (Results 101 - 107 of 107) sorted by null

1 2 3 45

  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp 88 const ClassInfo ArrayPrototype::s_info = {"Array", &JSArray::s_info, 0, ExecState::arrayTable}; member in class:JSC::ArrayPrototype
120 ASSERT(inherits(&s_info));
170 if (!isRealArray && !thisValue.inherits(&JSArray::s_info))
233 if (!thisValue.inherits(&JSArray::s_info))
344 if (curArg.inherits(&JSArray::s_info)) {
503 if (thisObj->classInfo() == &JSArray::s_info) {
    [all...]
DatePrototype.cpp 377 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...]
JSONObject.cpp 59 ASSERT(inherits(&s_info));
136 if (object->inherits(&NumberObject::s_info))
138 if (object->inherits(&StringObject::s_info))
140 if (object->inherits(&BooleanObject::s_info))
211 if (m_replacer.asObject()->inherits(&JSArray::s_info)) {
233 if (!asObject(name)->inherits(&NumberObject::s_info) && !asObject(name)->inherits(&StringObject::s_info))
360 if (value.isUndefined() && !holder->inherits(&JSArray::s_info))
400 if (holder->inherits(&JSArray::s_info)) {
471 , m_isArray(object->inherits(&JSArray::s_info))
586 const ClassInfo JSONObject::s_info = { "JSON", &JSObjectWithGlobalObject::s_info, 0, ExecState::jsonTable }; member in class:JSC::JSONObject
    [all...]
JSObject.h 249 static JS_EXPORTDATA const ClassInfo s_info; member in class:JSC::JSObject
254 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
329 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
362 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
409 ASSERT(inherits(&s_info));
    [all...]
StringPrototype.cpp 88 const ClassInfo StringPrototype::s_info = { "String", &StringObject::s_info, 0, ExecState::stringTable }; member in class:JSC::StringPrototype
137 ASSERT(inherits(&s_info));
310 if (pattern.inherits(&RegExpObject::s_info)) {
478 if (thisValue.inherits(&StringObject::s_info))
608 if (a0.inherits(&RegExpObject::s_info))
658 if (a0.inherits(&RegExpObject::s_info))
716 if (a0.inherits(&RegExpObject::s_info)) {
    [all...]
  /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/bridge/qt/
qt_runtime.cpp 167 if (object->inherits(&RuntimeArray::s_info)) // RuntimeArray 'inherits' from Array, but not in C++
169 else if (object->inherits(&JSArray::s_info))
171 else if (object->inherits(&DateInstance::s_info))
173 else if (object->inherits(&RegExpObject::s_info))
175 else if (object->inherits(&RuntimeObject::s_info))
230 if (object->inherits(&NumberObject::s_info))
232 else if (object->inherits(&BooleanObject::s_info))
266 if (type == Object && object->inherits(&BooleanObject::s_info))
766 if (object && object->inherits(&JSHTMLElement::s_info))
768 else if (object && object->inherits(&JSDocument::s_info))
982 const ClassInfo QtRuntimeMethod::s_info = { "QtRuntimeMethod", &InternalFunction::s_info, 0, 0 }; member in class:JSC::Bindings::QtRuntimeMethod
    [all...]

Completed in 57 milliseconds

1 2 3 45