HomeSort by relevance Sort by last modified time
    Searched refs:JSValue (Results 51 - 75 of 379) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSAbstractWorkerCustom.cpp 47 JSValue JSAbstractWorker::addEventListener(ExecState* exec, const ArgList& args)
49 JSValue listener = args.at(1);
57 JSValue JSAbstractWorker::removeEventListener(ExecState* exec, const ArgList& args)
59 JSValue listener = args.at(1);
JSCDATASectionCustom.cpp 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, CDATASection* section)
JSCallbackData.cpp 44 JSValue JSCallbackData::invokeCallback(MarkedArgumentBuffer& args, bool* raisedException)
50 JSValue function = callback()->get(exec, Identifier(exec, "handleEvent"));
57 return JSValue();
62 JSValue result = JSC::call(exec, function, callType, callData, callback(), args);
JSCoordinatesCustom.cpp 35 JSValue JSCoordinates::altitude(ExecState* exec) const
43 JSValue JSCoordinates::altitudeAccuracy(ExecState* exec) const
51 JSValue JSCoordinates::heading(ExecState* exec) const
59 JSValue JSCoordinates::speed(ExecState* exec) const
JSDataGridDataSource.cpp 43 JSDataGridDataSource::JSDataGridDataSource(JSC::JSValue dataSource, Frame* frame)
JSDataGridDataSource.h 32 #include <runtime/JSValue.h>
44 static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue dataSource, Frame* frame)
52 JSC::JSValue jsDataSource() const { return m_dataSource.get(); }
55 JSDataGridDataSource(JSC::JSValue, Frame*);
JSDedicatedWorkerContextCustom.cpp 45 JSC::JSValue JSDedicatedWorkerContext::postMessage(JSC::ExecState* exec, const JSC::ArgList& args)
JSEventSourceCustom.cpp 46 JSValue JSEventSource::addEventListener(ExecState* exec, const ArgList& args)
48 JSValue listener = args.at(1);
56 JSValue JSEventSource::removeEventListener(ExecState* exec, const ArgList& args)
58 JSValue listener = args.at(1);
JSTextCustom.cpp 35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text)
JSTouchCustom.cpp 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Touch* touch)
JSTouchListCustom.cpp 37 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, TouchList* touchList)
JSWorkerCustom.cpp 40 JSC::JSValue JSWorker::postMessage(JSC::ExecState* exec, const JSC::ArgList& args)
ScriptValue.h 46 ScriptValue(JSC::JSValue value = JSC::JSValue()) : m_value(value) {}
49 JSC::JSValue jsValue() const { return m_value.get(); }
56 bool hasNoValue() const { return m_value == JSC::JSValue(); }
JSJavaScriptCallFrameCustom.cpp 38 JSValue JSJavaScriptCallFrame::evaluate(ExecState* exec, const ArgList& args)
40 JSValue exception;
41 JSValue result = impl()->evaluate(args.at(0).toString(exec), exception);
49 JSValue JSJavaScriptCallFrame::thisObject(ExecState*) const
54 JSValue JSJavaScriptCallFrame::type(ExecState* exec) const
67 JSValue JSJavaScriptCallFrame::scopeChain(ExecState* exec) const
JSSVGElementInstanceCustom.cpp 49 JSValue JSSVGElementInstance::addEventListener(ExecState* exec, const ArgList& args)
51 JSValue listener = args.at(1);
59 JSValue JSSVGElementInstance::removeEventListener(ExecState* exec, const ArgList& args)
61 JSValue listener = args.at(1);
73 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, SVGElementInstance* object)
75 JSValue result = getDOMObjectWrapper<JSSVGElementInstance>(exec, globalObject, object);
JSWebSocketCustom.cpp 48 JSValue JSWebSocket::send(ExecState* exec, const ArgList& args)
57 JSValue ret = jsBoolean(impl()->send(msg, ec));
62 JSValue JSWebSocket::addEventListener(ExecState* exec, const ArgList& args)
64 JSValue listener = args.at(1);
72 JSValue JSWebSocket::removeEventListener(ExecState* exec, const ArgList& args)
74 JSValue listener = args.at(1);
  /external/webkit/WebKit/mac/Plugins/Hosted/
