Searched refs:attrChange (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMutationEvent.cpp37 const String& attrName, unsigned short attrChange)
43 , m_attrChange(attrChange)
53 const String& attrName, unsigned short attrChange)
64 m_attrChange = attrChange;
35 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
51 initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
H A DMutationEvent.h48 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
50 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
55 const String& attrName, unsigned short attrChange);
61 unsigned short attrChange() const { return m_attrChange; } function in class:WebCore::MutationEvent
69 const String& attrName, unsigned short attrChange);
H A DMutationEvent.idl32 readonly attribute unsigned short attrChange;
41 [Default=Undefined] optional unsigned short attrChange);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DDOMEvents.idl328 //readonly attribute unsigned short attrChange;
329 HRESULT attrChange([out, retval] unsigned short* result);
338 // unsigned short attrChange);
339 HRESULT initMutationEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMNode* relatedNode, [in] BSTR prevValue, [in] BSTR newValue, [in] BSTR attrName, [in] unsigned short attrChange);
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DPublicDOMInterfaces.h1073 @property(readonly) unsigned short attrChange; variable
1074 - (void)initMutationEvent:(NSString *)type canBubble:(BOOL)canBubble cancelable:(BOOL)cancelable relatedNode:(DOMNode *)relatedNode prevValue:(NSString *)prevValue newValue:(NSString *)newValue attrName:(NSString *)attrName attrChange:(unsigned short)attrChange AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
1075 - (void)initMutationEvent:(NSString *)type :(BOOL)canBubble :(BOOL)cancelable :(DOMNode *)relatedNode :(NSString *)prevValue :(NSString *)newValue :(NSString *)attrName :(unsigned short)attrChange;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMEventsClasses.cpp591 HRESULT STDMETHODCALLTYPE DOMMutationEvent::attrChange( function in class:DOMMutationEvent
605 /* [in] */ unsigned short /*attrChange*/)
H A DDOMEventsClasses.h703 virtual HRESULT STDMETHODCALLTYPE attrChange(
714 /* [in] */ unsigned short attrChange);
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/src-libxml2/
H A Dtcldom-libxml2.c77 Tcl_Obj *attrChange; member in struct:TclDOMEvent
693 "-attrChange",
4718 if (attrChangePtr && eventPtr->attrChange != attrChangePtr) {
4719 Tcl_DecrRefCount(eventPtr->attrChange);
4720 eventPtr->attrChange = attrChangePtr;
4721 Tcl_IncrRefCount(eventPtr->attrChange);
4945 Tcl_SetObjResult(interp, eventPtr->attrChange);
5161 Tcl_WrongNumArgs(interp, 2, objv, "type bubbles cancelable relatedNode prevValue newValue attrName attrChange");
5604 eventPtr->attrChange = Tcl_NewObj();
5605 Tcl_IncrRefCount(eventPtr->attrChange);
[all...]

Completed in 197 milliseconds