Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/trunk/main/toolkit/source/layout/core/
H A Dhelper.cxx405 if ( attributes & awt::WindowAttribute::SHOW ) in implCreateWidget()
450 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
459 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
468 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
477 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
487 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
496 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
516 WinBits nStyle = ImplGetWinBits( attributes, 0 ); in layoutCreateWindow()
605 attributes ^= awt::WindowAttribute::SHOW; in layoutCreateWindow()
606 WinBits nStyle = ImplGetWinBits( attributes, 0 ); in layoutCreateWindow()
[all …]
H A Dimport.cxx55 uno::Reference <xml::input::XAttributes> const &attributes, in WidgetElement()
59 : ElementBase( nUid, rName, attributes, pParent, pImport ) in WidgetElement()
64 propsFromAttributes( attributes, aProps, pImport->XMLNS_LAYOUT_UID ); in WidgetElement()
140 uno::Reference <xml::input::XAttributes> const &attributes ) in startChildElement()
144 WidgetElement *pChild = new WidgetElement ( nUid, name, attributes, this, mpImport ); in startChildElement()
153 propsFromAttributes( attributes, aProps, mpImport->XMLNS_CONTAINER_UID ); in startChildElement()
/trunk/main/shell/source/all/ooofilereader/
H A Dautostyletag.cxx30 CAutoStyleTag::CAutoStyleTag( const XmlTagAttributes_t& attributes ): in CAutoStyleTag() argument
33 addAttributes( attributes); in CAutoStyleTag()
48 void CAutoStyleTag::addAttributes(const XmlTagAttributes_t& attributes) in addAttributes() argument
55 XmlTagAttributes_t::const_iterator iter = attributes.find(CONTENT_STYLE_STYLE_NAME); in addAttributes()
57 if ( iter != attributes.end()) in addAttributes()
64 XmlTagAttributes_t::const_iterator iter_lan = attributes.find(CONTENT_STYLE_PROPERTIES_LANGUAGE); in addAttributes()
65 XmlTagAttributes_t::const_iterator iter_con = attributes.find(CONTENT_STYLE_PROPERTIES_COUNTRY); in addAttributes()
66 …XmlTagAttributes_t::const_iterator iter_lan_asain = attributes.find(CONTENT_STYLE_PROPERTIES_LANGU… in addAttributes()
67 …XmlTagAttributes_t::const_iterator iter_con_asain = attributes.find(CONTENT_STYLE_PROPERTIES_COUNT… in addAttributes()
71 if ( ( iter_lan!= attributes.end() ) && ( iter_con != attributes.end() ) ) in addAttributes()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DFormat.java82 protected int attributes = 0; field in Format
98 public Format(int attributes, int fontSize, String fontName) { in Format() argument
100 this.attributes = attributes; in Format()
117 attributes = fmt.attributes; in Format()
137 attributes = 0; in clearFormatting()
155 attributes |= flags; in setAttribute()
157 attributes &= ~flags; in setAttribute()
173 return (!((attributes & attribute) == 0)); in getAttribute()
413 if (rhs.attributes!= attributes) in isDefault()
445 if (rhs.attributes!= attributes) in isSubset()
/trunk/main/offapi/com/sun/star/accessibility/
H A DXAccessibleTextAttributes.idl36 /** Implement this interface to give access to the attributes of a text.
45 attributes that are associated for the text. To prevent the method
46 from returning possibly large sets of attributes that the caller
47 is not interested in the caller can provide a list of attributes
51 This string sequence defines the set of attributes that the
52 caller is interested in. When there are requested attributes
58 Returns the requested attributes of the text. Each attribute
67 <p>Returns a set of character attributes that are associated for
70 these attributes the caller can provide a list of attributes
78 This string sequence defines the set of attributes that the
[all …]
H A DXAccessibleEditableText.idl187 /** Replaces the attributes of a text range by the given set of
188 attributes.
190 <p>Sets the attributes for the text between and including the two
191 given indices to those given. The old attributes of this text
192 portion are replaced by the new list of attributes.</p>
198 Start index of the text whose attributes are modified.
202 Start index of the text whose attributes are modified.
206 Set of attributes that replaces the old list of attributes of
H A DXAccessibleText.idl60 The interface provides access to the text's content, attributes, and
152 large sets of attributes that the caller is not interested in the
153 caller has to provide a list of attributes that he wants to be
157 The index of the character for which to return its attributes.
161 This string sequence defines the set of attributes that the
164 there are requested attributes that are not defined for the
168 attributes. This is useful in two cases: a) Simply as a way to
170 b) when the caller does not know what attributes the called
176 <arg>aRequestedAttributes</arg> argument) requested attributes
180 all attributes that are both members of the sequence of
[all …]
/trunk/main/solenv/bin/modules/installer/windows/
H A Dcomponent.pm189 my $attributes;
191 $attributes = 2;
221 $attributes = 8; # font files will be deinstalled if the ref count is 0
226 $attributes = 0; # Assembly files cannot run from source
236 …'64BITPRODUCT'} ) && ( $allvariables->{'64BITPRODUCT'} == 1 )) { $attributes = $attributes + 256; }
238 return $attributes
251 my $attributes;
253 $attributes = 4;
256 …'64BITPRODUCT'} ) && ( $allvariables->{'64BITPRODUCT'} == 1 )) { $attributes = $attributes + 256; }
258 …s($installer::globals::dontdeletecomponents{$componentname}) ) { $attributes = $attributes + 16; }
[all …]
/trunk/main/offapi/com/sun/star/xml/sax/
H A DXFastAttributeList.idl48 /** a container for the attributes of an xml element.
50 <br>Attributes are separated into known attributes and unknown attributes.
67 attributes local name from the <type>XFastTokenHandler</type> and
76 /** retrieves the token of an attributes value.<br>
84 attributes local name from the <type>XFastTokenHandler</type> and
98 /**retrieves the token of an attributes value.<br>
106 attributes local name from the <type>XFastTokenHandler</type> and
121 /** retrieves the value of an attributes.<br>
129 attributes local name from the <type>XFastTokenHandler</type> and
143 /** retrieves the value of an attributes.<br>
[all …]
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/
H A DXMLPackageDescription.java77 … public void startElement(String uri, String localName, String qName, Attributes attributes) { in startElement() argument
82 for (int i = 0; i < attributes.getLength(); i++) { in startElement()
83 entity.attributes.put(attributes.getQName(i), attributes.getValue(i)); in startElement()
112 private Hashtable attributes; /* XML element attributes */ field in XMLPackageDescription
118 attributes = new Hashtable(); in XMLPackageDescription()
133 return (String) attributes.get(key); in getAttribute()
160 String self = (String) attributes.get("name"); in findPackage()
183 String self = (String) attributes.get("name"); in adjust()
271 for (Enumeration e = attributes.keys() ; e.hasMoreElements() ;) { in dump()
273 String value = (String) attributes.get(key); in dump()
/trunk/main/unodevtools/source/skeletonmaker/
H A Dskeletoncommon.cxx132 bool containsAttribute(AttributeInfo& attributes, OString const & attrname) in containsAttribute() argument
134 for ( AttributeInfo::const_iterator i(attributes.begin()); in containsAttribute()
135 i != attributes.end(); ++i ) { in containsAttribute()
146 AttributeInfo& attributes, in checkAttributes() argument
167 checkAttributes(manager, supertype, attributes, propinterfaces); in checkAttributes()
175 if ( !containsAttribute(attributes, fieldName) ) { in checkAttributes()
179 attributes.push_back(AttributeInfo::value_type( in checkAttributes()
334 AttributeInfo& attributes, in checkPropertyHelper() argument
368 if ( !(attributes.empty() || propinterfaces.empty()) ) { in checkPropertyHelper()
377 checkAttributes(manager, reader, attributes, propinterfaces); in checkPropertyHelper()
[all …]
H A Djavacompskeleton.cxx203 sal_uInt16 attributes[9] = { in checkAttribute() local
216 if (attribute & attributes[i]) { in checkAttribute()
221 switch (attributes[i]) in checkAttribute()
743 const AttributeInfo& attributes, in generateClassDefinition() argument
809 } else if (!attributes.empty()) { in generateClassDefinition()
811 attributes.begin(); in generateClassDefinition()
813 while (iter != attributes.end()) { in generateClassDefinition()
865 AttributeInfo attributes; in generateSkeleton() local
931 options, manager, services, interfaces, attributes, propinterfaces); in generateSkeleton()
964 interfaces, properties, attributes, propertyhelper, in generateSkeleton()
H A Dcppcompskeleton.cxx635 AttributeInfo const & attributes, in generateClassDefinition() argument
750 if (!supportxcomponent && !attributes.empty()) in generateClassDefinition()
770 generateMemberDeclaration(o, options, manager, attributes); in generateClassDefinition()
848 generateMemberInitialization(o, options, manager, attributes); in generateClassDefinition()
981 AttributeInfo attributes; in generateSkeleton() local
1008 options, manager, services, interfaces, attributes, propinterfaces); in generateSkeleton()
1061 attributes, propinterfaces, propertyhelper, supportxcomponent)); in generateSkeleton()
1114 AttributeInfo attributes; in generateCalcAddin() local
1159 options, manager, services, interfaces, attributes, propinterfaces); in generateCalcAddin()
1231 attributes, propinterfaces, propertyhelper, supportxcomponent)); in generateCalcAddin()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DStyleCatalog.java345 NamedNodeMap attributes = node.getAttributes(); in getClass() local
346 if (attributes != null) { in getClass()
347 int len = attributes.getLength(); in getClass()
349 Node attr = attributes.item(i); in getClass()
373 NamedNodeMap attributes = node.getAttributes(); in getFamilyName() local
374 if (attributes != null) { in getFamilyName()
375 int len = attributes.getLength(); in getFamilyName()
377 Node attr = attributes.item(i); in getFamilyName()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/palm/
H A DRecord.java48 private byte attributes = 0; field in Record
88 attributes = attrs; in Record()
128 return attributes; in getAttributes()
144 out.writeByte(attributes); in write()
162 attributes = in.readByte(); in read()
191 if (rec.getAttributes() != attributes) { in equals()
/trunk/main/stoc/source/tdmanager/
H A Dtdmgr_check.cxx80 OUString getPropertyFlagsAsString( sal_Int16 attributes ) in getPropertyFlagsAsString() argument
83 if ((attributes & beans::PropertyAttribute::MAYBEVOID) != 0) in getPropertyFlagsAsString()
85 if ((attributes & beans::PropertyAttribute::BOUND) != 0) in getPropertyFlagsAsString()
87 if ((attributes & beans::PropertyAttribute::CONSTRAINED) != 0) in getPropertyFlagsAsString()
89 if ((attributes & beans::PropertyAttribute::TRANSIENT) != 0) in getPropertyFlagsAsString()
91 if ((attributes & beans::PropertyAttribute::READONLY) != 0) in getPropertyFlagsAsString()
93 if ((attributes & beans::PropertyAttribute::MAYBEAMBIGUOUS) != 0) in getPropertyFlagsAsString()
95 if ((attributes & beans::PropertyAttribute::MAYBEDEFAULT) != 0) in getPropertyFlagsAsString()
97 if ((attributes & beans::PropertyAttribute::REMOVEABLE) != 0) in getPropertyFlagsAsString()
99 if ((attributes & beans::PropertyAttribute::OPTIONAL) != 0) in getPropertyFlagsAsString()
/trunk/main/vcl/aqua/source/a11y/
H A Daqua11ytextattributeswrapper.mm131 +(void)applyAttributesFrom:(Sequence < PropertyValue >)attributes toString:(NSMutableAttributedStri…
152 // add attributes to string
153 for ( int attrIndex = 0; attrIndex < attributes.getLength(); attrIndex++ ) {
154 PropertyValue property = attributes [ attrIndex ];
228 // add default attributes for whole string
232 // add attributes for attribute run(s)
237 // add run attributes
238 …Sequence < PropertyValue > attributes = [ wrapper accessibleTextAttributes ] -> getRunAttributes (…
239 …[ AquaA11yTextAttributesWrapper applyAttributesFrom: attributes toString: string forRange: rangeFo…
/trunk/main/offapi/com/sun/star/configuration/backend/
H A DXSchemaHandler.idl177 specifies the attributes of the template.
193 <li>if the attributes are not valid for a group</li>
220 specifies the attributes of the template.
240 <li>if the attributes are not valid for a set</li>
291 specifies the attributes of the node.
305 <li>if the attributes are not valid for a group</li>
331 specifies the attributes of the node.
350 <li>if the attributes are not valid for a set</li>
398 specifies the attributes of the new property.
413 <li>if the attributes are not valid for a property</li>
[all …]
H A DXUpdateHandler.idl124 <p> Only attributes which are selected in aAttributeMask
129 specifies which attributes should be changed for the node.
148 <li>if the attributes or mask are not valid for the node</li>
197 <li>if the attributes are not valid for the node</li>
246 <li>if the attributes are not valid for the node</li>
323 specifies new attributes of the property.
356 <li>if the attributes are not valid for the property</li>
544 specifies the attributes of the new property.
566 <li>if the attributes are not valid for the property</li>
594 specifies the attributes of the new property.
[all …]
H A DXLayerHandler.idl114 <p> The attributes are combined cumulatively with those
130 <li>if the attributes are not valid for the node</li>
179 <li>if the attributes are not valid for the node</li>
229 <li>if the attributes are not valid for the node</li>
306 specifies the new attributes of the property.
311 <p> The attributes are combined cumulatively with those
346 <li>if the attributes are not valid for the property</li>
468 specifies the attributes of the new property.
488 <li><li>if the attributes are not valid for the property</li>
515 specifies the attributes of the new property.
[all …]
/trunk/main/solenv/bin/modules/installer/patch/
H A DReleasesList.pm145 my $attributes = $node->{'__attributes__'};
146 if ( ! defined $attributes)
152 return $attributes->{$attribute_name};
217 my ($data, $expat, $element_name, @attributes) = @_;
220 my $node = {'__attributes__' => {@attributes}};
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/
H A DXMLTools.java67 private Vector attributes = new Vector() ; field in XMLTools.AttributeList
103 attributes.add(attr) ; in add()
122 attributes.clear() ; in clear()
131 log.println("getLength() called -> " + attributes.size()) ; in getLength()
132 return (short) attributes.size() ; in getLength()
136 String name = ((Attribute) attributes.get(idx)).Name ; in getNameByIndex()
144 String type = ((Attribute) attributes.get(idx)).Type ; in getTypeByIndex()
159 String value = ((Attribute) attributes.get(idx)).Value ; in getValueByIndex()
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DPropertySet.java129 protected void registerProperty(String name, int handle, Type type, short attributes, Object id) in registerProperty() argument
131 Property p= new Property(name, handle, type, attributes); in registerProperty()
147 protected void registerProperty(String name, Type type, short attributes, Object id) in registerProperty() argument
149 Property p= new Property(name, lastHandle++, type, attributes); in registerProperty()
166 protected void registerProperty(String propertyName, String memberName, short attributes) in registerProperty() argument
181 Property p= new Property(propertyName, lastHandle++, t, attributes); in registerProperty()
195 protected void registerProperty(String propertyName, short attributes) in registerProperty() argument
197 registerProperty(propertyName, propertyName, attributes); in registerProperty()
/trunk/main/offapi/com/sun/star/xml/dom/
H A DXNode.idl53 <p>The attributes nodeName, nodeValue and attributes are included as a mechanism to get at
55 there is no obvious mapping of these attributes for a specific nodeType (e.g., nodeValue
56 for an Element or attributes for a Comment ), this returns null. Note that the specialized
60 <p>The values of nodeName, nodeValue, and attributes vary according to the node type as follows:
62 <tr><th>Interface </th><th>nodeName </th><th>nodeValue </th><th>attributes</th></tr>
111 A NamedNodeMap containing the attributes of this node (if it is an Element)
186 Returns whether this node (if it is an element) has any attributes.
/trunk/main/desktop/source/deployment/registry/executable/
H A Ddp_executable.cxx250 sal_uInt64 attributes = 0; in processPackage_() local
252 if (getFileAttributes(attributes)) in processPackage_()
255 attributes |= osl_File_Attribute_OwnExe; in processPackage_()
257 attributes |= (osl_File_Attribute_OwnExe | osl_File_Attribute_GrpExe in processPackage_()
267 dp_misc::expandUnoRcUrl(m_url), attributes); in processPackage_()

Completed in 126 milliseconds

12345678910>>...16