ProxyInstance.h 52 JSC::JSValue fieldValue(JSC::ExecState*, const JSC::Bindings::Field*) const;
53 void setFieldValue(JSC::ExecState*, const JSC::Bindings::Field*, JSC::JSValue) const;
64 virtual JSC::JSValue invokeMethod(JSC::ExecState*, const JSC::Bindings::MethodList&, const JSC::ArgList& args);
67 virtual JSC::JSValue invokeDefaultMethod(JSC::ExecState*, const JSC::ArgList&);
70 virtual JSC::JSValue invokeConstruct(JSC::ExecState*, const JSC::ArgList&);
72 virtual JSC::JSValue defaultValue(JSC::ExecState*, JSC::PreferredPrimitiveType) const;
73 virtual JSC::JSValue valueOf(JSC::ExecState*) const;
77 JSC::JSValue stringValue(JSC::ExecState*) const;
78 JSC::JSValue numberValue(JSC::ExecState*) const;
79 JSC::JSValue booleanValue() const
    [all...]
  /external/webkit/JavaScriptCore/runtime/
ConstructData.h 38 class JSValue;
59 JSObject* construct(ExecState*, JSValue constructor, ConstructType, const ConstructData&, const ArgList&);
NumberObject.cpp 39 JSValue NumberObject::getJSNumber()
44 NumberObject* constructNumber(ExecState* exec, JSValue number)
RegExpConstructor.cpp 38 static JSValue regExpConstructorInput(ExecState*, const Identifier&, const PropertySlot&);
39 static JSValue regExpConstructorMultiline(ExecState*, const Identifier&, const PropertySlot&);
40 static JSValue regExpConstructorLastMatch(ExecState*, const Identifier&, const PropertySlot&);
41 static JSValue regExpConstructorLastParen(ExecState*, const Identifier&, const PropertySlot&);
42 static JSValue regExpConstructorLeftContext(ExecState*, const Identifier&, const PropertySlot&);
43 static JSValue regExpConstructorRightContext(ExecState*, const Identifier&, const PropertySlot&);
44 static JSValue regExpConstructorDollar1(ExecState*, const Identifier&, const PropertySlot&);
45 static JSValue regExpConstructorDollar2(ExecState*, const Identifier&, const PropertySlot&);
46 static JSValue regExpConstructorDollar3(ExecState*, const Identifier&, const PropertySlot&);
47 static JSValue regExpConstructorDollar4(ExecState*, const Identifier&, const PropertySlot&)
    [all...]
ErrorPrototype.cpp 35 static JSValue JSC_HOST_CALL errorProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
49 JSValue JSC_HOST_CALL errorProtoFuncToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList&)
52 JSValue name = thisObj->get(exec, exec->propertyNames().name);
53 JSValue message = thisObj->get(exec, exec->propertyNames().message);
JSActivation.h 57 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
59 virtual void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
69 static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); }
92 static JSValue argumentsGetter(ExecState*, const Identifier&, const PropertySlot&);
98 JSActivation* asActivation(JSValue);
100 inline JSActivation* asActivation(JSValue value)
RegExpObject.h 40 JSValue test(ExecState*, const ArgList&);
41 JSValue exec(ExecState*, const ArgList&);
45 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
50 static PassRefPtr<Structure> createStructure(JSValue prototype)
77 RegExpObject* asRegExpObject(JSValue);
79 inline RegExpObject* asRegExpObject(JSValue value)
  /external/webkit/JavaScriptGlue/
JSValueWrapper.h 38 JSValueWrapper(JSValue);
43 JSValue GetValue();
51 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
  /external/webkit/WebCore/bridge/c/
c_runtime.h 41 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
42 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;

Completed in 168 milliseconds

1 23 4 5 6 7 8 91011>>