/external/webkit/Source/JavaScriptCore/runtime/ |
PropertySlot.h | 64 typedef JSValue (*GetValueFunc)(ExecState*, JSValue slotBase, const Identifier&); 65 typedef JSValue (*GetIndexValueFunc)(ExecState*, JSValue slotBase, unsigned); 72 return m_getIndexValue(exec, slotBase(), index()); 75 return m_getValue(exec, slotBase(), propertyName); 86 return m_getValue(exec, slotBase(), Identifier::from(exec, propertyName)); 98 void setValue(JSValue slotBase, JSValue value) 103 m_slotBase = slotBase; 107 void setValue(JSValue slotBase, JSValue value, size_t offset) 111 m_slotBase = slotBase; 126 void setCustom(JSValue slotBase, GetValueFunc getValue [all...] |
RegExpConstructor.cpp | 205 JSValue regExpConstructorDollar1(ExecState* exec, JSValue slotBase, const Identifier&) 207 return asRegExpConstructor(slotBase)->getBackref(exec, 1); 210 JSValue regExpConstructorDollar2(ExecState* exec, JSValue slotBase, const Identifier&) 212 return asRegExpConstructor(slotBase)->getBackref(exec, 2); 215 JSValue regExpConstructorDollar3(ExecState* exec, JSValue slotBase, const Identifier&) 217 return asRegExpConstructor(slotBase)->getBackref(exec, 3); 220 JSValue regExpConstructorDollar4(ExecState* exec, JSValue slotBase, const Identifier&) 222 return asRegExpConstructor(slotBase)->getBackref(exec, 4); 225 JSValue regExpConstructorDollar5(ExecState* exec, JSValue slotBase, const Identifier&) 227 return asRegExpConstructor(slotBase)->getBackref(exec, 5) [all...] |
RegExpObject.cpp | 92 JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, const Identifier&) 94 return jsBoolean(asRegExpObject(slotBase)->regExp()->global()); 97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&) 99 return jsBoolean(asRegExpObject(slotBase)->regExp()->ignoreCase()); 102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier&) 104 return jsBoolean(asRegExpObject(slotBase)->regExp()->multiline()); 107 JSValue regExpObjectSource(ExecState* exec, JSValue slotBase, const Identifier&) 109 return jsString(exec, asRegExpObject(slotBase)->regExp()->pattern()); 112 JSValue regExpObjectLastIndex(ExecState*, JSValue slotBase, const Identifier&) 114 return asRegExpObject(slotBase)->getLastIndex() [all...] |
JSFunction.cpp | 160 JSValue JSFunction::argumentsGetter(ExecState* exec, JSValue slotBase, const Identifier&) 162 JSFunction* thisObj = asFunction(slotBase); 167 JSValue JSFunction::callerGetter(ExecState* exec, JSValue slotBase, const Identifier&) 169 JSFunction* thisObj = asFunction(slotBase); 174 JSValue JSFunction::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) 176 JSFunction* thisObj = asFunction(slotBase);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMMimeTypeArrayCustom.cpp | 36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 38 JSDOMMimeTypeArray* thisObj = static_cast<JSDOMMimeTypeArray*>(asObject(slotBase));
|
JSDOMPluginArrayCustom.cpp | 36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 38 JSDOMPluginArray* thisObj = static_cast<JSDOMPluginArray*>(asObject(slotBase));
|
JSDOMPluginCustom.cpp | 35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 37 JSDOMPlugin* thisObj = static_cast<JSDOMPlugin*>(asObject(slotBase));
|
JSDataGridColumnListCustom.cpp | 46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 48 JSDataGridColumnList* thisObj = static_cast<JSDataGridColumnList*>(asObject(slotBase));
|
JSHTMLFormElementCustom.cpp | 47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 49 JSHTMLElement* jsForm = static_cast<JSHTMLFormElement*>(asObject(slotBase));
|
JSHTMLFrameSetElementCustom.cpp | 50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 52 JSHTMLElement* thisObj = static_cast<JSHTMLElement*>(asObject(slotBase));
|
JSStyleSheetListCustom.cpp | 55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 57 JSStyleSheetList* thisObj = static_cast<JSStyleSheetList*>(asObject(slotBase));
|
JSDOMStringMapCustom.cpp | 41 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 43 JSDOMStringMap* thisObj = static_cast<JSDOMStringMap*>(asObject(slotBase));
|
JSNamedNodeMapCustom.cpp | 76 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 78 JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(asObject(slotBase));
|
JSNodeListCustom.cpp | 98 JSValue JSNodeList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 100 JSNodeList* thisObj = static_cast<JSNodeList*>(asObject(slotBase));
|
JSStorageCustom.cpp | 44 JSValue JSStorage::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 46 JSStorage* thisObj = static_cast<JSStorage*>(asObject(slotBase));
|
JSCSSStyleDeclarationCustom.cpp | 150 JSValue JSCSSStyleDeclaration::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 152 JSCSSStyleDeclaration* thisObj = static_cast<JSCSSStyleDeclaration*>(asObject(slotBase));
|
JSHTMLAllCollectionCustom.cpp | 116 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 118 JSHTMLAllCollection* thisObj = static_cast<JSHTMLAllCollection*>(asObject(slotBase));
|
JSHTMLCollectionCustom.cpp | 112 JSValue JSHTMLCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 114 JSHTMLCollection* thisObj = static_cast<JSHTMLCollection*>(asObject(slotBase));
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestObj.cpp | 281 JSValue jsTestObjReadOnlyIntAttr(ExecState* exec, JSValue slotBase, const Identifier&) 283 JSTestObj* castedThis = static_cast<JSTestObj*>(asObject(slotBase)); 290 JSValue jsTestObjReadOnlyStringAttr(ExecState* exec, JSValue slotBase, const Identifier&) 292 JSTestObj* castedThis = static_cast<JSTestObj*>(asObject(slotBase)); 299 JSValue jsTestObjReadOnlyTestObjAttr(ExecState* exec, JSValue slotBase, const Identifier&) 301 JSTestObj* castedThis = static_cast<JSTestObj*>(asObject(slotBase)); 308 JSValue jsTestObjShortAttr(ExecState* exec, JSValue slotBase, const Identifier&) 310 JSTestObj* castedThis = static_cast<JSTestObj*>(asObject(slotBase)); 317 JSValue jsTestObjUnsignedShortAttr(ExecState* exec, JSValue slotBase, const Identifier&) 319 JSTestObj* castedThis = static_cast<JSTestObj*>(asObject(slotBase)); [all...] |
JSTestSerializedScriptValueInterface.cpp | 146 JSValue jsTestSerializedScriptValueInterfaceValue(ExecState* exec, JSValue slotBase, const Identifier&) 148 JSTestSerializedScriptValueInterface* castedThis = static_cast<JSTestSerializedScriptValueInterface*>(asObject(slotBase)); 155 JSValue jsTestSerializedScriptValueInterfaceConstructor(ExecState* exec, JSValue slotBase, const Identifier&) 157 JSTestSerializedScriptValueInterface* domObject = static_cast<JSTestSerializedScriptValueInterface*>(asObject(slotBase));
|
/external/webkit/Source/WebCore/bridge/ |
runtime_object.cpp | 60 JSValue RuntimeObject::fallbackObjectGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 62 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase)); 78 JSValue RuntimeObject::fieldGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 80 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase)); 97 JSValue RuntimeObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 99 RuntimeObject* thisObj = static_cast<RuntimeObject*>(asObject(slotBase));
|
runtime_array.cpp | 54 JSValue RuntimeArray::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) 56 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slotBase)); 60 JSValue RuntimeArray::indexGetter(ExecState* exec, JSValue slotBase, unsigned index) 62 RuntimeArray* thisObj = static_cast<RuntimeArray*>(asObject(slotBase));
|
runtime_method.cpp | 54 JSValue RuntimeMethod::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) 56 RuntimeMethod* thisObj = static_cast<RuntimeMethod*>(asObject(slotBase));
|
/external/webkit/Source/JavaScriptCore/API/ |
JSCallbackObjectFunctions.h | 518 JSValue JSCallbackObject<Base>::staticValueGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 520 JSCallbackObject* thisObj = asCallbackObject(slotBase); 549 JSValue JSCallbackObject<Base>::staticFunctionGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 551 JSCallbackObject* thisObj = asCallbackObject(slotBase); 575 JSValue JSCallbackObject<Base>::callbackGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 577 JSCallbackObject* thisObj = asCallbackObject(slotBase);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPObject.cpp | 364 JSValue JSNPObject::propertyGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 366 JSNPObject* thisObj = static_cast<JSNPObject*>(asObject(slotBase)); 399 JSValue JSNPObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& methodName) 401 JSNPObject* thisObj = static_cast<JSNPObject*>(asObject(slotBase));
|