| /AOO42X/main/javaunohelper/com/sun/star/lib/uno/helper/ |
| H A D | PropertySet.java | 112 protected void registerProperty(Property prop, Object id) in registerProperty() argument 114 putProperty(prop); in registerProperty() 115 assignPropertyId(prop, id); in registerProperty() 248 protected void putProperty(Property prop) in putProperty() argument 250 _nameToPropertyMap.put(prop.Name, prop); in putProperty() 251 if (prop.Handle != -1) in putProperty() 252 _handleToPropertyMap.put(prop.Handle, prop); in putProperty() 268 protected void assignPropertyId(Property prop, Object id) in assignPropertyId() argument 271 _propertyToIdMap.put(prop, id); in assignPropertyId() 282 protected Object getPropertyId(Property prop) in getPropertyId() argument [all …]
|
| /AOO42X/main/cppuhelper/qa/propertysetmixin/ |
| H A D | JavaSupplier.java | 83 prop.dispose(); in dispose() 90 private final PropertySetMixin prop = new PropertySetMixin( field in JavaSupplier.Empty1 100 prop.dispose(); in dispose() 108 return prop.getPropertySetInfo(); in getPropertySetInfo() 115 prop.setPropertyValue(propertyName, value); in setPropertyValue() 121 return prop.getPropertyValue(propertyName); in getPropertyValue() 128 prop.addPropertyChangeListener(propertyName, listener); in addPropertyChangeListener() 135 prop.removePropertyChangeListener(propertyName, listener); in removePropertyChangeListener() 142 prop.addVetoableChangeListener(propertyName, listener); in addVetoableChangeListener() 149 prop.removeVetoableChangeListener(propertyName, listener); in removeVetoableChangeListener() [all …]
|
| H A D | test_propertysetmixin.cxx | 359 css::beans::Property prop( in testFull() local 363 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("First")), prop.Name); in testFull() 364 ASSERT_EQ(static_cast< sal_Int32 >(0), prop.Handle); in testFull() 365 ASSERT_EQ(getCppuType(static_cast< sal_Int32 * >(0)), prop.Type); in testFull() 366 ASSERT_EQ(static_cast< sal_Int16 >(0), prop.Attributes); in testFull() 367 prop = info->getPropertyByName( in testFull() 370 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Second")), prop.Name); in testFull() 371 ASSERT_EQ(static_cast< sal_Int32 >(1), prop.Handle); in testFull() 372 ASSERT_EQ(getCppuType(static_cast< sal_Int32 * >(0)), prop.Type); in testFull() 381 prop.Attributes); in testFull() [all …]
|
| /AOO42X/test/testcommon/source/org/openoffice/test/common/ |
| H A D | Installer.java | 44 String prop = System.getProperty("singleton"); in run() local 45 if ("true".equalsIgnoreCase(prop) || "yes".equalsIgnoreCase(prop)) { in run() 51 prop = findOpenofficeHome(); in run() 52 System.setProperty("openoffice.home", prop); in run() 53 log.log(Level.INFO, MessageFormat.format("OpenOffice in {0} will be tested.", prop)); in run() 57 File file = FileUtil.findFile(prop, jar); in run() 66 String prop = System.getProperty("openoffice.home"); in findOpenofficeHome() local 67 if (prop != null) { in findOpenofficeHome() 68 validateOpenOfficeInstallation(new File(prop)); in findOpenofficeHome() 69 return prop; in findOpenofficeHome() [all …]
|
| /AOO42X/main/qadevOOo/tests/java/ifc/ui/ |
| H A D | _XUIConfigurationManager.java | 113 PropertyValue prop = (PropertyValue)o[j]; in _getSettings() local 114 log.println("Property" + j + ": " + prop.Name + " " + prop.Value.toString()); in _getSettings() 140 PropertyValue[] prop = createMenuBarEntry("My Entry", mxMenuBarSettings, mxMSF, log); in _replaceSettings() local 141 if (prop == null) { in _replaceSettings() 147 XIndexContainer.class, prop[3].Value), log); in _replaceSettings() 151 x.insertByIndex(x.getCount(), prop); in _replaceSettings() local 211 PropertyValue[] prop = createMenuBarEntry("A new entry", mxSettings, mxMSF, log); in _insertSettings() local 212 if (prop == null) { in _insertSettings() 218 XIndexContainer.class, prop[3].Value), log); in _insertSettings() 223 x.insertByIndex(count, prop); in _insertSettings() [all …]
|
| /AOO42X/main/wizards/com/sun/star/wizards/ui/event/ |
| H A D | UnoDataAware.java | 149 …private static UnoDataAware attachTextControl(Object data, String prop, Object unoText, final List… in attachTextControl() argument 154 ? DataAwareFields.getFieldValueFor(data, prop, value) in attachTextControl() 155 : new DataAware.PropertyValue(prop, data), in attachTextControl() 176 …public static UnoDataAware attachEditControl(Object data, String prop, Object unoControl, Listener… in attachEditControl() argument 178 …return attachTextControl(data, prop, unoControl, listener, "Text", field, PropertyNames.EMPTY_STRI… in attachEditControl() 181 …public static UnoDataAware attachDateControl(Object data, String prop, Object unoControl, Listener… in attachDateControl() argument 183 return attachTextControl(data, prop, unoControl, listener, "Date", field, 0); in attachDateControl() 186 …public static UnoDataAware attachTimeControl(Object data, String prop, Object unoControl, Listener… in attachTimeControl() argument 188 return attachTextControl(data, prop, unoControl, listener, "Time", field, 0); in attachTimeControl() 191 …public static UnoDataAware attachNumericControl(Object data, String prop, Object unoControl, Liste… in attachNumericControl() argument [all …]
|
| /AOO42X/main/scripting/java/org/openoffice/netbeans/modules/office/loader/ |
| H A D | ParcelFolder.java | 125 Node.Property prop; in createSheet() local 137 prop = createFilterProperty(); in createSheet() 138 props.put(prop); in createSheet() 140 prop = createFilterProperty(); in createSheet() 141 props.put(prop); in createSheet() 146 prop = createClasspathProperty(); in createSheet() 147 props.put(prop); in createSheet() 153 Node.Property prop = in createLocationProperty() local 171 prop.setValue("files", Boolean.FALSE); in createLocationProperty() 172 return prop; in createLocationProperty() [all …]
|
| /AOO42X/main/forms/source/inc/ |
| H A D | property.hxx | 206 #define REGISTER_PROP_1( prop, member, attrib1 ) \ argument 207 registerProperty( PROPERTY_##prop, PROPERTY_ID_##prop, PropertyAttribute::attrib1, \ 210 #define REGISTER_PROP_2( prop, member, attrib1, attrib2 ) \ argument 211 …registerProperty( PROPERTY_##prop, PROPERTY_ID_##prop, PropertyAttribute::attrib1 | PropertyAttrib… 214 #define REGISTER_PROP_3( prop, member, attrib1, attrib2, attrib3 ) \ argument 215 …registerProperty( PROPERTY_##prop, PROPERTY_ID_##prop, PropertyAttribute::attrib1 | PropertyAttrib… 219 #define REGISTER_VOID_PROP_1( prop, memberAny, type, attrib1 ) \ argument 220 …registerMayBeVoidProperty( PROPERTY_##prop, PROPERTY_ID_##prop, PropertyAttribute::MAYBEVOID | Pro… 223 #define REGISTER_VOID_PROP_2( prop, memberAny, type, attrib1, attrib2 ) \ argument 224 …registerMayBeVoidProperty( PROPERTY_##prop, PROPERTY_ID_##prop, PropertyAttribute::MAYBEVOID | Pro…
|
| /AOO42X/main/cppuhelper/test/ |
| H A D | testproptyphlp.cxx | 63 ::com::sun::star::beans::Property prop; in testPropertyTypeHelper() 65 prop.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Huhu") ); in testPropertyTypeHelper() 66 prop.Handle = 5; in testPropertyTypeHelper() 67 prop.Attributes = 3; in testPropertyTypeHelper() 69 a <<= prop; in testPropertyTypeHelper() 73 …OSL_ASSERT( prop.Handle == prop2.Handle && prop.Name == prop2.Name && prop.Attributes == prop2.Att… in testPropertyTypeHelper() 77 a <<= prop.Name; in testPropertyTypeHelper() 79 OSL_ASSERT( ow == prop.Name ); in testPropertyTypeHelper()
|
| /AOO42X/main/qadevOOo/tests/java/ifc/frame/ |
| H A D | _XDispatchRecorder.java | 84 PropertyValue prop = new PropertyValue(); in _getRecordedMacro() local 85 prop.Name = "Text"; in _getRecordedMacro() 86 prop.Value = "XDispatchRecorder.endRecording()"; in _getRecordedMacro() 87 dispArgs = new PropertyValue[] {prop}; in _getRecordedMacro() 135 PropertyValue prop = new PropertyValue(); in _recordDispatch() local 136 prop.Name = "Text"; in _recordDispatch() 137 prop.Value = "XDispatchRecorder.recordDispatch()"; in _recordDispatch() 138 dispArgs = new PropertyValue[] {prop}; in _recordDispatch() 166 PropertyValue prop = new PropertyValue(); in _recordDispatchAsComment() local 167 prop.Name = "Text"; in _recordDispatchAsComment() [all …]
|
| /AOO42X/main/stoc/test/javavm/testcomponent/ |
| H A D | TestComponent.java | 71 String prop= System.getProperty("ftp.proxyHost"); in getImplementationName() local 72 prop= System.getProperty("ftp.proxyPort"); in getImplementationName() 73 prop= System.getProperty("http.proxyHost"); in getImplementationName() 74 prop= System.getProperty("http.proxyPort"); in getImplementationName() 75 prop= System.getProperty("ftp.nonProxyHosts"); in getImplementationName() 76 prop= System.getProperty("http.nonProxyHosts"); in getImplementationName() 77 prop= System.getProperty("socksProxyHost"); in getImplementationName() 78 prop= System.getProperty("socksProxyPort"); in getImplementationName() 80 prop= System.getProperty("stardiv.security.disableSecurity"); in getImplementationName() 81 prop= System.getProperty("appletviewer.security.mode"); in getImplementationName()
|
| /AOO42X/main/odk/examples/DevelopersGuide/UCB/ |
| H A D | ChildrenRetriever.java | 113 Property prop = new Property(); in getChildren() local 114 prop.Name = ( String )properties.get( index ); in getChildren() 115 prop.Handle = -1; // n/a in getChildren() 116 props[ index ] = prop; in getChildren() 244 String prop = obj.toString(); in printLine() local 245 int leng = prop.length(); in printLine() 248 prop += " "; in printLine() 250 print+= prop + " "; in printLine() 253 String temp1 = prop.substring( 0, limit ); in printLine() 254 String temp2 = prop.substring( limit ); in printLine() [all …]
|
| /AOO42X/main/qadevOOo/tests/java/ifc/form/component/ |
| H A D | _GridControl.java | 50 protected Object getNewValue(String prop, Object old) { in _RowHeight() 52 super.getNewValue(prop, old) ; in _RowHeight() 63 protected Object getNewValue(String prop, Object old) { in _Tabstop() 65 super.getNewValue(prop, old) ; in _Tabstop() 76 protected Object getNewValue(String prop, Object old) { in _TextColor() 78 super.getNewValue(prop, old) ; in _TextColor() 89 protected Object getNewValue(String prop, Object old) { in _BorderColor() 91 super.getNewValue(prop, old) ; in _BorderColor()
|
| /AOO42X/main/shell/source/win32/shlxthandler/ooofilt/ |
| H A D | propspec.cxx | 205 int CFullPropSpec::operator==( CFullPropSpec const & prop ) const in operator ==() 207 if ( memcmp( &prop._guidPropSet, in operator ==() 210 prop._psProperty.ulKind != _psProperty.ulKind ) in operator ==() 217 return( _wcsicmp( GetPropertyName(), prop.GetPropertyName() ) == 0 ); in operator ==() 220 return( GetPropertyPropid() == prop.GetPropertyPropid() ); in operator ==() 227 int CFullPropSpec::operator!=( CFullPropSpec const & prop ) const in operator !=() 229 if (*this == prop) in operator !=()
|
| /AOO42X/main/qadevOOo/tests/java/mod/_forms/ |
| H A D | GenericModelTest.java | 443 NamedValue prop = null; in createTestEnvironment() local 446 prop = (NamedValue) m_propertiesToSet.get(i); in createTestEnvironment() 448 … log.println("setting property: '"+prop.Name+"' to value '"+prop.Value.toString()+"'"); in createTestEnvironment() 450 m_XPS.setPropertyValue(prop.Name, prop.Value); in createTestEnvironment() 454 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 457 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 460 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 463 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment()
|
| /AOO42X/main/l10ntools/java/jpropex/java/ |
| H A D | JPropEx.java | 113 java.util.Properties prop = loadProp( inputFileArg ); in extract() local 121 for( Enumeration e = prop.propertyNames() ; e.hasMoreElements() ; ) in extract() 127 value = prop.getProperty( key , "" ); in extract() 129 str = (prop.getProperty( key )).replaceAll("\t" , " " ); // remove tab in extract() 241 …private void writeSinglePropertiesFile( String filename , java.util.Properties prop , String lang … in writeSinglePropertiesFile() argument 297 if( prop == null ) in writeSinglePropertiesFile() 299 prop.store( out , "" ); // Legal headers? in writeSinglePropertiesFile() 404 java.util.Properties prop = new java.util.Properties(); in loadProp() local 407 … prop.load( new BufferedInputStream( new NoLocalizeFilter( new FileInputStream( filename ) ) ) ); in loadProp() 413 return prop; in loadProp()
|
| /AOO42X/main/qadevOOo/tests/java/ifc/awt/ |
| H A D | _UnoControlCurrencyFieldModel.java | 62 protected Object getNewValue(String prop, Object old) { in _BackgroundColor() 74 protected Object getNewValue(String prop, Object old) { in _Tabstop() 98 protected Object getNewValue(String prop, Object old) { in _TextColor() 110 protected Object getNewValue(String prop, Object old) { in _TextLineColor() 122 protected Object getNewValue(String prop, Object old) { in _Value() 124 super.getNewValue(prop, old) ; in _Value()
|
| H A D | _UnoControlDateFieldModel.java | 61 protected Object getNewValue(String prop, Object old) { in _BackgroundColor() 86 protected Object getNewValue(String prop, Object old) { in _Date() 88 super.getNewValue(prop, old) ; in _Date() 99 protected Object getNewValue(String prop, Object old) { in _Tabstop() 111 protected Object getNewValue(String prop, Object old) { in _TextColor()
|
| /AOO42X/main/extensions/source/update/check/ |
| H A D | transform.pl | 31 $prop = $_; 36 next if( $prop =~ /Text/ || $prop =~ /Bubble/ ); 44 $line = $prop; 50 $line = $prop;
|
| /AOO42X/main/qadevOOo/tests/java/ifc/beans/ |
| H A D | _XPropertyState.java | 88 Property prop = null; in before() local 91 prop = propertySetInfo.getPropertyByName in before() 94 log.println("Unknown Property "+prop.Name); in before() 96 boolean readOnly = (prop.Attributes & in before() 98 boolean maybeDefault = (prop.Attributes & in before() 103 prop.Attributes); in before()
|
| /AOO42X/main/extensions/test/ole/DCOM/dcom_test/ |
| H A D | Module1.bas | 45 Dim prop variable 46 propClass.CreateObject prop 47 prop.Name = "Hidden" 48 prop.Value = True 52 Set args(0) = prop
|
| /AOO42X/main/scripting/java/org/openoffice/netbeans/modules/office/nodes/ |
| H A D | ScriptNode.java | 90 org.openide.nodes.Node.Property prop = null; in createSheet() local 91 if ((prop = getStringProperty(LOGICAL_NAME)) != null) in createSheet() 92 props.put(prop); in createSheet() 94 if ((prop = getStringProperty(LANGUAGE_NAME)) != null) in createSheet() 95 props.put(prop); in createSheet()
|
| /AOO42X/main/ucb/source/ucp/file/ |
| H A D | filinsreq.cxx | 204 PropertyValue prop; in XTYPEPROVIDER_IMPL_2() local 205 prop.Name = rtl::OUString::createFromAscii("ResourceName"); in XTYPEPROVIDER_IMPL_2() 206 prop.Handle = -1; in XTYPEPROVIDER_IMPL_2() 207 prop.Value <<= m_aClashingName; in XTYPEPROVIDER_IMPL_2() 209 seq[0] <<= prop; in XTYPEPROVIDER_IMPL_2()
|
| /AOO42X/main/ucb/qa/complex/tdoc/ |
| H A D | CheckTransientDocumentsContent.java | 118 Property[] prop = new Property[1]; in checkTransientDocumentsContent() local 119 prop[0] = new Property(); in checkTransientDocumentsContent() 120 prop[0].Name = "DocumentModel"; in checkTransientDocumentsContent() 121 prop[0].Handle = -1; in checkTransientDocumentsContent() 122 command.Argument = prop; in checkTransientDocumentsContent()
|
| /AOO42X/main/toolkit/workben/layout/ |
| H A D | editor.cxx | 220 beans::Property prop = it.next(); in Widget() local 221 rtl::OUString name( prop.Name ); in Widget() 343 beans::Property prop = it.next(); in addChild() local 344 rtl::OUString name( prop.Name ); in addChild() 1197 static bool toIgnore( rtl::OUString prop ) in toIgnore() argument 1225 cmp = prop.compareToAscii( toIgnoreList[ mid ] ); in toIgnore() 1255 beans::Property prop = it.next(); in addProperties() local 1256 rtl::OUString name( prop.Name ); in addProperties() 1259 sal_uInt16 type = static_cast< sal_uInt16 >( prop.Type.getTypeClass() ); in addProperties() 1606 beans::Property prop = it.next(); in print() local [all …]
|