/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSCell.cpp | 122 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
|
D | JSCell.h | 114 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()
|
D | JSNotAnObject.h | 61 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
|
D | Completion.cpp | 62 …isValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec); in evaluate()
|
D | JSNotAnObject.cpp | 70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const in toObject() function in JSC::JSNotAnObject
|
D | JSZombie.h | 57 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; } in toObject() function
|
D | JSValue.h | 188 JSObject* toObject(ExecState*) const; 189 JSObject* toObject(ExecState*, JSGlobalObject*) const;
|
D | ArrayPrototype.cpp | 252 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/ |
D | tst_qscriptengine.cpp | 50 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/ |
D | JSValueWrapper.cpp | 77 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()
|
D | UserObjectImp.cpp | 140 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/ |
D | tst_qscriptvalue.cpp | 840 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/ |
D | tst_qscriptvalue.cpp | 86 void toObject(); 389 void tst_QScriptValue::toObject() in toObject() function in tst_QScriptValue 393 value.toObject(); in toObject()
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
D | qscriptengine.cpp | 237 QScriptValue QScriptEngine::toObject(const QScriptValue& value) in toObject() function in QScriptEngine 239 return QScriptValuePrivate::get(QScriptValuePrivate::get(value)->toObject(d_ptr.data())); in toObject()
|
D | qscriptengine.h | 59 QScriptValue toObject(const QScriptValue& value);
|
D | qscriptvalue.cpp | 496 QScriptValue QScriptValue::toObject() const in toObject() function in QScriptValue 498 return QScriptValuePrivate::get(d_ptr->toObject()); in toObject()
|
D | qscriptvalue_p.h | 116 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()
|
D | qscriptvalue.h | 126 QScriptValue toObject() const;
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
D | autocomplete_text_field_unittest_helper.h | 24 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject;
|
D | autocomplete_text_field_unittest_helper.mm | 13 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject {
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSDeviceMotionEventCustom.cpp | 44 JSObject* object = value.toObject(exec); in readAccelerationArgument() 82 JSObject* object = value.toObject(exec); in readRotationRateArgument()
|
D | JSGeolocationCustom.cpp | 60 JSObject* object = value.toObject(exec); in createPositionOptions()
|
D | JSDOMBinding.cpp | 281 return static_cast<DateInstance*>(value.toObject(exec))->internalNumber(); in valueToDate() 290 JSObject* exceptionObject = exception.toObject(exec); in reportException()
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_runtime.cpp | 166 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/ |
D | cookie_details_view_controller.mm | 93 toObject:treeController
|