/external/webkit/Source/JavaScriptGlue/ |
JSValueWrapper.cpp | 36 JSValueWrapper::JSValueWrapper(JSValue inValue) 45 JSValue JSValueWrapper::GetValue() 112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec)); 127 void JSValueWrapper::JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue) 135 JSValue value = JSObjectKJSValue((JSUserObject*)jsValue); 152 JSValue value = JSObjectKJSValue((JSUserObject*)thisObj); 161 JSValue kgsArg = JSObjectKJSValue((JSUserObject*)jsArg); 169 JSValue resultValue = call(exec, objValue, callType, callData, ksjThisObj, listArgs);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMFormDataCustom.cpp | 44 static HTMLFormElement* toHTMLFormElement(JSC::JSValue value) 57 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), domFormData.get()))); 60 JSValue JSDOMFormData::append(ExecState* exec) 64 JSValue value = exec->argument(1);
|
JSHTMLDocumentCustom.cpp | 59 JSValue JSHTMLDocument::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 86 JSValue JSHTMLDocument::all(ExecState* exec) const 89 JSValue v = getDirect(exec->globalData(), Identifier(exec, "all")); 96 void JSHTMLDocument::setAll(ExecState* exec, JSValue value) 104 JSValue JSHTMLDocument::open(ExecState* exec) 112 JSValue function = wrapper->get(exec, Identifier(exec, "open")); 159 JSValue JSHTMLDocument::write(ExecState* exec) 165 JSValue JSHTMLDocument::writeln(ExecState* exec)
|
JSMainThreadExecState.h | 45 static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue functionObject, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args) 51 static JSC::Completion evaluate(JSC::ExecState* exec, JSC::ScopeChainNode* chain, const JSC::SourceCode& source, JSC::JSValue thisValue)
|
ScriptFunctionCall.cpp | 56 m_arguments.append(argument.jsValue()); 77 void ScriptCallArgumentHandler::appendArgument(JSC::JSValue argument) 130 JSValue function = thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name))); 144 JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData, thisObject, m_arguments); 182 JSValue result = JSC::construct(m_exec, constructor, constructType, constructData, m_arguments); 211 CallType callType = getCallData(m_function.jsValue(), callData); 215 JSValue result = JSC::call(m_exec, m_function.jsValue(), callType, callData, m_function.jsValue(), m_arguments);
|
ScriptValue.h | 39 #include <runtime/JSValue.h> 50 ScriptValue(JSC::JSGlobalData& globalData, JSC::JSValue value) : m_value(globalData, value) {} 53 JSC::JSValue jsValue() const { return m_value.get(); }
|
JSWebGLRenderingContextCustom.cpp | 82 static JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, const WebGLGetInfo& info) 134 static JSValue getObjectParameter(JSWebGLRenderingContext* obj, ExecState* exec, ObjectType objectType) 177 static JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, WebGLExtension* extension) 204 JSValue JSWebGLRenderingContext::getAttachedShaders(ExecState* exec) 229 JSValue JSWebGLRenderingContext::getExtension(ExecState* exec) 242 JSValue JSWebGLRenderingContext::getBufferParameter(ExecState* exec) 247 JSValue JSWebGLRenderingContext::getFramebufferAttachmentParameter(ExecState* exec) 271 JSValue JSWebGLRenderingContext::getParameter(ExecState* exec) 289 JSValue JSWebGLRenderingContext::getProgramParameter(ExecState* exec) 310 JSValue JSWebGLRenderingContext::getRenderbufferParameter(ExecState* exec [all...] |
JSCanvasRenderingContext2DCustom.cpp | 45 static JSValue toJS(ExecState* exec, CanvasStyle* style) 54 static PassRefPtr<CanvasStyle> toHTMLCanvasStyle(ExecState*, JSValue value) 66 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const 72 void JSCanvasRenderingContext2D::setStrokeStyle(ExecState* exec, JSValue value) 82 JSValue JSCanvasRenderingContext2D::fillStyle(ExecState* exec) const 88 void JSCanvasRenderingContext2D::setFillStyle(ExecState* exec, JSValue value) 98 JSValue JSCanvasRenderingContext2D::setFillColor(ExecState* exec) 135 JSValue JSCanvasRenderingContext2D::setStrokeColor(ExecState* exec) 173 JSValue JSCanvasRenderingContext2D::strokeRect(ExecState* exec) 187 JSValue JSCanvasRenderingContext2D::drawImage(ExecState* exec [all...] |
JSDOMMimeTypeArrayCustom.cpp | 36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
|
JSDOMPluginArrayCustom.cpp | 36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
|
JSDOMPluginCustom.cpp | 35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
|
JSExceptionBase.h | 31 class JSValue;
39 ExceptionBase* toExceptionBase(JSC::JSValue);
|
JSDOMStringMapCustom.cpp | 41 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 67 JSValue prototype = this->prototype(); 78 bool JSDOMStringMap::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) 87 JSValue prototype = this->prototype();
|
JSDOMWindowBase.h | 60 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) 79 virtual JSC::JSValue toStrictThisObject(JSC::ExecState*) const; 95 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, DOMWindow*); 96 JSC::JSValue toJS(JSC::ExecState*, DOMWindow*); 100 JSDOMWindow* toJSDOMWindow(JSC::JSValue);
|
JSNodeListCustom.cpp | 72 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NodeList* impl) 83 return JSValue::encode(jsUndefined()); 84 return JSValue::encode(toJS(exec, static_cast<JSNodeList*>(exec->callee())->impl()->item(index))); 98 JSValue JSNodeList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestMediaQueryListListener.cpp | 73 static PassRefPtr<JSC::Structure> createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) 156 JSValue jsTestMediaQueryListListenerConstructor(ExecState* exec, JSValue slotBase, const Identifier&) 162 JSValue JSTestMediaQueryListListener::getConstructor(ExecState* exec, JSGlobalObject* globalObject) 169 JSValue thisValue = exec->hostThisValue(); 176 return JSValue::encode(jsUndefined()); 179 return JSValue::encode(jsUndefined()); 182 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestMediaQueryListListener* object) 186 TestMediaQueryListListener* toTestMediaQueryListListener(JSC::JSValue value)
|
JSTestSerializedScriptValueInterface.cpp | 74 static PassRefPtr<JSC::Structure> createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) 146 JSValue jsTestSerializedScriptValueInterfaceValue(ExecState* exec, JSValue slotBase, const Identifier&) 151 JSValue result = imp->value() ? imp->value()->deserialize(exec, castedThis->globalObject()) : jsNull(); 155 JSValue jsTestSerializedScriptValueInterfaceConstructor(ExecState* exec, JSValue slotBase, const Identifier&) 161 JSValue JSTestSerializedScriptValueInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject) 166 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestSerializedScriptValueInterface* object) 170 TestSerializedScriptValueInterface* toTestSerializedScriptValueInterface(JSC::JSValue value)
|
/external/webkit/Source/JavaScriptCore/runtime/ |
ErrorInstance.h | 32 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype) 38 static ErrorInstance* create(ExecState*, Structure*, JSValue message);
|
NumberConstructor.h | 36 JSValue getValueProperty(ExecState*, int token) const; 40 static Structure* createStructure(JSGlobalData& globalData, JSValue proto)
|
NumberObject.cpp | 40 JSValue NumberObject::getJSNumber() 45 NumberObject* constructNumber(ExecState* exec, JSGlobalObject* globalObject, JSValue number)
|
JSNotAnObject.cpp | 39 // JSValue methods 40 JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const 46 bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&) 95 void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&) 100 void JSNotAnObject::put(ExecState* exec, unsigned, JSValue)
|
/external/webkit/Source/JavaScriptCore/jit/ |
JITOpcodes32_64.cpp | 55 Jump string_failureCases1 = branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag)); 63 move(TrustedImm32(JSValue::Int32Tag), regT1); 307 Jump sawException = branch32(NotEqual, AbsoluteAddress(reinterpret_cast<char*>(&globalData->exception) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), TrustedImm32(JSValue::EmptyValueTag)); 445 Jump sawException = branch32(NotEqual, AbsoluteAddress(reinterpret_cast<char*>(&globalData->exception) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)), TrustedImm32(JSValue::EmptyValueTag)); 513 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); 520 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); 526 addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::Int32Tag))); 527 addSlowCase(branch32(NotEqual, regT3, TrustedImm32(JSValue::Int32Tag))) [all...] |
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPObject.cpp | 82 JSValue JSNPObject::callMethod(ExecState* exec, NPIdentifier methodName) 116 JSValue propertyValue = m_objectMap->convertNPVariantToJSValue(exec, globalObject(), result); 121 JSC::JSValue JSNPObject::callObject(JSC::ExecState* exec) 155 JSValue propertyValue = m_objectMap->convertNPVariantToJSValue(exec, globalObject(), result); 160 JSValue JSNPObject::callConstructor(ExecState* exec) 190 JSValue value = m_objectMap->convertNPVariantToJSValue(exec, globalObject(), result); 200 return JSValue::encode(static_cast<JSNPObject*>(object)->callObject(exec)); 217 return JSValue::encode(static_cast<JSNPObject*>(constructor)->callConstructor(exec)); 281 void JSNPObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) 364 JSValue JSNPObject::propertyGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName [all...] |
/external/webkit/Source/JavaScriptCore/debugger/ |
Debugger.cpp | 124 JSValue evaluateInGlobalCallFrame(const UString& script, JSValue& exception, JSGlobalObject* globalObject) 132 globalData.exception = JSValue(); 136 JSValue result = globalData.interpreter->execute(eval, globalCallFrame, globalObject, globalCallFrame->scopeChain()); 139 globalData.exception = JSValue();
|
/external/webkit/Source/JavaScriptCore/heap/ |
Heap.h | 40 class JSValue; 48 typedef std::pair<JSValue, UString> ValueStringPair; 57 static Heap* heap(JSValue); // 0 for immediate values 81 void protect(JSValue); 82 bool unprotect(JSValue); // True when the protect count drops to 0.
|