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

12 3 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/runtime/
DatePrototype.cpp 73 static JSValue JSC_HOST_CALL dateProtoFuncGetDate(ExecState*, JSObject*, JSValue, const ArgList&);
74 static JSValue JSC_HOST_CALL dateProtoFuncGetDay(ExecState*, JSObject*, JSValue, const ArgList&);
75 static JSValue JSC_HOST_CALL dateProtoFuncGetFullYear(ExecState*, JSObject*, JSValue, const ArgList&);
76 static JSValue JSC_HOST_CALL dateProtoFuncGetHours(ExecState*, JSObject*, JSValue, const ArgList&);
77 static JSValue JSC_HOST_CALL dateProtoFuncGetMilliSeconds(ExecState*, JSObject*, JSValue, const ArgList&)
    [all...]
CallData.cpp 33 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
NumberObject.h 34 static PassRefPtr<Structure> createStructure(JSValue prototype)
49 virtual JSValue getJSNumber();
52 NumberObject* constructNumber(ExecState*, JSValue);
Operations.cpp 34 bool JSValue::equalSlowCase(ExecState* exec, JSValue v1, JSValue v2)
39 bool JSValue::strictEqualSlowCase(ExecState* exec, JSValue v1, JSValue v2)
44 NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2)
47 JSValue p1 = v1.toPrimitive(callFrame)
    [all...]
BooleanPrototype.cpp 35 static JSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
36 static JSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState*, JSObject*, JSValue, const ArgList&);
54 JSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList&)
72 JSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState* exec, JSObject*, JSValue thisValue, const ArgList&)
JSCell.h 28 #include "JSValue.h"
43 friend class JSValue;
81 // FIXME: remove these methods, can check isNumberCell in JSValue && then call asNumberCell::*.
85 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const;
86 virtual bool getPrimitiveNumber(ExecState*, double& number, JSValue&);
104 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
105 virtual void put(ExecState*, unsigned propertyName, JSValue);
112 virtual JSValue getJSNumber();
173 // --- JSValue inlines ----------------------------
175 inline bool JSValue::isString() cons
    [all...]
JSNumberCell.cpp 33 JSValue JSNumberCell::toPrimitive(ExecState*, PreferredPrimitiveType) const
38 bool JSNumberCell::getPrimitiveNumber(ExecState*, double& number, JSValue& value)
81 JSValue JSNumberCell::getJSNumber()
86 JSValue jsNumberCell(ExecState* exec, double d)
91 JSValue jsNumberCell(JSGlobalData* globalData, double d)
103 JSValue jsNumberCell(ExecState*, double);
105 JSValue jsNumberCell(ExecState*, double)
108 return JSValue();
StringPrototype.cpp 47 static JSValue JSC_HOST_CALL stringProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
48 static JSValue JSC_HOST_CALL stringProtoFuncCharAt(ExecState*, JSObject*, JSValue, const ArgList&);
49 static JSValue JSC_HOST_CALL stringProtoFuncCharCodeAt(ExecState*, JSObject*, JSValue, const ArgList&);
50 static JSValue JSC_HOST_CALL stringProtoFuncConcat(ExecState*, JSObject*, JSValue, const ArgList&);
51 static JSValue JSC_HOST_CALL stringProtoFuncIndexOf(ExecState*, JSObject*, JSValue, const ArgList&)
    [all...]
