/external/webkit/WebCore/dom/ |
WebKitTransitionEvent.h | 49 const String& propertyName, 52 const String& propertyName() const; 59 WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime);
|
/external/webkit/WebCore/bindings/js/ |
JSHTMLFormElementCustom.cpp | 40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, const Identifier& propertyName) 43 form->getNamedElements(propertyName, namedItems); 47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 53 form->getNamedElements(propertyName, namedItems);
|
JSHTMLFrameSetElementCustom.cpp | 44 bool JSHTMLFrameSetElement::canGetItemsForName(ExecState*, HTMLFrameSetElement* frameSet, const Identifier& propertyName) 46 Node* frame = frameSet->children()->namedItem(propertyName); 50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 55 Node* frame = element->children()->namedItem(propertyName);
|
JSNodeListCustom.cpp | 54 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName) 56 return impl->itemWithName(propertyName); 59 JSValue JSNodeList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 62 return toJS(exec, thisObj->impl()->itemWithName(propertyName));
|
JSStyleSheetListCustom.cpp | 50 bool JSStyleSheetList::canGetItemsForName(ExecState*, StyleSheetList* styleSheetList, const Identifier& propertyName) 52 return styleSheetList->getNamedItem(propertyName); 55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 58 HTMLStyleElement* element = thisObj->impl()->getNamedItem(propertyName);
|
SerializedScriptValue.cpp | 56 void set(const Identifier& propertyName, const SerializedScriptValueData& value) 59 m_names.append(String(propertyName.ustring()).crossThreadString().impl()); 532 JSValue getSparseIndex(JSObject* object, unsigned propertyName, bool& hasIndex) 535 if (object->getOwnPropertySlot(m_exec, propertyName, slot)) { 537 return slot.getValue(m_exec, propertyName); 543 JSValue getProperty(JSObject* object, const Identifier& propertyName, unsigned) 546 if (object->getOwnPropertySlot(m_exec, propertyName, slot)) 547 return slot.getValue(m_exec, propertyName); 591 void putProperty(RefPtr<SerializedArray> array, unsigned propertyName, const SerializedScriptValueData& value) 593 array->setIndex(propertyName, value) [all...] |
/external/webkit/WebCore/bindings/v8/ |
npruntime_impl.h | 61 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result); 62 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value); 63 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName); 64 bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier propertyName);
|
/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); 45 virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName); 46 virtual bool deleteProperty(ExecState *exec, unsigned propertyName);
|
runtime_object.h | 39 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 40 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&); 41 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 42 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
|
/external/webkit/WebCore/plugins/ |
MimeTypeArray.cpp | 59 bool MimeTypeArray::canGetItemsForName(const AtomicString& propertyName) 66 if (mimes[i]->type == propertyName) 72 PassRefPtr<MimeType> MimeTypeArray::namedItem(const AtomicString& propertyName) 79 if (mimes[i]->type == propertyName)
|
Plugin.cpp | 73 bool Plugin::canGetItemsForName(const AtomicString& propertyName) 77 if (mimes[i]->type == propertyName) 82 PassRefPtr<MimeType> Plugin::namedItem(const AtomicString& propertyName) 86 if (mimes[i]->type == propertyName)
|
PluginArray.cpp | 59 bool PluginArray::canGetItemsForName(const AtomicString& propertyName) 66 if (plugins[i]->name == propertyName) 72 PassRefPtr<Plugin> PluginArray::namedItem(const AtomicString& propertyName) 79 if (plugins[i]->name == propertyName)
|
MimeTypeArray.h | 44 bool canGetItemsForName(const AtomicString& propertyName); 45 PassRefPtr<MimeType> namedItem(const AtomicString& propertyName);
|
Plugin.h | 46 bool canGetItemsForName(const AtomicString& propertyName); 47 PassRefPtr<MimeType> namedItem(const AtomicString& propertyName);
|
PluginArray.h | 44 bool canGetItemsForName(const AtomicString& propertyName); 45 PassRefPtr<Plugin> namedItem(const AtomicString& propertyName);
|
/external/webkit/JavaScriptCore/runtime/ |
JSArray.h | 49 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 50 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 52 virtual void put(ExecState*, unsigned propertyName, JSValue); // FIXME: Make protected and add setItem. 98 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 99 virtual bool deleteProperty(ExecState*, const Identifier& propertyName); 100 virtual bool deleteProperty(ExecState*, unsigned propertyName); 110 bool getOwnPropertySlotSlowCase(ExecState*, unsigned propertyName, PropertySlot&); 111 void putSlowCase(ExecState*, unsigned propertyName, JSValue);
|
JSVariableObject.h | 104 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot) 106 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 114 inline bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertySlot& slot, bool& slotIsWriteable) 116 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 125 inline bool JSVariableObject::symbolTablePut(const Identifier& propertyName, JSValue value) 129 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 138 inline bool JSVariableObject::symbolTablePutWithAttributes(const Identifier& propertyName, JSValue value, unsigned attributes) 142 SymbolTable::iterator iter = symbolTable().find(propertyName.ustring().rep());
|
JSGlobalObject.h | 183 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes); 185 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes); 186 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes); 335 inline bool JSGlobalObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 337 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot)) 339 return symbolTableGet(propertyName, slot); 342 inline bool JSGlobalObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 344 if (symbolTableGet(propertyName, descriptor)) 346 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descriptor); 349 inline bool JSGlobalObject::hasOwnPropertyForWrite(ExecState* exec, const Identifier& propertyName) [all...] |
JSByteArray.h | 79 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&); 80 virtual bool getOwnPropertySlot(JSC::ExecState*, unsigned propertyName, JSC::PropertySlot&); 82 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&); 83 virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);
|
/external/webkit/WebKit/win/ |
DOMCSSClasses.h | 89 /* [in] */ BSTR propertyName, 93 /* [in] */ BSTR propertyName, 97 /* [in] */ BSTR propertyName, 101 /* [in] */ BSTR propertyName, 105 /* [in] */ BSTR propertyName,
|
DOMCSSClasses.cpp | 102 /* [in] */ BSTR propertyName, 105 WebCore::String propertyNameString(propertyName); 114 /* [in] */ BSTR /*propertyName*/, 122 /* [in] */ BSTR /*propertyName*/, 130 /* [in] */ BSTR /*propertyName*/, 138 /* [in] */ BSTR propertyName, 142 WebCore::String propertyNameString(propertyName);
|
/external/webkit/JavaScriptGlue/ |
UserObjectImp.cpp | 106 CFStringRef propertyName = (CFStringRef)CFArrayGetValueAtIndex(cfPropertyNames, i); 107 propertyNames.add(CFStringToIdentifier(propertyName, exec)); 115 JSValue UserObjectImp::userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot& slot) 121 CFStringRef cfPropName = IdentifierToCFString(propertyName); 130 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot) 135 CFStringRef cfPropName = IdentifierToCFString(propertyName); 146 if (kjsObject->getPropertySlot(exec, propertyName, slot)) 150 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 153 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&) 158 CFStringRef cfPropName = IdentifierToCFString(propertyName); [all...] |
/external/webkit/JavaScriptCore/API/tests/ |
testapi.c | 136 static bool MyObject_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName) 141 if (JSStringIsEqualToUTF8CString(propertyName, "alwaysOne") 142 || JSStringIsEqualToUTF8CString(propertyName, "cantFind") 143 || JSStringIsEqualToUTF8CString(propertyName, "throwOnGet") 144 || JSStringIsEqualToUTF8CString(propertyName, "myPropertyName") 145 || JSStringIsEqualToUTF8CString(propertyName, "hasPropertyLie") 146 || JSStringIsEqualToUTF8CString(propertyName, "0")) { 153 static JSValueRef MyObject_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 158 if (JSStringIsEqualToUTF8CString(propertyName, "alwaysOne")) { 162 if (JSStringIsEqualToUTF8CString(propertyName, "myPropertyName")) [all...] |
JSNodeList.c | 53 static JSValueRef JSNodeList_length(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 55 UNUSED_PARAM(propertyName); 68 static JSValueRef JSNodeList_getProperty(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 72 double index = JSValueToNumber(context, JSValueMakeString(context, propertyName), exception);
|
/external/webkit/WebKitTools/DumpRenderTree/ |
AccessibilityUIElement.cpp | 374 static JSValueRef getARIADropEffectsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 380 static JSValueRef getARIAIsGrabbedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 385 static JSValueRef getIsValidCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 396 static JSValueRef getRoleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 402 static JSValueRef getSubroleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 408 static JSValueRef getRoleDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 414 static JSValueRef getTitleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 420 static JSValueRef getDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 426 static JSValueRef getStringValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 432 static JSValueRef getLanguageCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception [all...] |