Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 25 of 70) sorted by relevance

123

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A DValueChanger.java45 Object newValue = null; in changePValue() local
139 newValue = LS; in changePValue()
148 newValue = D3D; in changePValue()
170 newValue = TS; in changePValue()
179 newValue = DCF; in changePValue()
241 newValue = SF; in changePValue()
303 newValue = CP; in changePValue()
313 newValue = TB; in changePValue()
668 if (oldValue.equals(TO1)) newValue = TO2; else newValue = TO1; in changePValue()
775 if (newValue == null) newValue = oldValue ; in changePValue()
[all …]
/trunk/main/winaccessibility/inc/
H A DAccContainerEventListener.hxx51 virtual void SAL_CALL handleChildChangedEvent(Any oldValue, Any newValue);
54 virtual void SAL_CALL handleSelectionChangedEvent(const Any &oldValue, const Any &newValue);
60 virtual void SAL_CALL handleTextChangedEvent(Any oldValue, Any newValue);
61 virtual void SAL_CALL handleStateChangedEvent(Any oldValue, Any newValue);
70 virtual void SAL_CALL handleValueChangedEvent(Any oldValue, Any newValue);
84 virtual void handleSelectionChangedAddEvent(const Any &oldValue, const Any &newValue);
85 virtual void handleSelectionChangedRemoveEvent(const Any &oldValue, const Any &newValue);
86 virtual void handleSelectionChangedWithinEvent(const Any &oldValue, const Any &newValue);
88 virtual void handlePageChangedEvent (const Any &oldValue, const Any &newValue);
90 virtual void handleSectionChangedEvent (const Any &oldValue, const Any &newValue);
[all …]
H A DAccDescendantManagerEventListener.hxx50 virtual void SAL_CALL handleSelectionChangedEvent(Any oldValue, Any newValue);
53 virtual void SAL_CALL handleChildChangedEvent (Any oldValue, Any newValue);
55 virtual void SAL_CALL handleChildChangedNoFocusEvent(Any oldValue, Any newValue);
59 virtual void handleSelectionChangedAddEvent(const Any &oldValue, const Any &newValue);
60 virtual void handleSelectionChangedRemoveEvent(const Any &oldValue, const Any &newValue);
61 virtual void handleSelectionChangedWithinEvent(const Any &oldValue, const Any &newValue);
/trunk/main/winaccessibility/source/service/
H A DAccDescendantManagerEventListener.cxx83 void AccDescendantManagerEventListener::handleChildChangedEvent(Any oldValue, Any newValue) in handleChildChangedEvent() argument
87 if( newValue >>= xChild) in handleChildChangedEvent()
122 void AccDescendantManagerEventListener::handleSelectionChangedEvent(Any oldValue, Any newValue) in handleSelectionChangedEvent() argument
126 if(newValue >>= xChild ) in handleSelectionChangedEvent()
156 void AccDescendantManagerEventListener::handleChildChangedNoFocusEvent(Any oldValue, Any newValue) in handleChildChangedNoFocusEvent() argument
159 if(newValue >>= xChild ) in handleChildChangedNoFocusEvent()
201 …tManagerEventListener::handleSelectionChangedAddEvent(const Any& /*oldValue*/, const Any &newValue) in handleSelectionChangedAddEvent() argument
203 if(NotifyChildEvent(UM_EVENT_SELECTION_CHANGED_ADD,newValue)) in handleSelectionChangedAddEvent()
209 …nagerEventListener::handleSelectionChangedRemoveEvent(const Any& /*oldValue*/, const Any &newValue) in handleSelectionChangedRemoveEvent() argument
211 if(NotifyChildEvent(UM_EVENT_SELECTION_CHANGED_REMOVE,newValue)) in handleSelectionChangedRemoveEvent()
[all …]
H A DAccContainerEventListener.cxx118 void AccContainerEventListener::handleStateChangedEvent(Any oldValue, Any newValue) in handleStateChangedEvent() argument
121 if( newValue >>= State) in handleStateChangedEvent()
137 void AccContainerEventListener::handleChildChangedEvent(Any oldValue, Any newValue) in handleChildChangedEvent() argument
140 if( newValue >>= xChild) in handleChildChangedEvent()
184 if(NotifyChildEvent(UM_EVENT_SELECTION_CHANGED,newValue)) in handleSelectionChangedEvent()
213 void AccContainerEventListener::handleTextChangedEvent(Any oldValue, Any newValue) in handleTextChangedEvent() argument
215 pAgent->UpdateValue(pAccessible, newValue); in handleTextChangedEvent()
439 void AccContainerEventListener::handleValueChangedEvent(Any oldValue, Any newValue) in handleValueChangedEvent() argument
479 if(NotifyChildEvent(UM_EVENT_SELECTION_CHANGED_ADD,newValue)) in handleSelectionChangedAddEvent()
487 if(NotifyChildEvent(UM_EVENT_SELECTION_CHANGED_REMOVE,newValue)) in handleSelectionChangedRemoveEvent()
[all …]
H A DAccTableEventListener.cxx109 void AccTableEventListener::handleActiveDescendantChangedEvent(Any oldValue, Any newValue) in handleActiveDescendantChangedEvent() argument
112 if(newValue >>= xChild ) in handleActiveDescendantChangedEvent()
132 void AccTableEventListener::handleTableModelChangeEvent(Any newValue) in handleTableModelChangeEvent() argument
135 if (newValue >>= aModelChange) in handleTableModelChangeEvent()
H A DAccComponentEventListener.cxx92 void AccComponentEventListener::handleValueChangedEvent(Any oldValue, Any newValue) in handleValueChangedEvent() argument
113 void AccComponentEventListener::handleTextChangedEvent(Any oldValue, Any newValue) in handleTextChangedEvent() argument
115 pAgent->UpdateValue(pAccessible, newValue); in handleTextChangedEvent()
125 void AccComponentEventListener::handleCaretChangedEvent(Any oldValue, Any newValue) in handleCaretChangedEvent() argument
H A DAccObjectContainerEventListener.cxx49 void AccObjectContainerEventListener::handleStateChangedEvent(Any oldValue, Any newValue) in handleStateChangedEvent() argument
54 if( newValue >>= newV) in handleStateChangedEvent()
63 AccContainerEventListener::handleStateChangedEvent(oldValue, newValue); in handleStateChangedEvent()
/trunk/main/framework/qa/complex/path_substitution/
H A DPathSubstitutionTest.java120 System.out.println("Return value '" + newValue + "'"); in checkXStringSubstitution()
123 + substString + "' to '" + newValue in checkXStringSubstitution()
124 + "' correctly:", newValue.startsWith(substVal)); in checkXStringSubstitution()
133 newValue = oObj.reSubstituteVariables(substString); in checkXStringSubstitution()
134 System.out.println("Return value '" + newValue + "'"); in checkXStringSubstitution()
137 + substString + "' to '" + newValue in checkXStringSubstitution()
152 newValue = oObj.substituteVariables(substString, false); in checkXStringSubstitution()
153 System.out.println("Return value '" + newValue + "'"); in checkXStringSubstitution()
158 erg = newValue.indexOf(substVal) == -1; in checkXStringSubstitution()
162 erg = newValue.indexOf(substVal) != -1; in checkXStringSubstitution()
[all …]
/trunk/main/unoxml/source/dom/
H A Dcharacterdata.cxx46 OUString const& prevValue, OUString const& newValue) in dispatchEvent_Impl() argument
54 prevValue, newValue, OUString(), (AttrChangeType)0 ); in dispatchEvent_Impl()
71 …OUString newValue((char*)m_aNodePtr->content, strlen((char*)m_aNodePtr->content), RTL_TEXTENCODING… in appendData() local
74 dispatchEvent_Impl(oldValue, newValue); in appendData()
105 …OUString newValue((char*)m_aNodePtr->content, strlen((char*)m_aNodePtr->content), RTL_TEXTENCODING… in deleteData() local
108 dispatchEvent_Impl(oldValue, newValue); in deleteData()
175 …OUString newValue((char*)m_aNodePtr->content, strlen((char*)m_aNodePtr->content), RTL_TEXTENCODING… in insertData() local
178 dispatchEvent_Impl(oldValue, newValue); in insertData()
212 …OUString newValue((char*)m_aNodePtr->content, strlen((char*)m_aNodePtr->content), RTL_TEXTENCODING… in replaceData() local
215 dispatchEvent_Impl(oldValue, newValue); in replaceData()
[all …]
/trunk/main/basebmp/inc/basebmp/
H A Dpackedpixeliterator.hxx271 const difference_type newValue( remainder_ + 1 ); in inc() local
272 const difference_type data_offset( newValue / num_intraword_positions ); in inc()
275 remainder_ = newValue % num_intraword_positions; in inc()
290 const difference_type newValue( remainder_ - 1 ); in dec() local
291 const bool isNegative( is_negative(newValue) ); in dec()
292 const difference_type newRemainder( newValue % num_intraword_positions ); in dec()
301 const difference_type data_offset( newValue / num_intraword_positions - isNegative ); in dec()
345 const difference_type newValue( remainder_ + d ); in operator +=() local
346 const bool isNegative( is_negative(newValue) ); in operator +=()
347 const difference_type newRemainder( newValue % num_intraword_positions ); in operator +=()
[all …]
/trunk/main/basebmp/test/
H A Dbmpdemo.cxx476 const difference_type newValue( remainder_ + 1 ); in inc() local
477 const difference_type data_offset( newValue / num_intraword_positions ); in inc()
480 remainder_ = newValue % num_intraword_positions; in inc()
497 const difference_type newValue( remainder_ - 1 ); in dec() local
498 const bool isNegative( is_negative(newValue) ); in dec()
552 const difference_type newValue( remainder_ + d ); in operator +=() local
554 data_ += newValue / num_intraword_positions; in operator +=()
555 remainder_ = newValue % num_intraword_positions; in operator +=()
563 const difference_type newValue( remainder_ - d ); in operator -=() local
564 const bool isNegative( is_negative(newValue) ); in operator -=()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sdb/
H A D_DataAccessDescriptor.java44 …XResultSet newValue = (XResultSet) UnoRuntime.queryInterface(XResultSet.class,tEnv.getObjRelation(… in _ResultSet() local
47 oObj.setPropertyValue(propName, newValue); in _ResultSet()
52 tRes.tested(propName, this.compare(newValue, getValue)); in _ResultSet()
87 …XConnection newValue = (XConnection) UnoRuntime.queryInterface(XConnection.class,tEnv.getObjRelati… in _ActiveConnection() local
90 oObj.setPropertyValue(propName, newValue); in _ActiveConnection()
95 tRes.tested(propName, this.compare(newValue, getValue)); in _ActiveConnection()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/chart/
H A D_ChartDataRowProperties.java44 int newValue; in _Axis() local
46 newValue = 4; in _Axis()
48 newValue = 2; in _Axis()
50 oObj.setPropertyValue("Axis", new Integer(newValue)); in _Axis()
52 tRes.tested("Axis",axis.intValue()==newValue); in _Axis()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_SheetLink.java47 String newValue = (String) ValueChanger.changePValue(oldValue);
48 if ( !newValue.startsWith("file://") ) {
49 newValue = "file://" + newValue;
52 return newValue;
H A D_XCellRangeFormula.java45 String[][] newValue = oObj.getFormulaArray(); in _getFormulaArray() local
46 newValue[0][0] = "inserted"; in _getFormulaArray()
47 oObj.setFormulaArray(newValue); in _getFormulaArray()
48 boolean res = oObj.getFormulaArray()[0][0].equals(newValue[0][0]); in _getFormulaArray()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/text/
H A D_MailMerge.java69 …XResultSet newValue = (XResultSet) UnoRuntime.queryInterface(XResultSet.class,tEnv.getObjRelation(… in _ResultSet() local
72 oObj.setPropertyValue(propName, newValue); in _ResultSet()
77 tRes.tested(propName, this.compare(newValue, getValue)); in _ResultSet()
113 …XConnection newValue = (XConnection) UnoRuntime.queryInterface(XConnection.class,tEnv.getObjRelati… in _ActiveConnection() local
116 oObj.setPropertyValue(propName, newValue); in _ActiveConnection()
121 tRes.tested(propName, this.compare(newValue, getValue)); in _ActiveConnection()
/trunk/main/setup_native/source/win32/customactions/reg64/
H A Dreg64.cxx336 wchar_t* newValue = reinterpret_cast<wchar_t*>( malloc( nNewValueBytes ) ); in DoRegEntries() local
337 ZeroMemory( newValue, nNewValueBytes ); in DoRegEntries()
340 wcsncpy(newValue, szValue, nPrefixSize); in DoRegEntries()
343 wcsncat(newValue, sBasisInstallLocation, nPropSize * sizeof( wchar_t )); in DoRegEntries()
346 wcsncat(newValue, nPos + ( wcslen( INSTALLLOCATION ) ), nPropSize * sizeof( wchar_t )); in DoRegEntries()
348 wcsncpy(szValue, newValue, nNewValueBytes <=1024? nNewValueBytes: 1024); in DoRegEntries()
350 free(newValue); in DoRegEntries()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/lib/
H A DMultiPropertyTest.java199 Object newValue; in testProperty() local
204 newValue = getNewValue(propName, oldValue); in testProperty()
221 log.println("new = " + toString(newValue)); in testProperty()
222 oObj.setPropertyValue(propName, newValue); in testProperty()
249 checkResult(propName, oldValue, newValue, resValue, exception); in testProperty()
285 Object newValue, Object resValue, Exception exception) in checkResult() argument
397 if ((!compare(resValue, newValue)) || (compare(resValue, oldValue))) in checkResult()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/
H A D_XCalendar.java71 public short newValue = 2; field in _XCalendar
329 if (fields[k] == CalendarFieldIndex.MONTH) set = newValue; in _setValue()
371 res &= (aValue == newValue); in _getValue()
374 log.println("expexted: " + newValue + " returned value: " + aValue); in _getValue()
395 res &= (aValue > newValue); in _addValue()
398 log.println("expexted: " + newValue + " returned value: " + aValue); in _addValue()
524 newValue, (short) 0); in _getDisplayName()
/trunk/main/sc/qa/complex/sc/
H A DCalcRTL.java359 Object oldValue, Object newValue, in checkResult() argument
366 newValue = getRealValue(newValue); in checkResult()
437 System.out.println("new = " + toString(newValue)); in checkResult()
455 if ((!ValueComparer.equalValue(resValue, newValue)) || in checkResult()
469 System.out.println("new = " + toString(newValue)); in checkResult()
500 System.out.println("new = " + toString(newValue)); in checkResult()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/util/
H A D_XIndent.java66 int newValue = getIndent(); in _incrementIndent() local
67 tRes.tested("incrementIndent()", oldValue < newValue) ; in _incrementIndent()
79 int newValue = getIndent(); in _decrementIndent() local
80 tRes.tested("decrementIndent()", oldValue > newValue) ; in _decrementIndent()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/
H A D_DataAwareControlModel.java117 Object newValue, Object resValue, Exception exception) in _DataField()
120 if (exception == null && oldValue.equals(newValue)) { in _DataField()
122 if (newValue.equals(resValue)) { in _DataField()
133 super.checkResult(propName, oldValue, newValue, in _DataField()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/
H A D_XHierarchicalPropertySet.java96 Object newValue = ValueChanger.changePValue(oldValue); in _setHierarchicalPropertyValue() local
97 oObj.setHierarchicalPropertyValue(pNames[k], newValue); in _setHierarchicalPropertyValue()
100 boolean localRes = ValueComparer.equalValue(getValue, newValue); in _setHierarchicalPropertyValue()
103 log.println("Expected " + newValue.toString()); in _setHierarchicalPropertyValue()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/drawing/
H A D_DrawingDocumentDrawView.java151 Object newValue=null; in _ZoomType() local
157 newValue = oObj.getPropertyValue("ZoomValue"); in _ZoomType()
168 log.println("newZoomValue: "+newValue); in _ZoomType()
169 tRes.tested("ZoomType",(!oldValue.equals(newValue))); in _ZoomType()

Completed in 126 milliseconds

123