Searched defs:toObject (Results 1 - 13 of 13) sorted by relevance

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
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/runtime/
H A DJSNotAnObject.cpp70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const function in class:JSC::JSNotAnObject
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 DJSZombie.h57 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; } function in class:JSC::JSZombie
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 DJSString.cpp261 JSObject* JSString::toObject(ExecState* exec, JSGlobalObject* globalObject) const function in class:JSC::JSString
H A DJSObject.cpp489 JSObject* JSObject::toObject(ExecState*, JSGlobalObject*) const function in class:JSC::JSObject
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
H A DObjectHelper.java110 public Object toObject(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException { method in class:ObjectHelper
131 parent = this.toObject(parentStructure, blenderContext);
/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 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_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/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/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...]

Completed in 138 milliseconds