Searched refs:toObject (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSCell.cpp122 JSObject* object = toObject(exec, exec->lexicalGlobalObject());
134 JSObject* object = toObject(exec, exec->lexicalGlobalObject());
143 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value, slot);
148 toObject(exec, exec->lexicalGlobalObject())->put(exec, identifier, value);
153 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
158 return toObject(exec, exec->lexicalGlobalObject())->deleteProperty(exec, identifier);
163 return toObject(exec, exec->lexicalGlobalObject());
206 JSObject* JSCell::toObject(ExecState*, JSGlobalObject*) const function in class:JSC::JSCell
H A DCompletion.cpp62 JSObject* thisObj = (!thisValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec);
H A DJSNotAnObject.h38 // any operations performed on the result of a failed toObject call.
61 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
H A DJSCell.h114 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
126 // Object operations, with the toObject operation included.
320 inline JSObject* JSValue::toObject(ExecState* exec) const function in class:JSC::JSValue
322 return isCell() ? asCell()->toObject(exec, exec->lexicalGlobalObject()) : toObjectSlowCase(exec, exec->lexicalGlobalObject());
325 inline JSObject* JSValue::toObject(ExecState* exec, JSGlobalObject* globalObject) const function in class:JSC::JSValue
327 return isCell() ? asCell()->toObject(exec, globalObject) : toObjectSlowCase(exec, globalObject);
H A DJSNotAnObject.cpp70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const function in class:JSC::JSNotAnObject
H A DJSZombie.h57 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; } function in class:JSC::JSZombie
H A DJSValue.h188 JSObject* toObject(ExecState*) const;
189 JSObject* toObject(ExecState*, JSGlobalObject*) const;
205 // Object operations, with the toObject operation included.
/external/webkit/Source/JavaScriptGlue/
H A DJSValueWrapper.cpp77 JSObject* object = ptr->GetValue().toObject(exec);
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
136 JSObject *objValue = ptr->GetValue().toObject(exec);
153 JSObject* ksjThisObj = value.toObject(exec);
154 JSObject* objValue = ptr->GetValue().toObject(exec);
H A DUserObjectImp.cpp140 JSObject* kjsObject = kjsValue.toObject(exec);
170 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec);
207 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec);
287 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec);
321 JSUserObject* jsObjPtr = KJSValueToJSObject(toObject(exec, exec->lexicalGlobalObject()), exec);
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dautocomplete_text_field_unittest_helper.h24 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptengine.cpp237 QScriptValue QScriptEngine::toObject(const QScriptValue& value) function in class:QScriptEngine
239 return QScriptValuePrivate::get(QScriptValuePrivate::get(value)->toObject(d_ptr.data()));
H A Dqscriptengine.h59 QScriptValue toObject(const QScriptValue& value);
H A Dqscriptvalue.cpp344 \sa toObject(), QScriptEngine::newObject()
494 This function is obsolete; use QScriptEngine::toObject() instead.
496 QScriptValue QScriptValue::toObject() const function in class:QScriptValue
498 return QScriptValuePrivate::get(d_ptr->toObject());
H A Dqscriptvalue.h126 QScriptValue toObject() const;
H A Dqscriptvalue_p.h116 inline QScriptValuePrivate* toObject(QScriptEnginePrivate* engine);
117 inline QScriptValuePrivate* toObject();
614 QScriptValuePrivate* QScriptValuePrivate::toObject(QScriptEnginePrivate* engine) function in class:QScriptValuePrivate
649 qWarning("QScriptEngine::toObject: cannot convert value created in a different engine");
664 qWarning("QScriptEngine::toObject: cannot convert value created in a different engine");
670 This method is created only for QScriptValue::toObject() purpose which is obsolete.
673 QScriptValuePrivate* QScriptValuePrivate::toObject() function in class:QScriptValuePrivate
676 return toObject(m_engine.data());
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
H A Dtst_qscriptengine.cpp50 void toObject();
465 void tst_QScriptEngine::toObject() function in class:tst_QScriptEngine
468 QVERIFY(!eng.toObject(eng.undefinedValue()).isValid());
469 QVERIFY(!eng.toObject(eng.nullValue()).isValid());
470 QVERIFY(!eng.toObject(QScriptValue()).isValid());
474 QScriptValue tmp = eng.toObject(falskt);
483 QScriptValue tmp = eng.toObject(sant);
492 QScriptValue tmp = eng.toObject(number);
501 QScriptValue tmp = eng.toObject(str);
509 QScriptValue tmp = eng.toObject(objec
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
H A DBlenderModelLoader.java63 Object object = this.toObject(block.getStructure(blenderContext));
H A DAbstractBlenderLoader.java83 Object object = this.toObject(objectStructure);
131 public Object toObject(Structure structure) throws BlenderFileException { method in class:AbstractBlenderLoader
134 return objectHelper.toObject(structure, blenderContext);
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp86 void toObject();
389 void tst_QScriptValue::toObject() function in class:tst_QScriptValue
393 value.toObject();
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.cpp840 QCOMPARE(undefined.toObject().isValid(), false);
842 QCOMPARE(null.toObject().isValid(), false);
843 QCOMPARE(QScriptValue().toObject().isValid(), false);
847 QScriptValue tmp = falskt.toObject();
855 QScriptValue tmp = sant.toObject();
863 QScriptValue tmp = number.toObject();
871 QScriptValue tmp = str.toObject();
880 QScriptValue tmp = object.toObject();
886 // V2 constructors: in this case, you have to use QScriptEngine::toObject()
889 QVERIFY(!undefined.toObject()
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSGeolocationCustom.cpp60 JSObject* object = value.toObject(exec);
H A DJSDeviceMotionEventCustom.cpp44 JSObject* object = value.toObject(exec);
82 JSObject* object = value.toObject(exec);
H A DJSDOMBinding.cpp281 return static_cast<DateInstance*>(value.toObject(exec))->internalNumber();
290 JSObject* exceptionObject = exception.toObject(exec);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraint.java64 Spatial target = (Spatial) objectHelper.toObject(targetStructure, blenderContext);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
H A DArrayModifier.java71 Node curveObject = (Node) objectHelper.toObject(curveStructure, blenderContext);
190 caps[i] = (Node) objectHelper.toObject(capStructure, blenderContext);

Completed in 1329 milliseconds

12