Home
last modified time | relevance | path

Searched refs:enumeration (Results 1 – 25 of 149) sorted by relevance

123456

/aoo4110/main/dbaccess/qa/complex/dbaccess/
H A DBeamer.java120 XEnumeration enumeration = evtBc.createEnumeration(); in testBeamer() local
122 while (enumeration.hasMoreElements()) in testBeamer()
124 enumeration.nextElement(); in testBeamer()
132 enumeration = evtBc.createEnumeration(); in testBeamer()
134 while (enumeration.hasMoreElements()) in testBeamer()
136 enumeration.nextElement(); in testBeamer()
/aoo4110/test/testuno/source/fvt/uno/sw/field/
H A DCheckDateTimeField.java146 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in createTimeFiled() local
147 while (enumeration.hasMoreElements()) { in createTimeFiled()
148 Object field = enumeration.nextElement(); in createTimeFiled()
214 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in createDateFiled() local
215 while (enumeration.hasMoreElements()) { in createDateFiled()
216 Object field = enumeration.nextElement(); in createDateFiled()
H A DSubjectField.java188 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in isContainSubjectField() local
189 while (enumeration.hasMoreElements()) { in isContainSubjectField()
190 Object field = enumeration.nextElement(); in isContainSubjectField()
H A DTitleField.java189 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in isContainTitleField() local
190 while (enumeration.hasMoreElements()) { in isContainTitleField()
191 Object field = enumeration.nextElement(); in isContainTitleField()
H A DPageCountField.java179 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in isContainPageCountField() local
180 while (enumeration.hasMoreElements()) { in isContainPageCountField()
181 Object field = enumeration.nextElement(); in isContainPageCountField()
H A DPageNumberField.java184 XEnumeration enumeration = xEnumeratedFields.createEnumeration(); in isContainPageNumberField() local
185 while (enumeration.hasMoreElements()) { in isContainPageNumberField()
186 Object field = enumeration.nextElement(); in isContainPageNumberField()
/aoo4110/main/udkapi/com/sun/star/reflection/
H A DXTypeDescriptionEnumerationAccess.idl59 /** Creates an enumeration for type descriptions.
61 <p>An enumeration is always created for an UNOIDL module. The
62 enumeration contents can be restricted by specifying type classes.
74 restricts the contents of the enumeration. It will only contain
76 empty sequence specifies that the enumeration shall contain all
101 an enumeration of type descriptions.
103 <p>The enumeration returns implementations of
H A DXTypeDescriptionEnumeration.idl43 /** Defines an enumeration for type descriptions.
49 /** Returns the next element of the enumeration.
52 the next element of this enumeration.
/aoo4110/main/jurt/com/sun/star/comp/servicemanager/
H A DServiceManager.java749 java.util.Enumeration enumeration = null; field in ServiceManager.ServiceEnumerationImpl
764 enumeration = enumer; in ServiceEnumerationImpl()
776 return enumeration != null && enumeration.hasMoreElements(); in hasMoreElements()
792 if (enumeration == null) in nextElement()
796 return enumeration.nextElement(); in nextElement()
/aoo4110/main/offapi/com/sun/star/sheet/
H A DDataPilotFieldGroupEnumeration.idl37 /** represents an enumeration of members in a DataPilot field group.
46 /** provides methods to access the group members in the enumeration.
48 <p>The elements of the enumeration are instances of
H A DDataPilotFieldGroupsEnumeration.idl37 /** represents an enumeration of member groups in a DataPilot field.
46 /** provides methods to access the field groups in the enumeration.
48 <p>The elements of the enumeration are instances of
H A DCellAnnotationsEnumeration.idl37 /** represents an enumeration of cell annotations in a spreadsheet document.
45 /** provides methods to access the cell annotations in the enumeration.
H A DCellFormatRangesEnumeration.idl37 /** represents an enumeration of equal-formatted cell ranges.
45 /** provides methods to access the cell ranges in the enumeration.
H A DCellsEnumeration.idl37 /** represents an enumeration of spreadsheet cells.
45 /** provides methods to access the cells in the enumeration.
H A DDDELinksEnumeration.idl37 /** represents an enumeration of DDE links.
45 /** provides methods to access the DDE links in the enumeration.
H A DDataPilotFieldsEnumeration.idl37 /** represents an enumeration of data pilot fields.
45 /** provides methods to access the data pilot fields in the enumeration.
H A DDataPilotItemsEnumeration.idl37 /** represents an enumeration of data pilot items.
45 /** provides methods to access the data pilot items in the enumeration.
H A DDatabaseRangesEnumeration.idl37 /** represents an enumeration of database ranges.
45 /** provides methods to access the database ranges in the enumeration.
H A DScenariosEnumeration.idl37 /** represents an enumeration of scenarios.
45 /** provides methods to access the scenarios in the enumeration.
/aoo4110/main/offapi/com/sun/star/office/
H A DXAnnotationEnumeration.idl40 /** An enumeration for a set of annotations.
46 /** tests whether this enumeration contains more elements.
53 the next element of this enumeration.
/aoo4110/main/udkapi/com/sun/star/container/
H A DXContentEnumerationAccess.idl58 a new enumeration object for the contents of the specified service type.
69 creates an enumeration for all the service names which are
70 listed here. For all others it creates no enumeration. </p>
H A DXEnumeration.idl64 <p> If the object changed, the behavior of the enumeration is
71 /** tests whether this enumeration contains more elements.
78 the next element of this enumeration.
H A DXComponentEnumerationAccess.idl41 /** provides a factory for a typified enumeration through
48 /** creates a new instance of enumeration through components.
/aoo4110/main/oox/source/export/
H A Ddrawingml.cxx1097 Reference< XEnumeration > enumeration( access->createEnumeration() ); in WriteParagraph() local
1098 if( !enumeration.is() ) in WriteParagraph()
1104 while( enumeration->hasMoreElements() ) { in WriteParagraph()
1106 Any any ( enumeration->nextElement() ); in WriteParagraph()
1185 Reference< XEnumeration > enumeration( access->createEnumeration() ); in WriteText() local
1186 if( !enumeration.is() ) in WriteText()
1189 while( enumeration->hasMoreElements() ) { in WriteText()
1191 Any any ( enumeration->nextElement() ); in WriteText()
/aoo4110/main/udkapi/com/sun/star/script/
H A DConverter.idl71 <li>9: only converts if the number is one of the enumeration type values. Normally you need
73 <li>10: only converts if it is the same enumeration type.</li>
74 …<li>11: only converts if the string contains the name of an enumeration type value. Normally you n…

Completed in 79 milliseconds

123456