/aoo4110/main/qadevOOo/runner/lib/ |
H A D | MultiPropertyTest.java | 149 protected void testProperty(String propName) in testProperty() argument 162 tRes.tested(propName, true); in testProperty() 169 tRes.tested(propName, false); in testProperty() 187 tRes.tested(propName, true); in testProperty() 193 tRes.tested(propName, false); in testProperty() 254 tRes.tested(propName, false); in testProperty() 291 tRes.tested(propName, false); in checkResult() 311 tRes.tested(propName, false); in checkResult() 316 tRes.tested(propName, true); in checkResult() 547 propTester.testProperty(propName); in testProperty() [all …]
|
/aoo4110/main/qadevOOo/tests/java/ifc/text/ |
H A D | _MailMerge.java | 62 String propName = "ResultSet"; in _ResultSet() local 80 tRes.tested(propName, false); in _ResultSet() 83 tRes.tested(propName, false); in _ResultSet() 85 if (this.isOptional(propName)){ in _ResultSet() 93 tRes.tested(propName, false); in _ResultSet() 97 tRes.tested(propName, false); in _ResultSet() 106 String propName = "ActiveConnection"; in _ActiveConnection() local 124 tRes.tested(propName, false); in _ActiveConnection() 127 tRes.tested(propName, false); in _ActiveConnection() 129 if (this.isOptional(propName)){ in _ActiveConnection() [all …]
|
H A D | _CellProperties.java | 80 protected Object getNewValue(String propName, Object oldValue) { in _TextSection() 95 protected Object getNewValue(String propName, Object oldValue) { in _BackColor() 111 protected Object getNewValue(String propName, Object oldValue) { in _BackGraphicURL() 128 protected Object getNewValue(String propName, Object oldValue) { in _UserDefinedAttributes()
|
H A D | _BaseIndex.java | 68 protected Object getNewValue(String propName, Object oldValue) { 110 protected Object getNewValue(String propName, Object oldValue) { in _LevelFormat() 146 protected void checkResult(String propName, Object oldValue, in _LevelFormat() 160 tRes.tested(propName, result); in _LevelFormat()
|
/aoo4110/main/qadevOOo/tests/java/ifc/sdb/ |
H A D | _DataAccessDescriptor.java | 37 String propName = "ResultSet"; in _ResultSet() local 55 tRes.tested(propName, false); in _ResultSet() 58 tRes.tested(propName, false); in _ResultSet() 60 if (this.isOptional(propName)){ in _ResultSet() 68 tRes.tested(propName, false); in _ResultSet() 72 tRes.tested(propName, false); in _ResultSet() 80 String propName = "ActiveConnection"; in _ActiveConnection() local 98 tRes.tested(propName, false); in _ActiveConnection() 101 tRes.tested(propName, false); in _ActiveConnection() 103 if (this.isOptional(propName)){ in _ActiveConnection() [all …]
|
H A D | _RowSet.java | 79 protected void checkResult(String propName, Object oldValue, in checkResult() argument 83 super.checkResult(propName, oldValue, newValue, resValue, exception); in checkResult() 86 oObj.setPropertyValue(propName, this.oldValue); in checkResult() 110 protected void testProperty(String propName) { in testProperty() argument 111 testProperty(propName, new SafeTester()) ; in testProperty()
|
/aoo4110/main/sc/qa/complex/sc/ |
H A D | CalcRTL.java | 358 protected boolean checkResult(XPropertySet set, String propName, in checkResult() argument 363 Property prop = info.getPropertyByName(propName); in checkResult() 375 System.out.println("Property " + propName + " is void"); in checkResult() 379 System.out.println("Property " + propName + " is readOnly"); in checkResult() 387 System.out.println(propName + in checkResult() 397 System.out.println("Property '" + propName + "' OK"); in checkResult() 403 System.out.println("Property '" + propName + "' OK"); in checkResult() 409 System.out.println("Property '" + propName + "' OK"); in checkResult() 415 System.out.println("Property '" + propName + "' OK"); in checkResult() 446 System.out.println("Property '" + propName + "' OK"); in checkResult() [all …]
|
/aoo4110/main/qadevOOo/tests/java/ifc/drawing/ |
H A D | _FillProperties.java | 71 protected Object getNewValue(String propName, Object oldValue) 85 protected Object getNewValue(String propName, Object oldValue) 99 protected Object getNewValue(String propName, Object oldValue) 166 String propName = "FillBitmap"; in _FillBitmap() local 170 if (!info.hasPropertyByName(propName)) { in _FillBitmap() 171 if (isOptional(propName)) { in _FillBitmap() 173 log.println("Property '" + propName + "' is optional and not supported"); in _FillBitmap() 174 tRes.tested(propName, true); in _FillBitmap()
|
H A D | _GraphicObjectShape.java | 67 protected Object getNewValue(String propName, Object oldValue) { 79 protected Object getNewValue(String propName, Object oldValue){ 93 protected Object getNewValue(String propName, Object oldValue) {
|
/aoo4110/main/qadevOOo/tests/java/ifc/style/ |
H A D | _ParagraphProperties.java | 114 protected Object getNewValue(String propName, Object oldValue) 129 protected Object getNewValue(String propName, Object oldValue) { 143 protected Object getNewValue(String propName, Object oldValue) { 157 protected Object getNewValue(String propName, Object oldValue) { 173 protected Object getNewValue(String propName, Object oldValue) { 189 protected Object getNewValue(String propName, Object oldValue) { 204 protected Object getNewValue(String propName, Object oldValue) { 223 protected Object getNewValue(String propName, Object oldValue) { in before()
|
H A D | _CharacterProperties.java | 113 protected Object getNewValue(String propName, Object old) { in _CharHeight() 128 protected Object getNewValue(String propName, Object oldValue) { 163 protected Object getNewValue(String propName, Object oldValue) { 185 protected Object getNewValue(String propName, Object oldValue) { 267 protected Object getNewValue(String propName, Object oldValue)
|
/aoo4110/main/wizards/com/sun/star/wizards/ui/event/ |
H A D | DataAware.java | 292 protected Method createGetMethod(String propName, Object obj) in createGetMethod() argument 298 m = obj.getClass().getMethod("get" + propName, EMPTY_ARRAY); in createGetMethod() 302 …throw new IllegalArgumentException("get" + propName + "() method does not exist on " + obj.getClas… in createGetMethod() 331 protected Method createSetMethod(String propName, Object obj, Class paramClass) { in createSetMethod() argument 334 m = obj.getClass().getMethod("set" + propName, new Class[] { paramClass }); in createSetMethod() 336 …throw new IllegalArgumentException("set" + propName + "(" + getMethod.getReturnType().getName() + … in createSetMethod()
|
/aoo4110/main/wizards/com/sun/star/wizards/common/ |
H A D | Properties.java | 44 public static Object getPropertyValue(PropertyValue[] props, String propName) in getPropertyValue() argument 48 if (propName.equals(props[i].Name)) in getPropertyValue() 53 throw new IllegalArgumentException("Property '" + propName + "' not found."); in getPropertyValue() 56 public static boolean hasPropertyValue(PropertyValue[] props, String propName) in hasPropertyValue() argument 60 if (propName.equals(props[i].Name)) in hasPropertyValue()
|
/aoo4110/main/javaunohelper/com/sun/star/lib/uno/helper/ |
H A D | PropertySet.java | 405 …synchronized public void removePropertyChangeListener(String propName, XPropertyChangeListener lis… in removePropertyChangeListener() argument 409 if (propName.length() > 0) in removePropertyChangeListener() 411 Property prop = getProperty(propName); in removePropertyChangeListener() 413 throw new UnknownPropertyException("Property " + propName + " is unknown"); in removePropertyChangeListener() 414 aBoundLC.removeInterface(propName, listener); in removePropertyChangeListener() 422 …synchronized public void removeVetoableChangeListener(String propName, XVetoableChangeListener lis… in removeVetoableChangeListener() argument 426 if (propName.length() > 0) in removeVetoableChangeListener() 428 Property prop = getProperty(propName); in removeVetoableChangeListener() 430 throw new UnknownPropertyException("Property " + propName + " is unknown"); in removeVetoableChangeListener() 431 aVetoableLC.removeInterface(propName, listener); in removeVetoableChangeListener()
|
/aoo4110/main/qadevOOo/runner/helper/ |
H A D | ConfigHelper.java | 265 String propName, in updateGroupProperty() argument 282 xProp.setPropertyValue(propName, propValue); in updateGroupProperty() 285 "could not set property '" + propName + in updateGroupProperty() 306 String propName, in insertOrUpdateExtensibleGroupProperty() argument 337 xExtGroupCont.insertByName(propName, propValue); in insertOrUpdateExtensibleGroupProperty() 340 xExtGroupCont .replaceByName(propName, propValue); in insertOrUpdateExtensibleGroupProperty()
|
/aoo4110/main/slideshow/source/inc/ |
H A D | tools.hxx | 332 rtl::OUString const & propName ) in getPropertyValue() argument 336 xPropSet->getPropertyValue( propName ) ); in getPropertyValue() 341 ::rtl::OUStringToOString( propName, in getPropertyValue() 364 rtl::OUString const & propName ) in getPropertyValue() argument 369 xPropSet->getPropertyValue( propName )); in getPropertyValue() 377 ::rtl::OUStringToOString( propName, in getPropertyValue()
|
/aoo4110/main/qadevOOo/tests/java/ifc/beans/ |
H A D | _XMultiPropertyStates.java | 128 String propName = names[0]; in _setPropertiesToDefault() local 132 propName = names[i]; in _setPropertiesToDefault() 152 log.println("The property " + propName + " selected"); in _setPropertiesToDefault() 157 the_first[0] = propName; in _setPropertiesToDefault() 158 log.println("Setting " + propName + " to default"); in _setPropertiesToDefault()
|
/aoo4110/test/testuno/source/testlib/uno/ |
H A D | SCUtil.java | 469 public static void setProperties(Object obj, String propName, Object value) throws Exception { in setProperties() argument 472 xPropertySet.setPropertyValue(propName, value); in setProperties() 482 public static Object getProperties(Object obj, String propName) throws Exception { in getProperties() argument 485 Object value = xPropertySet.getPropertyValue(propName); in getProperties() 497 public static void setCellProperties(XCell xCell, String propName, Object value) throws Exception { in setCellProperties() argument 499 setProperties(xCell, propName, value); in setCellProperties() 509 public static Object getCellProperties(XCell xCell, String propName) throws Exception { in getCellProperties() argument 510 return getProperties(xCell, propName); in getCellProperties()
|
/aoo4110/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _DataPilotField.java | 48 protected Object getNewValue(String propName, Object oldValue) { 74 protected Object getNewValue(String propName, Object oldValue) { 99 protected Object getNewValue(String propName, Object oldValue) { 124 protected Object getNewValue(String propName, Object oldValue) {
|
/aoo4110/main/qadevOOo/tests/java/ifc/io/ |
H A D | _XObjectInputStream.java | 138 String propName = p1[i].Name ; in compareProperties() local 140 log.print("Comparing property '" + propName + "' ...") ; in compareProperties() 144 (props1.getPropertyValue(propName), in compareProperties() 145 props2.getPropertyValue(propName)) ; in compareProperties()
|
/aoo4110/main/vcl/unx/generic/window/ |
H A D | FWS.cxx | 81 char propName[64]; in WMSupportsFWS() local 98 snprintf (propName, sizeof(propName), "_SUN_FWS_NEXT_ICON_%d", screen); in WMSupportsFWS() 99 fwsIconAtom = XInternAtom(display, propName, False); in WMSupportsFWS()
|
/aoo4110/main/qadevOOo/tests/java/ifc/awt/ |
H A D | _UnoControlImageControlModel.java | 50 protected Object getNewValue(String propName, Object oldValue) 72 protected Object getNewValue(String propName, Object oldValue) { in _BackgroundColor() 74 super.getNewValue(propName, oldValue) ; in _BackgroundColor()
|
/aoo4110/main/xmlscript/source/xmldlg_imexp/ |
H A D | exp_share.hxx | 108 ::rtl::OUString const & propName, ::rtl::OUString const & attrName, 216 ::rtl::OUString const & propName, ::rtl::OUString const & attrName, in read() argument 221 _xPropState->getPropertyState( propName )) in read() 223 css::uno::Any a( _xProps->getPropertyValue( propName ) ); in read()
|
/aoo4110/main/qadevOOo/tests/java/ifc/form/ |
H A D | _DataAwareControlModel.java | 116 protected void checkResult(String propName, Object oldValue, in _DataField() 131 tRes.tested(propName, res) ; in _DataField() 133 super.checkResult(propName, oldValue, newValue, in _DataField()
|
/aoo4110/main/oox/source/export/ |
H A D | shapes.cxx | 337 #define GETA(propName) \ argument 338 GetProperty( rXPropSet, String( RTL_CONSTASCII_USTRINGPARAM( #propName ) ) ) 340 #define GETAD(propName) \ argument 341 …( GetPropertyAndState( rXPropSet, rXPropState, String( RTL_CONSTASCII_USTRINGPARAM( #propName ) ),… 343 #define GET(variable, propName) \ argument 344 if ( GETA(propName) ) \
|