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

1 2 34 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/runtime/
ObjectPrototype.h 33 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
39 JSValue JSC_HOST_CALL objectProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
DateConstructor.cpp 57 static JSValue JSC_HOST_CALL dateParse(ExecState*, JSObject*, JSValue, const ArgList&);
58 static JSValue JSC_HOST_CALL dateNow(ExecState*, JSObject*, JSValue, const ArgList&);
59 static JSValue JSC_HOST_CALL dateUTC(ExecState*, JSObject*, JSValue, const ArgList&);
86 JSValue primitive = args.at(0).toPrimitive(exec);
131 static JSValue JSC_HOST_CALL callDate(ExecState* exec, JSObject*, JSValue, const ArgList&)
150 static JSValue JSC_HOST_CALL dateParse(ExecState* exec, JSObject*, JSValue, const ArgList& args
    [all...]
JSGlobalObjectFunctions.cpp 53 static JSValue encode(ExecState* exec, const ArgList& args, const char* doNotEscape)
75 static JSValue decode(ExecState* exec, const ArgList& args, const char* doNotUnescape, bool strict)
274 JSValue JSC_HOST_CALL globalFuncEval(ExecState* exec, JSObject* function, JSValue thisValue, const ArgList& args)
281 JSValue x = args.at(0);
288 if (JSValue parsedObject = preparser.tryLiteralParse())
299 JSValue JSC_HOST_CALL globalFuncParseInt(ExecState* exec, JSObject*, JSValue, const ArgList& args)
301 JSValue value = args.at(0);
322 JSValue JSC_HOST_CALL globalFuncParseFloat(ExecState* exec, JSObject*, JSValue, const ArgList& args
    [all...]
Arguments.cpp 51 markStack.appendValues(reinterpret_cast<JSValue*>(d->registerArray.get()), d->numParameters);
55 markStack.appendValues(reinterpret_cast<JSValue*>(d->extraArguments), numExtraArguments);
77 buffer[i] = d->registers[d->firstParameterIndex + i].jsValue();
79 buffer[i] = d->extraArguments[i - d->numParameters].jsValue();
87 buffer[i] = d->registers[d->firstParameterIndex + i].jsValue();
93 buffer[i] = d->extraArguments[i - d->numParameters].jsValue();
122 args.append(d->registers[d->firstParameterIndex + i].jsValue());
124 args.append(d->extraArguments[i - d->numParameters].jsValue());
132 args.append(d->registers[d->firstParameterIndex + i].jsValue());
138 args.append(d->extraArguments[i - d->numParameters].jsValue());
    [all...]
JSZombie.h 51 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const { ASSERT_NOT_REACHED(); return jsNull(); }
52 virtual bool getPrimitiveNumber(ExecState*, double&, JSValue&) { ASSERT_NOT_REACHED(); return false; }
58 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) { ASSERT_NOT_REACHED(); }
59 virtual void put(ExecState*, unsigned, JSValue) { ASSERT_NOT_REACHED(); }
65 virtual JSValue getJSNumber() { ASSERT_NOT_REACHED(); return jsNull(); }
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);
JSStringBuilder.h 37 JSValue build(ExecState* exec)
49 // we'll want a UString or a JSValue - but until we have this requirement,
59 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2)
68 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3)
77 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4)
86 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4, StringType5 string5)
95 inline JSValue jsMakeNontrivialString(ExecState* exec, StringType1 string1, StringType2 string2, StringType3 string3, StringType4 string4, StringType5 string5, StringType6 string6)
  /external/webkit/WebCore/bindings/js/