PropertySlot.h 25 #include "JSValue.h"
47 explicit PropertySlot(const JSValue base)
54 typedef JSValue (*GetValueFunc)(ExecState*, const Identifier&, const PropertySlot&);
56 JSValue getValue(ExecState* exec, const Identifier& propertyName) const
61 return (*m_data.registerSlot).jsValue();
65 JSValue getValue(ExecState* exec, unsigned propertyName) const
70 return (*m_data.registerSlot).jsValue();
81 void setValueSlot(JSValue* valueSlot)
90 void setValueSlot(JSValue slotBase, JSValue* valueSlot
    [all...]
RegExpPrototype.cpp 31 #include "JSValue.h"
41 static JSValue JSC_HOST_CALL regExpProtoFuncTest(ExecState*, JSObject*, JSValue, const ArgList&);
42 static JSValue JSC_HOST_CALL regExpProtoFuncExec(ExecState*, JSObject*, JSValue, const ArgList&);
43 static JSValue JSC_HOST_CALL regExpProtoFuncCompile(ExecState*, JSObject*, JSValue, const ArgList&);
44 static JSValue JSC_HOST_CALL regExpProtoFuncToString(ExecState*, JSObject*, JSValue, const ArgList&);
61 JSValue JSC_HOST_CALL regExpProtoFuncTest(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& ar (…)
    [all...]
BooleanObject.h 35 static PassRefPtr<Structure> createStructure(JSValue prototype)
41 BooleanObject* asBooleanObject(JSValue);
43 inline BooleanObject* asBooleanObject(JSValue value)
NumberConstructor.cpp 32 static JSValue numberConstructorNaNValue(ExecState*, const Identifier&, const PropertySlot&);
33 static JSValue numberConstructorNegInfinity(ExecState*, const Identifier&, const PropertySlot&);
34 static JSValue numberConstructorPosInfinity(ExecState*, const Identifier&, const PropertySlot&);
35 static JSValue numberConstructorMaxValue(ExecState*, const Identifier&, const PropertySlot&);
36 static JSValue numberConstructorMinValue(ExecState*, const Identifier&, const PropertySlot&);
76 static JSValue numberConstructorNaNValue(ExecState* exec, const Identifier&, const PropertySlot&)
81 static JSValue numberConstructorNegInfinity(ExecState* exec, const Identifier&, const PropertySlot&)
86 static JSValue numberConstructorPosInfinity(ExecState* exec, const Identifier&, const PropertySlot&)
91 static JSValue numberConstructorMaxValue(ExecState* exec, const Identifier&, const PropertySlot&)
96 static JSValue numberConstructorMinValue(ExecState* exec, const Identifier&, const PropertySlot&
    [all...]
Operations.h 33 NEVER_INLINE JSValue jsAddSlowCase(CallFrame*, JSValue, JSValue);
34 JSValue jsTypeStringForValue(CallFrame*, JSValue);
35 bool jsIsObjectType(JSValue);
36 bool jsIsFunctionType(JSValue);
38 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, JSString* s2)
61 ALWAYS_INLINE JSValue jsString(ExecState* exec, const UString& u1, JSString* s2)
79 ALWAYS_INLINE JSValue jsString(ExecState* exec, JSString* s1, const UString& u2
    [all...]
RegExpObject.cpp 33 static JSValue regExpObjectGlobal(ExecState*, const Identifier&, const PropertySlot&);
34 static JSValue regExpObjectIgnoreCase(ExecState*, const Identifier&, const PropertySlot&);
35 static JSValue regExpObjectMultiline(ExecState*, const Identifier&, const PropertySlot&);
36 static JSValue regExpObjectSource(ExecState*, const Identifier&, const PropertySlot&);
37 static JSValue regExpObjectLastIndex(ExecState*, const Identifier&, const PropertySlot&);
38 static void setRegExpObjectLastIndex(ExecState*, JSObject*, JSValue);
80 JSValue regExpObjectGlobal(ExecState*, const Identifier&, const PropertySlot& slot)
85 JSValue regExpObjectIgnoreCase(ExecState*, const Identifier&, const PropertySlot& slot)
90 JSValue regExpObjectMultiline(ExecState*, const Identifier&, const PropertySlot& slot)
95 JSValue regExpObjectSource(ExecState* exec, const Identifier&, const PropertySlot& slot
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.h 42 static PassRefPtr<Structure> createStructure(JSValue proto)
51 static JSValue JSC_HOST_CALL call(ExecState*, JSObject*, JSValue, const ArgList&);
JSCallbackObject.h 51 static PassRefPtr<Structure> createStructure(JSValue proto)
66 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
71 virtual bool hasInstance(ExecState* exec, JSValue value, JSValue proto);
84 static JSCallbackObject* asCallbackObject(JSValue);
86 static JSValue JSC_HOST_CALL call(ExecState*, JSObject* functionObject, JSValue thisValue, const ArgList&);
89 static JSValue staticValueGetter(ExecState*, const Identifier&, const PropertySlot&);
90 static JSValue staticFunctionGetter(ExecState*, const Identifier&, const PropertySlot&);
91 static JSValue callbackGetter(ExecState*, const Identifier&, const PropertySlot&)
    [all...]
  /external/webkit/WebCore/bridge/c/
c_utility.h 32 #include <runtime/JSValue.h>
50 void convertValueToNPVariant(ExecState*, JSValue, NPVariant* result);
51 JSValue convertNPVariantToValue(ExecState*, const NPVariant*, RootObject*);
  /external/webkit/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.h 33 #include <runtime/JSValue.h>
42 jvalue convertValueToJValue(ExecState*, JSValue, JNIType, const char* javaClassName);
43 bool dispatchJNICall(ExecState*, const void* targetAppletView, jobject obj, bool isStatic, JNIType returnType, jmethodID methodID, jvalue* args, jvalue& result, const char* callingURL, JSValue& exceptionDescription);
  /external/webkit/JavaScriptCore/interpreter/
CallFrame.cpp 34 JSValue CallFrame::thisValue()
36 return this[codeBlock()->thisRegister()].jsValue();
45 JSValue function;
  /external/webkit/WebCore/inspector/
JavaScriptProfileNode.h 31 #include <runtime/JSValue.h>
42 JSC::JSValue toJS(JSC::ExecState*, JSC::ProfileNode*);
  /external/webkit/WebCore/bindings/js/
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);
JSPluginElementFunctions.h 33 JSC::JSValue runtimeObjectGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
34 JSC::JSValue runtimeObjectPropertyGetter(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
37 bool runtimeObjectCustomPut(JSC::ExecState*, const JSC::Identifier&, JSC::JSValue, HTMLElement*, JSC::PutPropertySlot&);
  /external/webkit/WebCore/bridge/jsc/
BridgeJSC.h 55 virtual JSValue valueFromInstance(ExecState*, const Instance*) const = 0;
56 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const = 0;
65 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); }
91 virtual bool setValueOfUndefinedField(ExecState*, const Identifier&, JSValue) { return false; }
93 virtual JSValue invokeMethod(ExecState*, const MethodList&, const ArgList& args) = 0;
96 virtual JSValue invokeDefaultMethod(ExecState*, const ArgList&) { return jsUndefined(); }
99 virtual JSValue invokeConstruct(ExecState*, const ArgList&) { return JSValue(); }
103 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const = 0;
105 virtual JSValue valueOf(ExecState* exec) const = 0
    [all...]
  /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/profiler/
Profiler.h 42 class JSValue;
55 static CallIdentifier createCallIdentifier(ExecState* exec, JSValue, const UString& sourceURL, int lineNumber);
60 void willExecute(ExecState*, JSValue function);
62 void didExecute(ExecState*, JSValue function);

Completed in 1586 milliseconds

12 3 4 5 6 7 8 91011>>