Home
last modified time | relevance | path

Searched refs:toObject (Results 1 – 25 of 51) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/runtime/
DJSCell.cpp122 JSObject* object = toObject(exec, exec->lexicalGlobalObject()); in getOwnPropertySlot()
134 JSObject* object = toObject(exec, exec->lexicalGlobalObject()); in getOwnPropertySlot()
143 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value, slot); in put()
148 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value); in put()
153 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier); in deleteProperty()
158 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier); in deleteProperty()
163 return toObject(exec, exec->lexicalGlobalObject()); in toThisObject()
206 JSObject* JSCell::toObject(ExecState*, JSGlobalObject*) const in toObject() function in JSC::JSCell
DJSCell.h114 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
320 inline JSObject* JSValue::toObject(ExecState* exec) const in toObject() function
322 …return isCell() ? asCell()->toObject(exec, exec->lexicalGlobalObject()) : toObjectSlowCase(exec, e… in toObject()
325 inline JSObject* JSValue::toObject(ExecState* exec, JSGlobalObject* globalObject) const in toObject() function
327 … return isCell() ? asCell()->toObject(exec, globalObject) : toObjectSlowCase(exec, globalObject); in toObject()
DJSNotAnObject.h61 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
DCompletion.cpp62 …isValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec); in evaluate()
DJSNotAnObject.cpp70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const in toObject() function in JSC::JSNotAnObject
DJSZombie.h57 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; } in toObject() function
DJSValue.h188 JSObject* toObject(ExecState*) const;
189 JSObject* toObject(ExecState*, JSGlobalObject*) const;
DArrayPrototype.cpp252 JSObject* o = element.toObject(exec); in arrayProtoFuncToLocaleString()
346 JSObject* curObject = curArg.toObject(exec); in arrayProtoFuncConcat()
662 …exec->argument(1).isUndefinedOrNull() ? exec->globalThisValue() : exec->argument(1).toObject(exec); in arrayProtoFuncFilter()
721 …exec->argument(1).isUndefinedOrNull() ? exec->globalThisValue() : exec->argument(1).toObject(exec); in arrayProtoFuncMap()
783 …exec->argument(1).isUndefinedOrNull() ? exec->globalThisValue() : exec->argument(1).toObject(exec); in arrayProtoFuncEvery()
841 …exec->argument(1).isUndefinedOrNull() ? exec->globalThisValue() : exec->argument(1).toObject(exec); in arrayProtoFuncForEach()
891 …exec->argument(1).isUndefinedOrNull() ? exec->globalThisValue() : exec->argument(1).toObject(exec); in arrayProtoFuncSome()
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
Dtst_qscriptengine.cpp50 void toObject();
465 void tst_QScriptEngine::toObject() in toObject() function in tst_QScriptEngine
468 QVERIFY(!eng.toObject(eng.undefinedValue()).isValid()); in toObject()
469 QVERIFY(!eng.toObject(eng.nullValue()).isValid()); in toObject()
470 QVERIFY(!eng.toObject(QScriptValue()).isValid()); in toObject()
474 QScriptValue tmp = eng.toObject(falskt); in toObject()
483 QScriptValue tmp = eng.toObject(sant); in toObject()
492 QScriptValue tmp = eng.toObject(number); in toObject()
501 QScriptValue tmp = eng.toObject(str); in toObject()
509 QScriptValue tmp = eng.toObject(object); in toObject()
[all …]
/external/webkit/Source/JavaScriptGlue/
DJSValueWrapper.cpp77 JSObject* object = ptr->GetValue().toObject(exec); in JSObjectCopyPropertyNames()
112 …JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, e… in JSObjectCopyProperty()
136 JSObject *objValue = ptr->GetValue().toObject(exec); in JSObjectSetProperty()
153 JSObject* ksjThisObj = value.toObject(exec); in JSObjectCallFunction()
154 JSObject* objValue = ptr->GetValue().toObject(exec); in JSObjectCallFunction()
DUserObjectImp.cpp140 JSObject* kjsObject = kjsValue.toObject(exec); in getOwnPropertySlot()
170 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec); in toPrimitive()
207 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec); in toBoolean()
287 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec); in toNumber()
321 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec); in toString()
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
Dtst_qscriptvalue.cpp840 QCOMPARE(undefined.toObject().isValid(), false); in toObjectSimple()
842 QCOMPARE(null.toObject().isValid(), false); in toObjectSimple()
843 QCOMPARE(QScriptValue().toObject().isValid(), false); in toObjectSimple()
847 QScriptValue tmp = falskt.toObject(); in toObjectSimple()
855 QScriptValue tmp = sant.toObject(); in toObjectSimple()
863 QScriptValue tmp = number.toObject(); in toObjectSimple()
871 QScriptValue tmp = str.toObject(); in toObjectSimple()
880 QScriptValue tmp = object.toObject(); in toObjectSimple()
889 QVERIFY(!undefined.toObject().isValid()); in toObjectSimple()
890 QVERIFY(!eng.toObject(undefined).isValid()); in toObjectSimple()
[all …]
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
Dtst_qscriptvalue.cpp86 void toObject();
389 void tst_QScriptValue::toObject() in toObject() function in tst_QScriptValue
393 value.toObject(); in toObject()
/external/webkit/Source/JavaScriptCore/qt/api/
Dqscriptengine.cpp237 QScriptValue QScriptEngine::toObject(const QScriptValue& value) in toObject() function in QScriptEngine
239 return QScriptValuePrivate::get(QScriptValuePrivate::get(value)->toObject(d_ptr.data())); in toObject()
Dqscriptengine.h59 QScriptValue toObject(const QScriptValue& value);
Dqscriptvalue.cpp496 QScriptValue QScriptValue::toObject() const in toObject() function in QScriptValue
498 return QScriptValuePrivate::get(d_ptr->toObject()); in toObject()
Dqscriptvalue_p.h116 inline QScriptValuePrivate* toObject(QScriptEnginePrivate* engine);
117 inline QScriptValuePrivate* toObject();
614 QScriptValuePrivate* QScriptValuePrivate::toObject(QScriptEnginePrivate* engine) in toObject() function
673 QScriptValuePrivate* QScriptValuePrivate::toObject() in toObject() function
676 return toObject(m_engine.data()); in toObject()
Dqscriptvalue.h126 QScriptValue toObject() const;
/external/chromium/chrome/browser/ui/cocoa/location_bar/
Dautocomplete_text_field_unittest_helper.h24 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject;
Dautocomplete_text_field_unittest_helper.mm13 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject {
/external/webkit/Source/WebCore/bindings/js/
DJSDeviceMotionEventCustom.cpp44 JSObject* object = value.toObject(exec); in readAccelerationArgument()
82 JSObject* object = value.toObject(exec); in readRotationRateArgument()
DJSGeolocationCustom.cpp60 JSObject* object = value.toObject(exec); in createPositionOptions()
DJSDOMBinding.cpp281 return static_cast<DateInstance*>(value.toObject(exec))->internalNumber(); in valueToDate()
290 JSObject* exceptionObject = exception.toObject(exec); in reportException()
/external/webkit/Source/WebCore/bridge/qt/
Dqt_runtime.cpp166 JSObject *object = val.toObject(exec); in valueRealType()
192 object = value.toObject(exec); in convertValueToQVariant()
682 JSObject* object = value.toObject(exec); in convertValueToQVariant()
1571 funcObject = exec->argument(0).toObject(exec); in call()
1581 thisObject = exec->argument(0).toObject(exec); in call()
1584 JSObject *asObj = exec->argument(1).toObject(exec); in call()
1597 JSObject* asFuncObj = val.toObject(exec); in call()
/external/chromium/chrome/browser/ui/cocoa/content_settings/
Dcookie_details_view_controller.mm93 toObject:treeController

123