HomeSort by relevance Sort by last modified time
    Searched full:jsvalue (Results 76 - 100 of 522) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSDeviceMotionEventCustom.cpp 38 static PassRefPtr<DeviceMotionData::Acceleration> readAccelerationArgument(JSValue value, ExecState* exec)
46 JSValue xValue = object->get(exec, Identifier(exec, "x"));
54 JSValue yValue = object->get(exec, Identifier(exec, "y"));
62 JSValue zValue = object->get(exec, Identifier(exec, "z"));
76 static PassRefPtr<DeviceMotionData::RotationRate> readRotationRateArgument(JSValue value, ExecState* exec)
84 JSValue alphaValue = object->get(exec, Identifier(exec, "alpha"));
92 JSValue betaValue = object->get(exec, Identifier(exec, "beta"));
100 JSValue gammaValue = object->get(exec, Identifier(exec, "gamma"));
132 JSValue JSDeviceMotionEvent::acceleration(ExecState* exec) const
140 JSValue JSDeviceMotionEvent::accelerationIncludingGravity(ExecState* exec) cons
    [all...]
JSInspectorFrontendHostCustom.cpp 53 JSValue JSInspectorFrontendHost::platform(ExecState* execState)
69 JSValue JSInspectorFrontendHost::port(ExecState* execState)
83 JSValue JSInspectorFrontendHost::showContextMenu(ExecState* exec)
95 JSValue label = item->get(exec, Identifier(exec, "label"));
96 JSValue type = item->get(exec, Identifier(exec, "type"));
97 JSValue id = item->get(exec, Identifier(exec, "id"));
98 JSValue enabled = item->get(exec, Identifier(exec, "enabled"));
99 JSValue checked = item->get(exec, Identifier(exec, "checked"));
JSCoordinatesCustom.cpp 35 JSValue JSCoordinates::altitude(ExecState*) const
43 JSValue JSCoordinates::altitudeAccuracy(ExecState*) const
51 JSValue JSCoordinates::heading(ExecState*) const
59 JSValue JSCoordinates::speed(ExecState*) const
JSDataGridDataSource.h 33 #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*);
JSEventTarget.h 29 #include <runtime/JSValue.h>
40 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, EventTarget*);
41 EventTarget* toEventTarget(JSC::JSValue);
JSCallbackData.cpp 45 JSValue JSCallbackData::invokeCallback(MarkedArgumentBuffer& args, bool* raisedException)
51 JSValue function = callback()->get(exec, Identifier(exec, "handleEvent"));
58 return JSValue();
66 return JSValue();
69 JSValue result = contextIsDocument
JSDOMBinding.cpp 181 JSValue jsStringSlowCase(ExecState* exec, JSStringCache& stringCache, StringImpl* stringImpl)
191 JSValue jsStringOrNull(ExecState* exec, const String& s)
198 JSValue jsOwnedStringOrNull(ExecState* exec, const String& s)
205 JSValue jsStringOrUndefined(ExecState* exec, const String& s)
212 JSValue jsStringOrFalse(ExecState* exec, const String& s)
219 JSValue jsString(ExecState* exec, const KURL& url)
224 JSValue jsStringOrNull(ExecState* exec, const KURL& url)
231 JSValue jsStringOrUndefined(ExecState* exec, const KURL& url)
238 JSValue jsStringOrFalse(ExecState* exec, const KURL& url)
254 String valueToStringWithNullCheck(ExecState* exec, JSValue value
    [all...]
JSEventSourceCustom.cpp 54 return JSValue::encode(JSValue());
65 return JSValue::encode(JSValue());
68 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), eventSource.release())));
JSHTMLInputElementCustom.cpp 36 JSValue JSHTMLInputElement::selectionStart(ExecState* exec) const
45 void JSHTMLInputElement::setSelectionStart(ExecState* exec, JSValue value)
54 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const
63 void JSHTMLInputElement::setSelectionEnd(ExecState* exec, JSValue value)
72 JSValue JSHTMLInputElement::setSelectionRange(ExecState* exec)
JSHTMLOptionsCollectionCustom.cpp 38 JSValue JSHTMLOptionsCollection::length(ExecState*) const
44 void JSHTMLOptionsCollection::setLength(ExecState* exec, JSValue value)
63 void JSHTMLOptionsCollection::indexSetter(ExecState* exec, unsigned index, JSValue value)
70 JSValue JSHTMLOptionsCollection::add(ExecState* exec)
91 JSValue JSHTMLOptionsCollection::remove(ExecState* exec)
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 79 JSValue thisValue = m_callFrame->uncheckedR(codeBlock->thisRegister()).jsValue();
86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const
89 return JSValue();
95 globalData.exception = JSValue();
98 JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), m_callFrame->scopeChain());
101 globalData.exception = JSValue();
DebuggerActivation.h 42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue, unsigned attributes);
49 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
50 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
52 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
  /external/webkit/Source/JavaScriptCore/runtime/
