Home
last modified time | relevance | path

Searched refs:results (Results 1 – 25 of 203) sorted by relevance

123456789

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DSqlTableHelper.java94 while (results.next()) { in collectColumnDescriptions()
151 XResultSet results = null; in readPrimaryKey() local
158 if (results != null) { in readPrimaryKey()
160 while (results.next()) { in readPrimaryKey()
174 CompHelper.disposeComponent(results); in readPrimaryKey()
184 XResultSet results = null; in readForeignKeys() local
191 while (results.next()) { in readForeignKeys()
232 CompHelper.disposeComponent(results); in readForeignKeys()
242 XResultSet results = null; in readIndexes() local
245 if (results != null) { in readIndexes()
[all …]
H A DOIndexColumnContainer.java63 XResultSet results = null; in createObject() local
66 if (results != null) { in createObject()
67 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
68 while (results.next()) { in createObject()
75 CompHelper.disposeComponent(results); in createObject()
79 results = null; in createObject()
81results = index.getTable().getConnection().getMetaData().getColumns(catalog, schema, table, name); in createObject()
82 if (results != null) { in createObject()
83 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
84 while (results.next()) { in createObject()
[all …]
H A DOIndexContainer.java87 XResultSet results = null; in createObject() local
90 if (results != null) { in createObject()
91 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
97 while (results.next()) { in createObject()
115 CompHelper.disposeComponent(results); in createObject()
124 XResultSet results = null; in isPrimaryKeyIndex() local
126 results = metadata.getPrimaryKeys(catalog, schema, table); in isPrimaryKeyIndex()
127 if (results != null) { in isPrimaryKeyIndex()
128 XRow row = UnoRuntime.queryInterface(XRow.class, results); in isPrimaryKeyIndex()
129 if (results.next()) { // there can be only one primary key in isPrimaryKeyIndex()
[all …]
H A DOKeyColumnContainer.java62 …XResultSet results = key.getTable().getConnection().getMetaData().getImportedKeys(catalog, schema,… in createObject() local
64 if (results != null) { in createObject()
65 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
66 while (results.next()) { in createObject()
76results = key.getTable().getConnection().getMetaData().getColumns(catalog, schema, table, name); in createObject()
77 if (results != null) { in createObject()
78 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
79 if (results.next()) { in createObject()
H A DOKeyContainer.java175 XResultSet results = null; in appendObject() local
179results = connection.getMetaData().getImportedKeys(this.table.getPropertyValue(PropertyIds.CATALOG… in appendObject()
182results = connection.getMetaData().getPrimaryKeys(this.table.getPropertyValue(PropertyIds.CATALOGN… in appendObject()
185 if (results != null) { in appendObject()
186 XRow row = UnoRuntime.queryInterface(XRow.class, results); in appendObject()
187 while (results.next()) { in appendObject()
197 CompHelper.disposeComponent(results); in appendObject()
/trunk/main/scripting/source/storage/
H A DScriptURI.cxx158 scripting_impl::Uri results; in parseIt() local
159 results.valid = sal_True; in parseIt()
166 results.valid=sal_False; in parseIt()
167 return results; in parseIt()
175 results.logicalName = m_uri.copy( schemaLen ); in parseIt()
176 return results; in parseIt()
178 results.logicalName = m_uri.copy( schemaLen, len-schemaLen ); in parseIt()
195 results.language = attr.copy( len2 + 1 ); in parseIt()
202 results.location = attr.copy( len2 + 1 ); in parseIt()
209 results.functionName = attr.copy( len2 + 1 ); in parseIt()
[all …]
H A DScriptInfo.cxx312 Sequence< OUString > results; in getFileSetNames() local
318 return results; in getFileSetNames()
320 results.realloc( m_scriptData.filesets.size() ); in getFileSetNames()
327 results[ count++ ] = fileSetName; in getFileSetNames()
329 return results; in getFileSetNames()
336 Sequence< OUString > results; in getFilesInFileSet() local
344 return results; in getFilesInFileSet()
355 return results; in getFilesInFileSet()
357 results.realloc( files.size() ); in getFilesInFileSet()
364 results[ count++ ] = fileName; in getFilesInFileSet()
[all …]
H A DScriptStorage.cxx665 Sequence< ::rtl::OUString > results; in getScriptLogicalNames() local
703 return results; in getScriptLogicalNames()
734 return results; in getImplementations()
745 return results; in getImplementations()
758 return results; in getImplementations()
761 results.realloc( 1 ); in getImplementations()
768 results[ 0 ] = xScriptInfo; in getImplementations()
770 return results; in getImplementations()
784 return results; in getAllImplementations()
804 results[ count++ ] = xScriptInfo; in getAllImplementations()
[all …]
/trunk/test/testuno/source/fvt/uno/sc/chart/
H A DChartGrid.java153 Boolean[][] results = { in testCreateXYGrid() local
196 results[0][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxisGrid"); in testCreateXYGrid()
197 results[0][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasYAxisGrid"); in testCreateXYGrid()
198 results[1][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxisHelpGrid"); in testCreateXYGrid()
199 results[1][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasYAxisHelpGrid"); in testCreateXYGrid()
225 Boolean[][] results = { in testCreateXYZGrid() local
273 results[0][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxisGrid"); in testCreateXYZGrid()
274 results[0][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasYAxisGrid"); in testCreateXYZGrid()
275 results[0][2] = (Boolean) SCUtil.getProperties(xDiagram, "HasZAxisGrid"); in testCreateXYZGrid()
276 results[1][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxisHelpGrid"); in testCreateXYZGrid()
[all …]
H A DChartAxis.java153 Boolean[][] results = { in testCreateXYAxes() local
205 results[0][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxis"); in testCreateXYAxes()
206 results[0][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasYAxis"); in testCreateXYAxes()
207 results[1][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasSecondaryXAxis"); in testCreateXYAxes()
208 results[1][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasSecondaryYAxis"); in testCreateXYAxes()
212 assertArrayEquals("Incorrect chart grids got in ." + fileType + " file.", expected, results); in testCreateXYAxes()
234 Boolean[][] results = { in testCreateXYZAxes() local
275 results[0][0] = (Boolean) SCUtil.getProperties(xDiagram, "HasXAxis"); in testCreateXYZAxes()
276 results[0][1] = (Boolean) SCUtil.getProperties(xDiagram, "HasYAxis"); in testCreateXYZAxes()
277 results[0][2] = (Boolean) SCUtil.getProperties(xDiagram, "HasZAxis"); in testCreateXYZAxes()
[all …]
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlCatalog.java45 XResultSet results = null; in refreshTables() local
48 results = metadata.getTables(Any.VOID, "%", "%", new String[] { "VIEW", "TABLE" }); in refreshTables()
49 XRow row = UnoRuntime.queryInterface(XRow.class, results); in refreshTables()
51 while (results.next()) { in refreshTables()
64 CompHelper.disposeComponent(results); in refreshTables()
70 XResultSet results = null; in refreshViews() local
72 results = metadata.getTables(Any.VOID, "%", "%", new String[] { "VIEW" }); in refreshViews()
73 XRow row = UnoRuntime.queryInterface(XRow.class, results); in refreshViews()
75 while (results.next()) { in refreshViews()
87 CompHelper.disposeComponent(results); in refreshViews()
H A DPostgresqlTables.java66 XResultSet results = null; in createObject() local
68 results = metadata.getTables( in createObject()
70 if (results != null) { in createObject()
71 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
72 if (results.next()) { in createObject()
80 CompHelper.disposeComponent(results); in createObject()
H A DPostgresqlDatabaseMetadata.java93 XResultSet results = impl.getColumns(arg0, arg1, arg2, arg3); in getColumns() local
94 XRow row = UnoRuntime.queryInterface(XRow.class, results); in getColumns()
96 while (results.next()) { in getColumns()
143 return new PostgresqlDatabaseMetaDataResultSet(results, table); in getColumns()
343 XResultSet results = impl.getTypeInfo(); in getTypeInfo() local
344 XRow row = UnoRuntime.queryInterface(XRow.class, results); in getTypeInfo()
346 while (results.next()) { in getTypeInfo()
402 return new PostgresqlDatabaseMetaDataResultSet(results, table); in getTypeInfo()
H A DPostgresqlViews.java76 XResultSet results = null; in createObject() local
88 results = statement.executeQuery(); in createObject()
89 if (results.next()) { in createObject()
90 XRow row = UnoRuntime.queryInterface(XRow.class, results); in createObject()
97 CompHelper.disposeComponent(results); in createObject()
/trunk/main/offapi/com/sun/star/sheet/
H A DDataPilotFieldReferenceType.idl40 /** This type means, that the results in the data fields are displayed like they are.
47 Totals outside of the base field are shown as empty results.
71 <p>Empty results are handled as for named items (see above).<p>
84 Totals outside of the base field are shown as empty results.
86 … <p>Division by zero results in an error. Otherwise, empty results are shown as 0. Results for
99 Totals outside of the base field are shown as empty results.
112 calculating the sum, and results for that item are shown as error, to ensure consistency
117 <p>Totals outside of the base field are shown as empty results.</p>
131 <p>Division by zero results in an error.</p>
133 <p>Otherwise, empty results remain empty.</p>
[all …]
H A DXDDELinkResults.idl37 /** provides access to the DDE link results.
47 /** returns the DDE link results.
50 the DDE link results. The outer sequence contains the value rows.
57 /** sets the DDE link results.
60 the DDE link results. The outer sequence contains the value rows.
62 If the outer sequence is empty, the existing DDE link results are
/trunk/main/scripting/workben/installer/
H A DInstUtil.java134 Properties results = new Properties(); in getNetbeansLocation() local
164 results.put("NetBeans 3.4", f.getPath()+File.separator); in getNetbeansLocation()
179 return results; in getNetbeansLocation()
192 Properties results = new Properties(); in getJeditLocation() local
208 results.put("jEdit "+jeditDetails[1], jeditDetails[0]); in getJeditLocation()
216 return results; in getJeditLocation()
343 Properties results = new Properties(); in getOfficeVersions() local
391 results.put( parts[0].trim(), windowsPath ); in getOfficeVersions()
395 results.put(parts[0].trim(), URLDecoder.decode(url.getPath())); in getOfficeVersions()
409 results.put(parts[0].trim(), parts[1].trim()); in getOfficeVersions()
[all …]
/trunk/main/migrationanalysis/src/wizard/
H A Dwizard.ulf29 en-US = "Run the analysis and view the results"
32 en-US = "View results"
41 en-US = "The analysis has been completed successfully.<CR><CR>Click on OK to see the results now."
113 en-US = "Results Directory has not been specified.<CR><CR>Please enter a results directory."
149 …select which documents you want to analyze as well as where you want the results of the analysis t…
227 en-US = "Choose where and how to save the results"
230 en-US = "File name for the results spreadsheet"
239 en-US = "If results already exist under the same name and location:"
248 en-US = "Append the new results to the existing results"
308 en-US = "Choose where and how to save the results"
[all …]
/trunk/main/scripting/source/runtimemgr/
H A DStorageBridge.cxx97 Sequence < ::rtl::OUString > results; in getScriptLogicalNames() local
100 results = m_xScriptInfoAccess->getScriptLogicalNames(); in getScriptLogicalNames()
107 return results; in getScriptLogicalNames()
116 Sequence < Reference< storage::XScriptInfo > > results; in getImplementations() local
119 results = m_xScriptInfoAccess->getImplementations( queryURI ); in getImplementations()
126 return results; in getImplementations()
/trunk/test/testuno/source/fvt/uno/sc/cell/
H A DCellProtected.java141 CellProtection[] results = new CellProtection[cellNum]; in testCellProtected() local
165 results[i] = (CellProtection) SCUtil.getCellProperties(cells[i], inputType); in testCellProtected()
171 …ell protection (IsLocked) value got in ." + fileType + " file.", expected[0], results[i].IsLocked); in testCellProtected()
172 …ion(IsFormulaHidden) value got in ." + fileType + " file.", expected[1], results[i].IsFormulaHidde… in testCellProtected()
173 …cell protection(IsHidden) value got in ." + fileType + " file.", expected[2], results[i].IsHidden); in testCellProtected()
174 …ction(IsPrintHidden) value got in ." + fileType + " file.", expected[3], results[i].IsPrintHidden); in testCellProtected()
/trunk/main/offapi/com/sun/star/sdbc/
H A DXMultipleResults.idl39 /** is used for inspecting multiple results produced by the execution of a
47 return multiple results or (2) you are dynamically executing an
54 let you navigate through multiple results.
79 If the result is a ResultSet or there are no more results, -1
95 There are no more results when <code>(!getMoreResults() &amp;amp;&amp;amp;
H A DXStatement.idl40 /** is used for executing a static SQL statement and obtaining the results
83 /** executes a SQL statement that may return multiple results.
90 return multiple results or (2) you are dynamically executing an
91 unknown SQL string. The navigation through multiple results is covered by
110 …> if the next result is a ResultSet; <FALSE/> if it is an update count or there are no more results
/trunk/main/xmerge/source/palmtests/qa-wrapper/env/
H A Dmaster.env37 # Results are stored in a new directory at ${RESULTSBASE}/results-${RUNNAME}
39 RESULTSBASE=/export/home/test/qadir/qa-wrapper/results
81 PDB_BASELINE_DIR=<qa-wrapperdir>/results/baseline/pdb-base
86 XML_BASELINE_DIR=<qa-wrapperdir>/results/baseline/xml-base
/trunk/main/offapi/com/sun/star/ucb/
H A DContentAction.idl92 <tr><td>R1</td><td>E1(C: A->B) results in C sending an EXCHANGED
93 ContentEvent, which then results in the following: All
97 <tr><td>R2</td><td>E2(C) results in C sending a DELETED ContentEvent,
98 which then results in the following: All folders F that
102 <tr><td>R3</td><td>E3(F, A) results in F sending an INSERTED event.</td></tr>
/trunk/main/scripting/java/com/sun/star/script/framework/container/
H A DParcel.java106 String[] results = new String[0]; in getElementNames() local
110 results = new String[ scripts.length ]; in getElementNames()
113 results[ index ] = scripts[ index ].getLanguageName(); in getElementNames()
116 return results; in getElementNames()

Completed in 74 milliseconds

123456789