HomeSort by relevance Sort by last modified time
    Searched refs:ExecState (Results 1 - 25 of 437) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
StrictEvalActivation.h 35 StrictEvalActivation(ExecState*);
36 virtual bool deleteProperty(ExecState*, const Identifier&);
37 virtual JSObject* toThisObject(ExecState*) const;
38 virtual JSValue toStrictThisObject(ExecState*) const;
JSGlobalObjectFunctions.h 33 class ExecState;
39 EncodedJSValue JSC_HOST_CALL globalFuncEval(ExecState*);
40 EncodedJSValue JSC_HOST_CALL globalFuncParseInt(ExecState*);
41 EncodedJSValue JSC_HOST_CALL globalFuncParseFloat(ExecState*);
42 EncodedJSValue JSC_HOST_CALL globalFuncIsNaN(ExecState*);
43 EncodedJSValue JSC_HOST_CALL globalFuncIsFinite(ExecState*);
44 EncodedJSValue JSC_HOST_CALL globalFuncDecodeURI(ExecState*);
45 EncodedJSValue JSC_HOST_CALL globalFuncDecodeURIComponent(ExecState*);
46 EncodedJSValue JSC_HOST_CALL globalFuncEncodeURI(ExecState*);
47 EncodedJSValue JSC_HOST_CALL globalFuncEncodeURIComponent(ExecState*);
    [all...]
Error.h 31 class ExecState;
47 // ExecState wrappers.
48 JSObject* createError(ExecState*, const UString&);
49 JSObject* createEvalError(ExecState*, const UString&);
50 JSObject* createRangeError(ExecState*, const UString&);
51 JSObject* createReferenceError(ExecState*, const UString&);
52 JSObject* createSyntaxError(ExecState*, const UString&);
53 JSObject* createTypeError(ExecState*, const UString&);
54 JSObject* createURIError(ExecState*, const UString&);
57 bool hasErrorInfo(ExecState*, JSObject* error)
    [all...]
ObjectPrototype.h 30 ObjectPrototype(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure);
33 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
34 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
39 EncodedJSValue JSC_HOST_CALL objectProtoFuncToString(ExecState*);
StrictEvalActivation.cpp 31 StrictEvalActivation::StrictEvalActivation(ExecState* exec)
36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&)
41 JSObject* StrictEvalActivation::toThisObject(ExecState* exec) const
46 JSValue StrictEvalActivation::toStrictThisObject(ExecState*) const
ExceptionHelpers.h 37 class ExecState;
48 JSObject* createStackOverflowError(ExecState*);
51 JSObject* createUndefinedVariableError(ExecState*, const Identifier&);
52 JSObject* createNotAnObjectError(ExecState*, JSValue);
53 JSObject* createInvalidParamError(ExecState*, const char* op, JSValue);
54 JSObject* createNotAConstructorError(ExecState*, JSValue);
55 JSObject* createNotAFunctionError(ExecState*, JSValue);
56 JSObject* createErrorForInvalidGlobalAssignment(ExecState*, const UString&);
58 JSObject* throwOutOfMemoryError(ExecState*);
59 JSObject* throwStackOverflowError(ExecState*);
    [all...]