JSByteArray.h 41 JSValue getIndex(ExecState*, unsigned i)
69 void setIndex(ExecState* exec, unsigned i, JSValue value)
79 static Structure* createStructure(JSGlobalData&, JSValue prototype, const JSC::ClassInfo* = &s_defaultInfo);
84 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
85 virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);
111 JSByteArray* asByteArray(JSValue value);
112 inline JSByteArray* asByteArray(JSValue value)
117 inline bool isJSByteArray(JSGlobalData* globalData, JSValue v) { return v.isCell() && v.asCell()->vptr() == globalData->jsByteArrayVPtr; }
JSZombie.h 52 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const { ASSERT_NOT_REACHED(); return jsNull(); }
53 virtual bool getPrimitiveNumber(ExecState*, double&, JSValue&) { ASSERT_NOT_REACHED(); return false; }
59 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) { ASSERT_NOT_REACHED(); }
60 virtual void put(ExecState*, unsigned, JSValue) { ASSERT_NOT_REACHED(); }
64 virtual JSValue toStrictThisObject(ExecState*) const { ASSERT_NOT_REACHED(); return JSValue(); }
65 virtual JSValue getJSNumber() { ASSERT_NOT_REACHED(); return jsNull(); }
69 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
RegExpConstructor.h 62 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
67 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
82 JSValue getBackref(ExecState*, unsigned) const;
83 JSValue getLastParen(ExecState*) const;
84 JSValue getLeftContext(ExecState*) const;
85 JSValue getRightContext(ExecState*) const;
97 RegExpConstructor* asRegExpConstructor(JSValue);
101 inline RegExpConstructor* asRegExpConstructor(JSValue value)
CallData.h 32 #include "JSValue.h"
60 JSValue call(ExecState*, JSValue functionObject, CallType, const CallData&, JSValue thisValue, const ArgList&);
StringObject.h 40 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue, PutPropertySlot&);
48 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
58 StringObject* asStringObject(JSValue);
60 inline StringObject* asStringObject(JSValue value)
BooleanObject.h 34 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
40 BooleanObject* asBooleanObject(JSValue);
42 inline BooleanObject* asBooleanObject(JSValue value)
NumberObject.h 34 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
40 virtual JSValue getJSNumber();
43 NumberObject* constructNumber(ExecState*, JSGlobalObject*, JSValue);
Protect.h 26 #include "JSValue.h"
52 inline void gcProtect(JSValue value)
58 inline void gcUnprotect(JSValue value)
Completion.cpp 50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue)
57 JSValue exception = exec->globalData().exception;
58 exec->globalData().exception = JSValue();
64 JSValue result = exec->interpreter()->execute(program, exec, scopeChain, thisObj);
67 JSValue exception = exec->exception();
JSStaticScopeObject.h 35 JSStaticScopeObject(ExecState* exec, const Identifier& ident, JSValue value, unsigned attributes)
45 virtual JSValue toStrictThisObject(ExecState*) const;
47 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
48 void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
50 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); }
LiteralParser.h 30 #include "JSValue.h"
45 JSValue tryLiteralParse()
48 JSValue result = parse(m_mode == StrictJSON ? StartParseExpression : StartParseStatement);
50 return JSValue();
102 JSValue parse(ParserState);
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 48 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
49 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
81 virtual void setValueAt(ExecState *exec, unsigned int index, JSValue aValue) const;
82 virtual JSValue valueAt(ExecState *exec, unsigned int index) const;
87 static JSValue convertObjcArrayToArray(ExecState *exec, ObjectStructPtr anObject);
106 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
115 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
118 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
  /external/webkit/Source/WebCore/bridge/
runtime_object.cpp 60 JSValue RuntimeObject::fallbackObjectGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
71 JSValue result = aClass->fallbackObject(exec, instance.get(), propertyName);
78 JSValue RuntimeObject::fieldGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
90 JSValue result = aField->valueFromInstance(exec, instance.get());
97 JSValue RuntimeObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
107 JSValue method = instance->getMethod(exec, propertyName);
208 void RuntimeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot
    [all...]

Completed in 699 milliseconds

1 2 34 5 6 7 8 91011>>