Searched refs:putWithAttributes (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DJSStaticScopeObject.cpp57 void JSStaticScopeObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::JSStaticScopeObject
H A DJSStaticScopeObject.h48 void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
H A DJSActivation.h59 virtual void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
H A DError.cpp125 error->putWithAttributes(globalData, Identifier(globalData, linePropertyName), jsNumber(line), ReadOnly | DontDelete);
127 error->putWithAttributes(globalData, Identifier(globalData, sourceIdPropertyName), jsNumber((double)sourceID), ReadOnly | DontDelete);
129 error->putWithAttributes(globalData, Identifier(globalData, sourceURLPropertyName), jsString(globalData, sourceURL), ReadOnly | DontDelete);
H A DJSObject.cpp174 void JSObject::putWithAttributes(JSGlobalData* globalData, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot) function in class:JSC::JSObject
179 void JSObject::putWithAttributes(JSGlobalData* globalData, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::JSObject
184 void JSObject::putWithAttributes(JSGlobalData* globalData, unsigned propertyName, JSValue value, unsigned attributes) function in class:JSC::JSObject
186 putWithAttributes(globalData, Identifier::from(globalData, propertyName), value, attributes);
189 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot) function in class:JSC::JSObject
194 void JSObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::JSObject
199 void JSObject::putWithAttributes(ExecState* exec, unsigned propertyName, JSValue value, unsigned attributes) function in class:JSC::JSObject
201 putWithAttributes(exec, Identifier::from(exec, propertyName), value, attributes);
635 target->putWithAttributes(exec, propertyName, accessor, attributes);
643 target->putWithAttributes(exe
[all...]
H A DJSActivation.cpp172 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::JSActivation
184 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot);
H A DJSObject.h112 virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot);
113 virtual void putWithAttributes(JSGlobalData*, const Identifier& propertyName, JSValue value, unsigned attributes);
114 virtual void putWithAttributes(JSGlobalData*, unsigned propertyName, JSValue value, unsigned attributes);
115 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot);
116 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes);
117 virtual void putWithAttributes(ExecState*, unsigned propertyName, JSValue value, unsigned attributes);
H A DJSVariableObject.h49 virtual void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes) = 0;
H A DJSGlobalObject.cpp127 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::JSGlobalObject
140 JSObject::putWithAttributes(exec, propertyName, valueAfter, attributes);
H A DJSGlobalObject.h160 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:JSC::DebuggerActivation
66 m_activation->putWithAttributes(exec, propertyName, value, attributes);
H A DDebuggerActivation.h43 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue, unsigned attributes);
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowShell.cpp103 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) function in class:WebCore::JSDOMWindowShell
105 m_window->putWithAttributes(exec, propertyName, value, attributes);
H A DJSDOMWindowShell.h76 virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, unsigned attributes);
/external/webkit/Source/JavaScriptCore/API/
H A DJSObjectRef.cpp277 jsObject->putWithAttributes(exec, name, jsValue, attributes);
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp307 globalObject->putWithAttributes(exec, function->ident(), new (exec) JSFunction(exec, makeFunction(exec, function), scopeChain), DontDelete);
315 globalObject->putWithAttributes(exec, *varStack[i].first, jsUndefined(), attributes);

Completed in 1597 milliseconds