JSNotAnObject.h 41 JSNotAnObject(ExecState* exec)
56 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const;
57 virtual bool getPrimitiveNumber(ExecState*, double& number, JSValue&);
58 virtual bool toBoolean(ExecState*) const;
59 virtual double toNumber(ExecState*) const;
60 virtual UString toString(ExecState*) const;
61 virtual JSObject* toObject(ExecState*, JSGlobalObject*) const;
64 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
65 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
66 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&)
    [all...]
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; }
54 virtual bool toBoolean(ExecState*) const { ASSERT_NOT_REACHED(); return false; }
55 virtual double toNumber(ExecState*) const { ASSERT_NOT_REACHED(); return 0.0; }
56 virtual UString toString(ExecState*) const { ASSERT_NOT_REACHED(); return ""; }
57 virtual JSObject* toObject(ExecState*) const { ASSERT_NOT_REACHED(); return 0; }
59 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) { ASSERT_NOT_REACHED(); }
60 virtual void put(ExecState*, unsigned, JSValue) { ASSERT_NOT_REACHED(); }
61 virtual bool deleteProperty(ExecState*, const Identifier&) { ASSERT_NOT_REACHED(); return false; }
62 virtual bool deleteProperty(ExecState*, unsigned) { ASSERT_NOT_REACHED(); return false;
    [all...]
BooleanConstructor.h 32 BooleanConstructor(ExecState*, JSGlobalObject*, Structure*, BooleanPrototype*);
39 JSObject* constructBooleanFromImmediateBoolean(ExecState*, JSGlobalObject*, JSValue);
40 JSObject* constructBoolean(ExecState*, const ArgList&);
FunctionConstructor.h 32 FunctionConstructor(ExecState*, JSGlobalObject*, Structure*, FunctionPrototype*);
39 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
40 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&);
JSNotAnObject.cpp 40 JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const
46 bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&)
52 bool JSNotAnObject::toBoolean(ExecState* exec) const
58 double JSNotAnObject::toNumber(ExecState* exec) const
64 UString JSNotAnObject::toString(ExecState* exec) const
70 JSObject* JSNotAnObject::toObject(ExecState* exec, JSGlobalObject*) const
77 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&)
83 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, unsigned, PropertySlot&)
89 bool JSNotAnObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier&, PropertyDescriptor&)
95 void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSMainThreadExecState.cpp 31 JSC::ExecState* JSMainThreadExecState::s_mainThreadState = 0;
JSMemoryInfoCustom.cpp 39 JSValue JSMemoryInfo::jsHeapSizeLimit(ExecState*) const
JSHTMLSelectElementCustom.h 36 void selectIndexSetter(HTMLSelectElement*, JSC::ExecState*, unsigned index, JSC::JSValue);
ScriptCallStackFactory.h 37 class ExecState;
46 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState*, size_t maxStackSize);
47 PassRefPtr<ScriptArguments> createScriptArguments(JSC::ExecState*, unsigned skipArgumentCount);
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.h 41 typedef EncodedJSValue (*J_DFGOperation_EJJ)(ExecState*, EncodedJSValue, EncodedJSValue);
42 typedef EncodedJSValue (*J_DFGOperation_EJ)(ExecState*, EncodedJSValue);
43 typedef EncodedJSValue (*J_DFGOperation_EJP)(ExecState*, EncodedJSValue, void*);
44 typedef EncodedJSValue (*J_DFGOperation_EJI)(ExecState*, EncodedJSValue, Identifier*);
45 typedef bool (*Z_DFGOperation_EJ)(ExecState*, EncodedJSValue);
46 typedef bool (*Z_DFGOperation_EJJ)(ExecState*, EncodedJSValue, EncodedJSValue);
47 typedef void (*V_DFGOperation_EJJJ)(ExecState*, EncodedJSValue, EncodedJSValue, EncodedJSValue);
48 typedef void (*V_DFGOperation_EJJP)(ExecState*, EncodedJSValue, EncodedJSValue, void*);
49 typedef void (*V_DFGOperation_EJJI)(ExecState*, EncodedJSValue, EncodedJSValue, Identifier*);
53 EncodedJSValue operationConvertThis(ExecState*, EncodedJSValue encodedOp1)
    [all...]
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileGenerator.h 36 class ExecState;
45 static PassRefPtr<ProfileGenerator> create(ExecState*, const UString& title, unsigned uid);
54 void willExecute(ExecState* callerCallFrame, const CallIdentifier&);
55 void didExecute(ExecState* callerCallFrame, const CallIdentifier&);
57 void exceptionUnwind(ExecState* handlerCallFrame, const CallIdentifier&);
62 typedef void (ProfileGenerator::*ProfileFunction)(ExecState* callerOrHandlerCallFrame, const CallIdentifier& callIdentifier);
65 ProfileGenerator(ExecState*, const UString& title, unsigned uid);
66 void addParentForConsoleStart(ExecState*);
  /external/webkit/Source/WebCore/bridge/c/
