Searched refs:prevValue (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMutationEvent.cpp36 const String& prevValue, const String& newValue,
40 , m_prevValue(prevValue)
52 const String& prevValue, const String& newValue,
61 m_prevValue = prevValue;
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));
54 const String& prevValue, const String& newValue,
58 String prevValue() const { return m_prevValue; } function in class:WebCore::MutationEvent
68 const String& prevValue, const String& newValue,
H A DMutationEvent.idl29 readonly attribute DOMString prevValue;
38 [Default=Undefined] optional DOMString prevValue,
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dutrie2.cpp522 uint32_t value, prevValue, initialValue; local
560 prevValue=0;
597 * The index-2 block is the same as the previous one, and filled with prevValue.
608 if(prevValue!=initialValue) {
609 if(prev<c && !enumRange(context, prev, c-1, prevValue)) {
614 prevValue=initialValue;
633 /* the block is the same as the previous one, and filled with prevValue */
640 if(prevValue!=initialValue) {
641 if(prev<c && !enumRange(context, prev, c-1, prevValue)) {
645 prevValue
[all...]
H A Dutrie.cpp1062 uint32_t value, prevValue, initialValue; local
1089 prevValue=initialValue;
1107 if(prevValue!=initialValue) {
1109 if(!enumRange(context, prev, c, prevValue)) {
1115 prevValue=initialValue;
1122 if(value!=prevValue) {
1124 if(!enumRange(context, prev, c, prevValue)) {
1133 prevValue=value;
1146 if(prevValue!=initialValue) {
1148 if(!enumRange(context, prev, c, prevValue)) {
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DDOMEvents.idl319 //readonly attribute DOMString prevValue;
320 HRESULT prevValue([out, retval] BSTR* result);
335 // DOMString prevValue,
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/tcl-102/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl2320 variable eventOptionsRO type|target|currentNode|eventPhase|bubbles|cancelable|timeStamp|detail|view|screenX|screenY|clientX|clientY|ctrlKey|shiftKey|altKey|metaKey|button|relatedNode|prevValue|newValue|attrName
2332 variable mutationeventOptionsRO relatedNode|prevValue|newValue|attrName
2467 foreach {event(type) event(bubbles) event(cancelable) event(relatedNode) event(prevValue) event(newValue) event(attrName)} $args break
2527 -prevValue {} -newValue {} \
2533 event initMutationEvent $evid $evType $evOpts(-bubbles) $evOpts(-cancelable) $evOpts(-relatedNode) $evOpts(-prevValue) $evOpts(-newValue) $evOpts(-attrName)
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DPublicDOMInterfaces.h1070 @property(readonly, copy) NSString *prevValue; 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.cpp573 HRESULT STDMETHODCALLTYPE DOMMutationEvent::prevValue( function in class:DOMMutationEvent
602 /* [in] */ BSTR /*prevValue*/,
H A DDOMEventsClasses.h694 virtual HRESULT STDMETHODCALLTYPE prevValue(
711 /* [in] */ BSTR prevValue,
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/src-libxml2/
H A Dtcldom-libxml2.c89 Tcl_Obj *prevValue; member in struct:TclDOMEvent
705 "-prevValue",
4703 if (prevValuePtr && eventPtr->prevValue != prevValuePtr) {
4704 Tcl_DecrRefCount(eventPtr->prevValue);
4705 eventPtr->prevValue = prevValuePtr;
4706 Tcl_IncrRefCount(eventPtr->prevValue);
4981 Tcl_SetObjResult(interp, eventPtr->prevValue);
5161 Tcl_WrongNumArgs(interp, 2, objv, "type bubbles cancelable relatedNode prevValue newValue attrName attrChange");
5628 eventPtr->prevValue = Tcl_NewObj();
5629 Tcl_IncrRefCount(eventPtr->prevValue);
[all...]

Completed in 116 milliseconds