Home
last modified time | relevance | path

Searched refs:names (Results 76 – 100 of 486) sorted by relevance

12345678910>>...20

/trunk/main/odk/examples/DevelopersGuide/Components/CppComponent/
H A Dservice2_impl.cxx50 Sequence<OUString> names(1); in getSupportedServiceNames_MyService2Impl() local
51 names[0] = OUString(RTL_CONSTASCII_USTRINGPARAM("my_module.MyService2")); in getSupportedServiceNames_MyService2Impl()
52 return names; in getSupportedServiceNames_MyService2Impl()
H A Dservice1_impl.cxx43 Sequence< OUString > names(1); in getSupportedServiceNames_MyService1Impl() local
44 names[0] = OUString(RTL_CONSTASCII_USTRINGPARAM("my_module.MyService1")); in getSupportedServiceNames_MyService1Impl()
45 return names; in getSupportedServiceNames_MyService1Impl()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/
H A DXMLContentImporter.java174 String[] names = xSheets.getElementNames() ; in createTestEnvironment() local
175 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
176 log.println(" " + names[i]) ; in createTestEnvironment()
H A DXMLImporter.java171 String[] names = sheets.getElementNames() ; in createTestEnvironment() local
172 for (int i = 0; i < names.length; i++) { in createTestEnvironment()
173 log.println(" " + names[i]) ; in createTestEnvironment()
H A DScDatabaseRangeObj.java142 String[] names = sheets.getElementNames(); in createTestEnvironment() local
147 Object sheet = sheets.getByName(names[0]); in createTestEnvironment()
221 Object sheet = sheets.getByName(names[0]); in createTestEnvironment()
/trunk/main/udkapi/com/sun/star/lang/
H A DXServiceInfo.idl59 /** Provides the supported service names of the implementation, including
60 also indirect service names.
63 sequence of service names that are supported
/trunk/main/udkapi/com/sun/star/container/
H A DXContentEnumerationAccess.idl44 <p>This example prints the names of all tables: </p>
66 all names of services of which instances exist in this object.
69 creates an enumeration for all the service names which are
/trunk/main/offapi/com/sun/star/sdb/tools/
H A DXTableName.idl44 /** allows to manipulate table names.
46 <p>When, in a database application, dealing with table names, there's many degrees
56 names.</p>
115 data information in that you can specify to not use catalog and or schema names
/trunk/main/ucb/source/ucp/expand/
H A Ducpexpand.cxx143 OUString names [] = { in supportedServices() local
147 return uno::Sequence< OUString >( names, ARLEN(names) ); in supportedServices()
/trunk/main/offapi/com/sun/star/configuration/backend/
H A DLocalHierarchyBrowser.idl51 Components can be retrieved either as component names or as
70 <dd><ul><li>if <TRUE/> components will be returned as component names,</li>
73 retrieve names when browsing schemas and URLs when
/trunk/main/offapi/com/sun/star/ui/dialogs/
H A DXControlInformation.idl51 a sequence with the names of the supported controls.
59 The name of the control. Common control names are for
73 The name of the control. Common control names are for
/trunk/main/offapi/com/sun/star/xml/sax/
H A DXFastTokenHandler.idl39 It should be able to translate all xml names (element local names,
40 attribute local names and constant attribute values) to integer tokens.
/trunk/main/offapi/com/sun/star/sheet/
H A DXDataPilotFieldGrouping.idl67 a sequence containing the names of the items (members) which will
68 be part of the new group. Must be names of items contained in the
89 created). There must not be any other grouping (by member names or by
155 or if this field is already grouped by member names or numeric
/trunk/main/sc/source/ui/vba/
H A Dvbaglobals.cxx251 rtl::OUString names[] = { in getAvailableServiceNames() local
260 sal_Int32 nExcelServices = ( sizeof( names )/ sizeof( names[0] ) ); in getAvailableServiceNames()
264 serviceNames[ startIndex + index ] = names[ index ]; in getAvailableServiceNames()
/trunk/main/offapi/com/sun/star/report/
H A DXReportComponent.idl140 /** is used for subreports and contains the names of columns of the parent report.
155 /**is used for subreports and contains the names of the columns of the subreport
157 <p>Entries in this sequence can either denote column names in the sub report,
158 or parameter names.<br/>
/trunk/main/dbaccess/qa/complex/dbaccess/
H A DCopyTableWizard.java149 final String[] names = tables.getElementNames(); in copyTable() local
150 for (int i = 0; i < names.length; i++) in copyTable()
152 copyTable(names[i], sourceConnection, destConnection); in copyTable()
/trunk/main/offapi/com/sun/star/sdbc/
H A DResultSet.idl76 Column names used as input to the findColumn method are case
79 designed to be used when column names are used in the SQL
81 is best to use column numbers. If column names are used, there is
195 cursor names must be unique within a connection.
/trunk/main/wizards/com/sun/star/wizards/ui/
H A DUnoDialog2.java349 private void setControlPropertiesDebug(Object model, String[] names, Object[] values) in setControlPropertiesDebug() argument
351 for (int i = 0; i < names.length; i++) in setControlPropertiesDebug()
353 System.out.println(" Settings: " + names[i]); in setControlPropertiesDebug()
354 Helper.setUnoPropertyValue(model, names[i], values[i]); in setControlPropertiesDebug()
/trunk/main/configmgr/source/
H A Dconfigurationprovider.cxx293 css::uno::Sequence< rtl::OUString > names(2); in getAvailableServiceNames() local
294 names[0] = rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(accessServiceName)); in getAvailableServiceNames()
295 names[1] = rtl::OUString( in getAvailableServiceNames()
297 return names; in getAvailableServiceNames()
/trunk/main/udkapi/com/sun/star/beans/
H A DXPropertyState.idl84 by their names.
87 given property names. </p>
90 contains the sequence of property names.
/trunk/main/offapi/com/sun/star/chart2/
H A DXFastPropertyState.idl80 by their names.
83 given property names. </p>
86 contains the sequence of property names.
/trunk/main/scripting/java/com/sun/star/script/framework/container/
H A DParcelContainer.java362 String[] names = new String[ theParcels.length ]; in getElementNames() local
363 for ( int count = 0; count < names.length; count++ ) in getElementNames()
365 names[count] = theParcels[ count ].getName(); in getElementNames()
367 return names; in getElementNames()
/trunk/main/offapi/com/sun/star/chart2/data/
H A DXDatabaseDataProvider.idl78 /** is used for subreports and contains the names of columns of the parent report.
89 /**is used for subreports and contains the names of the columns of the subreport
91 <p>Entries in this sequence can either denote column names in the sub report,
92 or parameter names.<br/>
/trunk/main/reportdesign/source/inc/
H A Dstringconstants.hrc36 //= service names
52 //= property names
281 //= service names
/trunk/main/cli_ure/
H A Dreadme.txt50 The "x" and "y" in the names of the policy assemblies are to be replaces by version numbers. At the
51 time of writing the real names are:
67 and policy assemblies. See step 1 for the names of those assemblies. Take down the version number a…
74 The first part of the names represent the assemly which they are referring to. So obviously
217 The names are exactly the same as in version.txt. The script knows how to increase the version

Completed in 82 milliseconds

12345678910>>...20