Searched refs:asObject (Results 26 - 50 of 139) sorted by relevance

123456

/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObject.cpp45 JSObjectRef thisRef = toRef(asObject(handle.get()));
/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectConstructor.cpp134 return JSValue::encode(asObject(exec->argument(0))->prototype());
144 JSObject* object = asObject(exec->argument(0));
172 asObject(exec->argument(0))->getOwnPropertyNames(exec, properties, IncludeDontEnumProperties);
186 asObject(exec->argument(0))->getOwnPropertyNames(exec, properties);
201 JSObject* description = asObject(in);
284 JSObject* O = asObject(exec->argument(0));
300 asObject(properties)->getOwnPropertyNames(exec, propertyNames);
337 return JSValue::encode(defineProperties(exec, asObject(exec->argument(0)), asObject(exec->argument(1))));
350 return JSValue::encode(defineProperties(exec, newObject, asObject(exe
[all...]
H A DJSActivation.h94 ASSERT(asObject(value)->inherits(&JSActivation::s_info));
95 return static_cast<JSActivation*>(asObject(value));
H A DRegExpObject.h96 ASSERT(asObject(value)->inherits(&RegExpObject::s_info));
97 return static_cast<RegExpObject*>(asObject(value));
/external/webkit/Source/WebCore/bindings/js/
H A DJSDirectoryEntryCustom.cpp79 successCallback = JSEntryCallback::create(asObject(exec->argument(2)), globalObject());
87 errorCallback = JSErrorCallback::create(asObject(exec->argument(3)), globalObject());
125 successCallback = JSEntryCallback::create(asObject(exec->argument(2)), globalObject());
133 errorCallback = JSErrorCallback::create(asObject(exec->argument(3)), globalObject());
H A DJSErrorHandler.h59 return JSErrorHandler::create(asObject(listener), wrapper, true, currentWorld(exec));
H A DJSEventSourceCustom.cpp68 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), eventSource.release())));
H A DJSFloat32ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSFloat64ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSHTMLFormElementCustom.cpp49 JSHTMLElement* jsForm = static_cast<JSHTMLFormElement*>(asObject(slotBase));
H A DJSHTMLFrameSetElementCustom.cpp52 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slotBase));
H A DJSInt16ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSInt32ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSInt8ArrayCustom.cpp59 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSMessageChannelCustom.cpp54 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), MessageChannel::create(context))));
H A DJSStyleSheetListCustom.cpp57 JSStyleSheetList* thisObj = static_cast<JSStyleSheetList*>(asObject(slotBase));
H A DJSUint16ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSUint32ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSUint8ArrayCustom.cpp58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSWorkerCustom.cpp68 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), worker.release())));
H A DScriptObject.h48 JSC::JSObject* jsObject() const { return asObject(jsValue()); }
H A DJSDOMWindowBase.cpp216 const ClassInfo* classInfo = asObject(value)->classInfo();
218 return static_cast<JSDOMWindow*>(asObject(value));
220 return static_cast<JSDOMWindowShell*>(asObject(value))->window();
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptHost.cpp122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject());
H A DInspectorState.cpp50 m_properties = cookie->asObject();
111 return it->second->asObject();
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfiler.cpp166 if (asObject(functionValue)->inherits(&JSFunction::s_info)) {
171 if (asObject(functionValue)->inherits(&JSFunction::s_info))
172 return CallIdentifier(static_cast<JSFunction*>(asObject(functionValue))->name(exec), defaultSourceURL, defaultLineNumber);
173 if (asObject(functionValue)->inherits(&InternalFunction::s_info))
174 return CallIdentifier(static_cast<InternalFunction*>(asObject(functionValue))->name(exec), defaultSourceURL, defaultLineNumber);
175 return CallIdentifier(makeUString("(", asObject(functionValue)->className(), " object)"), defaultSourceURL, defaultLineNumber);

Completed in 185 milliseconds

123456