c_utility.h 37 class ExecState;
47 void convertValueToNPVariant(ExecState*, JSValue, NPVariant* result);
48 JSValue convertNPVariantToValue(ExecState*, const NPVariant*, RootObject*);
49 Identifier identifierFromNPIdentifier(ExecState*, const NPUTF8* name);
c_instance.h 53 static void moveGlobalExceptionToExecState(ExecState*);
59 virtual JSValue valueOf(ExecState*) const;
60 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
62 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
63 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
65 virtual JSValue invokeDefaultMethod(ExecState*);
68 virtual JSValue invokeConstruct(ExecState*, const ArgList&);
70 virtual void getPropertyNames(ExecState*, PropertyNameArray&);
72 JSValue stringValue(ExecState*) const;
73 JSValue numberValue(ExecState*) const
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.h 37 static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
40 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
48 static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
51 JSC::JSValue customAttr(JSC::ExecState*) const;
52 void setCustomAttr(JSC::ExecState*, JSC::JSValue);
55 JSC::JSValue customMethod(JSC::ExecState*);
56 JSC::JSValue customMethodWithArgs(JSC::ExecState*);
65 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, TestObj*)
    [all...]
  /external/webkit/Source/WebCore/bridge/objc/
objc_instance.h 47 virtual JSValue valueOf(ExecState*) const;
48 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
50 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
51 JSValue invokeObjcMethod(ExecState*, ObjcMethod* method);
52 virtual JSValue invokeMethod(ExecState*, RuntimeMethod* method);
54 virtual JSValue invokeDefaultMethod(ExecState*);
56 JSValue getValueOfUndefinedField(ExecState*, const Identifier&) const;
57 virtual bool setValueOfUndefinedField(ExecState*, const Identifier&, JSValue);
61 JSValue stringValue(ExecState*) const;
62 JSValue numberValue(ExecState*) const
    [all...]
  /external/webkit/Source/WebCore/bridge/
runtime_array.h 37 RuntimeArray(ExecState*, Bindings::Array*);
40 virtual void getOwnPropertyNames(ExecState*, PropertyNameArray&, EnumerationMode mode = ExcludeDontEnumProperties);
41 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
42 virtual bool getOwnPropertySlot(ExecState*, unsigned, PropertySlot&);
43 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
44 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
45 virtual void put(ExecState*, unsigned propertyName, JSValue);
47 virtual bool deleteProperty(ExecState* exec, const Identifier &propertyName);
48 virtual bool deleteProperty(ExecState* exec, unsigned propertyName);
56 static ArrayPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject
    [all...]
runtime_object.h 38 RuntimeObject(ExecState*, JSGlobalObject*, Structure*, PassRefPtr<Instance>);
41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
43 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
45 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
49 virtual void getOwnPropertyNames(ExecState*, PropertyNameArray&, EnumerationMode mode = ExcludeDontEnumProperties);
55 static JSObject* throwInvalidAccessError(ExecState*);
59 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
73 static JSValue fallbackObjectGetter(ExecState*, JSValue, const Identifier&)
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 53 virtual JSValue valueOf(ExecState*) const;
54 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
56 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
57 virtual JSValue invokeMethod(ExecState* exec, RuntimeMethod* method);
61 JSValue stringValue(ExecState*) const;
62 JSValue numberValue(ExecState*) const;
68 virtual RuntimeObject* newRuntimeObject(ExecState*);
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.h 35 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
36 virtual JSValue invokeMethod(ExecState*, RuntimeMethod*);
37 virtual void getPropertyNames(ExecState*, PropertyNameArray&);
39 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
40 virtual JSValue valueOf(ExecState* exec) const;
45 RuntimeObject* newRuntimeObject(ExecState* exec);
46 static JSObject* createPixmapRuntimeObject(ExecState*, PassRefPtr<RootObject>, const QVariant&);

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>