JSEventTarget.h 29 #include <runtime/JSValue.h>
40 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, EventTarget*);
41 EventTarget* toEventTarget(JSC::JSValue);
JSWorkerContextCustom.cpp 83 JSValue JSWorkerContext::eventSource(ExecState* exec) const
89 JSValue JSWorkerContext::xmlHttpRequest(ExecState* exec) const
95 JSValue JSWorkerContext::webSocket(ExecState* exec) const
101 JSValue JSWorkerContext::importScripts(ExecState* exec, const ArgList& args)
116 JSValue function;
124 JSValue JSWorkerContext::addEventListener(ExecState* exec, const ArgList& args)
126 JSValue listener = args.at(1);
134 JSValue JSWorkerContext::removeEventListener(ExecState* exec, const ArgList& args)
136 JSValue listener = args.at(1);
144 JSValue JSWorkerContext::setTimeout(ExecState* exec, const ArgList& args
    [all...]
JSDesktopNotificationsCustom.cpp 48 JSValue JSNotificationCenter::requestPermission(ExecState* exec, const ArgList& args)
64 JSValue JSNotification::addEventListener(ExecState* exec, const ArgList& args)
66 JSValue listener = args.at(1);
74 JSValue JSNotification::removeEventListener(ExecState* exec, const ArgList& args)
76 JSValue listener = args.at(1);
JSHTMLOptionsCollectionCustom.cpp 38 JSValue JSHTMLOptionsCollection::length(ExecState* exec) 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, const ArgList& args)
91 JSValue JSHTMLOptionsCollection::remove(ExecState* exec, const ArgList& args)
JSSVGMatrixCustom.cpp 34 JSValue JSSVGMatrix::multiply(ExecState* exec, const ArgList& args)
51 JSValue JSSVGMatrix::inverse(ExecState* exec, const ArgList&)
56 JSValue result = toJS(exec, globalObject(), JSSVGStaticPODTypeWrapper<AffineTransform>::create(imp.inverse()).get(), context);
64 JSValue JSSVGMatrix::rotateFromVector(ExecState* exec, const ArgList& args)
72 JSValue result = toJS(exec, globalObject(), JSSVGStaticPODTypeWrapper<AffineTransform>::create(imp.rotateFromVector(x, y)).get(), context);
JSWorkerContextBase.cpp 62 JSValue toJS(ExecState* exec, JSDOMGlobalObject*, WorkerContext* workerContext)
67 JSValue toJS(ExecState*, WorkerContext* workerContext)
77 JSDedicatedWorkerContext* toJSDedicatedWorkerContext(JSValue value)
88 JSSharedWorkerContext* toJSSharedWorkerContext(JSValue value)
99 JSWorkerContext* toJSWorkerContext(JSValue value)
JSWorkerContextBase.h 59 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, WorkerContext*);
60 JSC::JSValue toJS(JSC::ExecState*, WorkerContext*);
62 JSDedicatedWorkerContext* toJSDedicatedWorkerContext(JSC::JSValue);
63 JSWorkerContext* toJSWorkerContext(JSC::JSValue);
66 JSSharedWorkerContext* toJSSharedWorkerContext(JSC::JSValue);
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(); }
JSInjectedScriptHostCustom.cpp 83 JSValue globalThisValue = scriptState->globalThisValue();
87 JSValue functionValue = comp.value();
97 JSValue result = JSC::call(scriptState, functionValue, callType, callData, globalThisValue, args);
104 JSValue JSInjectedScriptHost::databaseForId(ExecState* exec, const ArgList& args)
122 JSValue JSInjectedScriptHost::currentCallFrame(ExecState* exec, const ArgList&)
132 JSValue JSInjectedScriptHost::isActivation(ExecState*, const ArgList& args)
140 JSValue JSInjectedScriptHost::nodeForId(ExecState* exec, const ArgList& args)
157 JSValue JSInjectedScriptHost::pushNodePathToFrontend(ExecState* exec, const ArgList& args)
172 JSValue JSInjectedScriptHost::selectDatabase(ExecState*, const ArgList& args)
185 JSValue JSInjectedScriptHost::selectDOMStorage(ExecState*, const ArgList& args
    [all...]
JSDOMApplicationCacheCustom.cpp 47 JSValue JSDOMApplicationCache::hasItem(ExecState* exec, const ArgList& args)
60 JSValue JSDOMApplicationCache::add(ExecState* exec, const ArgList& args)
73 JSValue JSDOMApplicationCache::remove(ExecState* exec, const ArgList& args)
88 JSValue JSDOMApplicationCache::addEventListener(ExecState* exec, const ArgList& args)
90 JSValue listener = args.at(1);
98 JSValue JSDOMApplicationCache::removeEventListener(ExecState* exec, const ArgList& args)
100 JSValue listener = args.at(1);
JSDOMBinding.h 82 static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
106 static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
297 template<class WrapperClass, class DOMClass> inline JSC::JSValue getDOMObjectWrapper(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, DOMClass* object)
316 template<class WrapperClass, class DOMClass> inline JSC::JSValue getDOMObjectWrapper(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, DOMClass* object, SVGElement* context)
339 template<class WrapperClass, class DOMClass> inline JSC::JSValue getDOMNodeWrapper(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, DOMClass* node)
350 void reportException(JSC::ExecState*, JSC::JSValue exception);
356 JSC::JSValue jsString(JSC::ExecState*, const String&); // empty if the string is null
357 JSC::JSValue jsStringSlowCase(JSC::ExecState*, JSStringCache&, StringImpl*);
358 JSC::JSValue jsString(JSC::ExecState*, const KURL&); // empty if the URL is null
359 inline JSC::JSValue jsString(JSC::ExecState* exec, const AtomicString& s
    [all...]
JSMessagePortCustom.cpp 55 JSValue JSMessagePort::addEventListener(ExecState* exec, const ArgList& args)
57 JSValue listener = args.at(1);
65 JSValue JSMessagePort::removeEventListener(ExecState* exec, const ArgList& args)
67 JSValue listener = args.at(1);
75 JSC::JSValue JSMessagePort::postMessage(JSC::ExecState* exec, const JSC::ArgList& args)
80 void fillMessagePortArray(JSC::ExecState* exec, JSC::JSValue value, MessagePortArray& portArray)
97 JSValue value = object->get(exec, i);
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.h 35 virtual JSValue invokeMethod(ExecState*, const MethodList&, const ArgList& args);
38 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
39 virtual JSValue valueOf(ExecState* exec) const;
  /external/webkit/JavaScriptCore/debugger/
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 PassRefPtr<Structure> createStructure(JSValue prototype)
  /external/webkit/JavaScriptCore/interpreter/
CachedCall.h 37 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount, JSValue* exception)
48 JSValue call()
53 void setThis(JSValue v) { m_closure.setArgument(0, v); }
54 void setArgument(int n, JSValue v) { m_closure.setArgument(n + 1, v); }
72 JSValue* m_exception;
  /external/webkit/JavaScriptGlue/
UserObjectImp.h 49 virtual JSValue callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args);
51 virtual void put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&);
53 JSValue toPrimitive(ExecState*, JSType preferredType = UnspecifiedType) const;
62 static PassRefPtr<Structure> createStructure(JSValue prototype)
68 static JSValue userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot&);
  /external/webkit/WebCore/bridge/jni/jsc/
JNIBridgeJSC.h 44 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
45 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
69 virtual void setValueAt(ExecState*, unsigned int index, JSValue) const;
70 virtual JSValue valueAt(ExecState*, unsigned int index) const;
75 static JSValue convertJObjectToArray(ExecState*, jobject, const char* type, PassRefPtr<RootObject>);
  /external/webkit/WebCore/bridge/
runtime_array.h 42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 virtual void put(ExecState*, unsigned propertyName, JSValue);
61 static PassRefPtr<Structure> createStructure(JSValue prototype)
68 static JSValue lengthGetter(ExecState*, const Identifier&, const PropertySlot&);
69 static JSValue indexGetter(ExecState*, const Identifier&, const PropertySlot&);

Completed in 232 milliseconds

1 2 34 5 6 7 8 91011>>