/aoo41x/main/javaunohelper/com/sun/star/lib/uno/helper/ |
H A D | PropertySet.java | 114 putProperty(prop); in registerProperty() 115 assignPropertyId(prop, id); in registerProperty() 252 _nameToPropertyMap.put(prop.Name, prop); in putProperty() 253 if (prop.Handle != -1) in putProperty() 254 _handleToPropertyMap.put(new Integer(prop.Handle), prop); in putProperty() 325 if (prop == null) in addPropertyChangeListener() 349 if (prop == null) in addVetoableChangeListener() 385 if (prop == null) in getPropertyValue() 486 if (prop == null) in setPropertyValue() 962 if (prop == null) in setFastPropertyValue() [all …]
|
/aoo41x/main/cppuhelper/qa/propertysetmixin/ |
H A D | JavaSupplier.java | 83 prop.dispose(); in dispose() 100 prop.dispose(); in dispose() 108 return prop.getPropertySetInfo(); in getPropertySetInfo() 156 prop.setFastPropertyValue(handle, value); in setFastPropertyValue() 166 return prop.getPropertyValues(); in getPropertyValues() 173 prop.setPropertyValues(props); in setPropertyValues() 190 prop.prepareSet("First", null); in setFirst() 207 prop.prepareSet( in setSecond() 236 return prop.getPropertySetInfo(); in getPropertySetInfo() 294 return prop.getPropertyValues(); in getPropertyValues() [all …]
|
H A D | test_propertysetmixin.cxx | 382 css::beans::Property prop( in testFull() local 386 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("First")), prop.Name); in testFull() 387 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(0), prop.Handle); in testFull() 389 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int16 >(0), prop.Attributes); in testFull() 390 prop = info->getPropertyByName( in testFull() 393 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Second")), prop.Name); in testFull() 394 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(1), prop.Handle); in testFull() 404 prop.Attributes); in testFull() 410 prop = info->getPropertyByName( in testFull() 414 CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(3), prop.Handle); in testFull() [all …]
|
/aoo41x/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() 57 File file = FileUtil.findFile(prop, jar); in run() 67 if (prop != null) { in findOpenofficeHome() 68 validateOpenOfficeInstallation(new File(prop)); in findOpenofficeHome() 69 return prop; in findOpenofficeHome() 75 if (FileUtil.isUrl(prop)) { in findOpenofficeHome() 78 if (!prop.equals(url)) { in findOpenofficeHome() [all …]
|
/aoo41x/main/qadevOOo/tests/java/ifc/ui/ |
H A D | _XUIConfigurationManager.java | 114 log.println("Property" + j + ": " + prop.Name + " " + prop.Value.toString()); in _getSettings() 141 if (prop == null) { in _replaceSettings() 212 if (prop == null) { in _insertSettings() 299 prop[0] = new PropertyValue(); in createMenuBarEntry() 300 prop[0].Name = "CommandURL"; in createMenuBarEntry() 302 prop[1] = new PropertyValue(); in createMenuBarEntry() 303 prop[1].Name = "Label"; in createMenuBarEntry() 304 prop[1].Value = sLabelName; in createMenuBarEntry() 305 prop[2] = new PropertyValue(); in createMenuBarEntry() 306 prop[2].Name = "Type"; in createMenuBarEntry() [all …]
|
/aoo41x/main/wizards/com/sun/star/wizards/ui/event/ |
H A D | UnoDataAware.java | 154 ? DataAwareFields.getFieldValueFor(data, prop, value) in attachTextControl() 155 : new DataAware.PropertyValue(prop, data), in attachTextControl() 183 return attachTextControl(data, prop, unoControl, listener, "Date", field, 0); in attachDateControl() 188 return attachTextControl(data, prop, unoControl, listener, "Time", field, 0); in attachTimeControl() 193 return attachTextControl(data, prop, unoControl, listener, "Value", field, new Double(0)); in attachNumericControl() 201 ? DataAwareFields.getFieldValueFor(data, prop, new Short((short) 0)) in attachCheckBox() 202 : new DataAware.PropertyValue(prop, data), in attachCheckBox() 231 field ? DataAwareFields.getFieldValueFor(data, prop, PropertyNames.EMPTY_STRING) 232 : new DataAware.PropertyValue(prop, data), 241 ? DataAwareFields.getFieldValueFor(data, prop, new short[0]) [all …]
|
/aoo41x/main/scripting/java/org/openoffice/netbeans/modules/office/loader/ |
H A D | ParcelFolder.java | 125 Node.Property prop; in createSheet() local 138 props.put(prop); in createSheet() 141 props.put(prop); in createSheet() 147 props.put(prop); in createSheet() 153 Node.Property prop = in createLocationProperty() local 172 return prop; in createLocationProperty() 178 Node.Property prop = in createLanguageProperty() local 217 return prop; in createLanguageProperty() 266 return prop; in createFilterProperty() 270 Node.Property prop = in createClasspathProperty() local [all …]
|
/aoo41x/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…
|
/aoo41x/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()
|
/aoo41x/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 …]
|
/aoo41x/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()
|
/aoo41x/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() 254 String temp2 = prop.substring( limit ); in printLine() 316 String prop = obj.toString(); in main() local [all …]
|
/aoo41x/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()
|
H A D | _NavigationToolBar.java | 32 protected Object getNewValue(String prop, Object old) { in _TextColor() 34 super.getNewValue(prop, old) ; in _TextColor() 41 protected Object getNewValue(String prop, Object old) { in _TextLineColor() 43 super.getNewValue(prop, old) ; in _TextLineColor()
|
/aoo41x/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 !=()
|
/aoo41x/main/qadevOOo/tests/java/mod/_forms/ |
H A D | GenericModelTest.java | 442 NamedValue prop = null; in createTestEnvironment() local 445 prop = (NamedValue) m_propertiesToSet.get(i); in createTestEnvironment() 447 … log.println("setting property: '"+prop.Name+"' to value '"+prop.Value.toString()+"'"); in createTestEnvironment() 449 m_XPS.setPropertyValue(prop.Name, prop.Value); in createTestEnvironment() 453 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 456 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 459 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment() 462 throw new StatusException("Couldn't set property '" + prop.Name + "': ", e); in createTestEnvironment()
|
/aoo41x/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()
|
/aoo41x/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()
|
/aoo41x/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;
|
/aoo41x/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()
|
/aoo41x/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
|
/aoo41x/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()
|
/aoo41x/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()
|
/aoo41x/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()
|