| /AOO41X/main/qadevOOo/tests/java/ifc/sheet/ |
| H A D | _XSheetConditionalEntries.java | 102 PropertyValue[] con = new PropertyValue[5]; in Conditions() local 107 con[0] = new PropertyValue(); in Conditions() 108 con[0].Name = "StyleName"; in Conditions() 109 con[0].Value = "Result2"; in Conditions() 110 con[1] = new PropertyValue(); in Conditions() 111 con[1].Name = "Formula1"; in Conditions() 112 con[1].Value = "$Sheet1.$B$"+nr; in Conditions() 113 con[2] = new PropertyValue(); in Conditions() 114 con[2].Name = "Formula2"; in Conditions() 115 con[2].Value = ""; in Conditions() [all …]
|
| /AOO41X/main/qadevOOo/tests/java/mod/_sc/ |
| H A D | ScTableConditionalFormat.java | 180 PropertyValue[] con = new PropertyValue[5]; in Conditions() local 185 con[0] = new PropertyValue(); in Conditions() 186 con[0].Name = "StyleName"; in Conditions() 187 con[0].Value = "Result2"; in Conditions() 188 con[1] = new PropertyValue(); in Conditions() 189 con[1].Name = "Formula1"; in Conditions() 190 con[1].Value = "$Sheet1.$B$"+nr; in Conditions() 191 con[2] = new PropertyValue(); in Conditions() 192 con[2].Name = "Formula2"; in Conditions() 193 con[2].Value = ""; in Conditions() [all …]
|
| H A D | ScTableConditionalEntry.java | 202 PropertyValue[] con = new PropertyValue[5]; in Conditions() local 207 con[0] = new PropertyValue(); in Conditions() 208 con[0].Name = "StyleName"; in Conditions() 209 con[0].Value = "Result2"; in Conditions() 210 con[1] = new PropertyValue(); in Conditions() 211 con[1].Name = "Formula1"; in Conditions() 212 con[1].Value = "$Sheet1.$B$5"; in Conditions() 213 con[2] = new PropertyValue(); in Conditions() 214 con[2].Name = "Formula2"; in Conditions() 215 con[2].Value = ""; in Conditions() [all …]
|
| H A D | ScIndexEnumeration_TableConditionalEntryEnumeration.java | 179 PropertyValue[] con = new PropertyValue[5]; in Conditions() local 184 con[0] = new PropertyValue(); in Conditions() 185 con[0].Name = "StyleName"; in Conditions() 186 con[0].Value = "Result2"; in Conditions() 187 con[1] = new PropertyValue(); in Conditions() 188 con[1].Name = "Formula1"; in Conditions() 189 con[1].Value = "$Sheet1.$B$5"; in Conditions() 190 con[2] = new PropertyValue(); in Conditions() 191 con[2].Name = "Formula2"; in Conditions() 192 con[2].Value = ""; in Conditions() [all …]
|
| /AOO41X/main/odk/examples/DevelopersGuide/Database/ |
| H A D | CodeSamples.java | 66 XConnection con = openConnectionWithDriverManager(); in main() local 67 if ( con != null ) { in main() 69 SalesMan sm = new SalesMan( con ); in main() 84 Sales sm = new Sales( con ); in main() 98 displayTableStructure( con ); in main() 111 public static void checkConnection(XConnection con) throws com.sun.star.uno.Exception in checkConnection() argument 113 if(con != null) in checkConnection() 117 XComponent xComponent = (XComponent)UnoRuntime.queryInterface(XComponent.class,con); in checkConnection() 132 XConnection con = null; in openConnectionWithDriverManager() local 152 con = xDriverManager.getConnectionWithInfo(url,props); in openConnectionWithDriverManager() [all …]
|
| H A D | Sales.java | 40 private XConnection con; field in Sales 44 con = connection; in Sales() 58 XStatement stmt = con.createStatement(); in createSalesTable() 66 XStatement stmt = con.createStatement(); in dropSalesTable() 73 XStatement stmt = con.createStatement(); in insertDataIntoSales() 85 XStatement stmt = con.createStatement(); in updateSales() 95 XStatement stmt = con.createStatement(); in retrieveSalesData() 111 XStatement stmt = con.createStatement(); in retrieveSalesData2() 146 XStatement stmt = con.createStatement(); in insertRow() 174 XStatement stmt = con.createStatement(); in deleteRow() [all …]
|
| H A D | SalesMan.java | 40 private XConnection con; field in SalesMan 44 con = connection; in SalesMan() 59 XStatement stmt = con.createStatement(); in createSalesManTable() 67 XStatement stmt = con.createStatement(); in dropSalesManTable() 74 XStatement stmt = con.createStatement(); in insertDataIntoSalesMan() 95 XPreparedStatement updateStreet = con.prepareStatement( in updateSalesMan() 123 XStatement stmt = con.createStatement(); in retrieveSalesManData()
|
| H A D | sdbcx.java | 39 private static XConnection con; field in sdbcx 51 … XComponent xComponent = (XComponent)UnoRuntime.queryInterface(XComponent.class,con); in main() 121 con = xDriver.connect(adabasURL,adabasProps); in createConnection() 122 if(con != null) in createConnection() 130 xTabSup = xDDSup.getDataDefinitionByConnection(con); in createConnection()
|
| /AOO41X/main/qadevOOo/tests/java/ifc/sdbc/ |
| H A D | _XIsolatedConnection.java | 71 XConnection con = null ; in _getIsolatedConnectionWithCompletion() local 73 con = oObj.getIsolatedConnectionWithCompletion(handler) ; in _getIsolatedConnectionWithCompletion() 78 tRes.tested("getIsolatedConnectionWithCompletion()", con != null) ; in _getIsolatedConnectionWithCompletion() 109 XConnection con = null ; in _getIsolatedConnection() local 111 con = oObj.getIsolatedConnection(user, pwd) ; in _getIsolatedConnection() 116 tRes.tested("getIsolatedConnection()", con != null) ; in _getIsolatedConnection()
|
| /AOO41X/main/qadevOOo/runner/util/ |
| H A D | DBTools.java | 369 XConnection con = xSrcCon.connectWithCompletion(xHandler) ; in connectToTextDB() local 371 return con ; in connectToTextDB() 400 XConnection con = connectToSource(newSource) ; in connectToDBase() local 402 return con ; in connectToDBase() 510 public int deleteAllRows(XConnection con, String table) in deleteAllRows() argument 513 XStatement stat = con.createStatement() ; in deleteAllRows() 555 public void addRowToTestTable(XConnection con, String table, Object[] values, in addRowToTestTable() argument 559 XStatement stat = con.createStatement() ; in addRowToTestTable() 615 public void initializeTestTable(XConnection con, String table) in initializeTestTable() argument 618 deleteAllRows(con, table) ; in initializeTestTable() [all …]
|
| /AOO41X/main/qadevOOo/runner/helper/ |
| H A D | APIDescGetter.java | 575 java.net.URLConnection con = url.openConnection(); in getFromClassPath() local 578 if (con instanceof java.net.JarURLConnection) in getFromClassPath() 581 java.util.jar.JarFile f = ((java.net.JarURLConnection) con).getJarFile(); in getFromClassPath() 607 InputStream in = con.getInputStream(); in getFromClassPath() 876 java.net.URLConnection con = url.openConnection(); in getScenarioFromClassPath() local 878 if (con instanceof java.net.JarURLConnection) in getScenarioFromClassPath() 881 java.util.jar.JarFile f = ((java.net.JarURLConnection) con).getJarFile(); in getScenarioFromClassPath()
|
| /AOO41X/main/qadevOOo/tests/java/ifc/sdb/ |
| H A D | _XCompletedConnection.java | 70 XConnection con = null ; in _connectWithCompletion() local 72 con = oObj.connectWithCompletion(handler) ; in _connectWithCompletion() 77 tRes.tested("connectWithCompletion()", con != null) ; in _connectWithCompletion()
|
| /AOO41X/main/jurt/com/sun/star/lib/connections/socket/ |
| H A D | socketConnector.java | 148 XConnection con; in connect() local 153 con = new SocketConnection(connectionDescription, socket); in connect() 158 return con; in connect()
|
| /AOO41X/extras/l10n/source/es/ |
| H A D | localize.sdf | 73 …g RID_STR_SBXNAMEALLREADYUSED2 0 es Ya existe un objeto con el mismo nombre … 152 …TEXT 80 es La biblioteca ya continene un cuadro de diálogo con el nombre:\n\n$(ARG… 1473 …ue ..WebWizard.WebWizard.Layouts.table_3 Name 0 es Tabla con 3 columnas … 1474 …ue ..WebWizard.WebWizard.Layouts.table_2 Name 0 es Tabla con 2 columnas … 1676 …ce.Commands..uno:InsertExternalDataSource Label 0 es Vincular con datos externos... … 2068 …Interface.Commands..uno:ConnectorArrowEnd Label 0 es Conector con flecha al final … 2069 …rface.Commands..uno:ConnectorArrowStart Label 0 es Conector con flecha al comienzo … 2070 …Interface.Commands..uno:ConnectorArrows Label 0 es Conector con flechas … 2072 …rface.Commands..uno:ConnectorCircleEnd Label 0 es Conector con círculo al final … 2073 …rface.Commands..uno:ConnectorCircleStart Label 0 es Conector con círculo al comienzo… [all …]
|
| /AOO41X/extras/l10n/source/it/ |
| H A D | localize.sdf | 73 … RID_STR_SBXNAMEALLREADYUSED2 0 it Esiste già un oggetto con lo stesso nome … 156 …rnite dalla finestra di dialogo oppure non aggiungeteli se volete rimanere con gli attuali linguag… 289 … ..Embedding.Verbs.SAVECOPYAS VerbUIName 0 it Salva copia con ~nome... … 319 …enterScreenSettings.HelpView.HelpStrings.a Left 0 it Clic con il tasto sinistro, … 321 …enterScreenSettings.HelpView.HelpStrings.b Left 0 it Clic con il tasto destro, ta… 1473 … ..WebWizard.WebWizard.Layouts.table_3 Name 0 it Tabella con 3 colonne … 1474 … ..WebWizard.WebWizard.Layouts.table_2 Name 0 it Tabella con 2 colonne … 2061 …Commands..uno:ClickChangeRotation Label 0 it Modo rotazione con clic su oggetto … 2068 …terface.Commands..uno:ConnectorArrowEnd Label 0 it Connettore con freccia terminale … 2069 …ace.Commands..uno:ConnectorArrowStart Label 0 it Connettore con freccia iniziale … [all …]
|
| /AOO41X/main/qadevOOo/tests/java/mod/_sm/ |
| H A D | SmEditAccessible.java | 131 …final XAccessibleContext con = (XAccessibleContext) UnoRuntime.queryInterface(XAccessibleContext.c… in createTestEnvironment() local 136 System.out.println("Childs "+con.getAccessibleChildCount()); in createTestEnvironment() 139 System.out.println("Childs "+con.getAccessibleChildCount()); in createTestEnvironment()
|
| /AOO41X/main/qadevOOo/tests/java/ifc/connection/ |
| H A D | _XAcceptor.java | 159 XConnection con = xConnector.connect(connectString) ; in _accept() local 161 if (con == null) in _accept() 164 log.println("Connector returned : " + con.getDescription()) ; in _accept()
|
| /AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/dom/ |
| H A D | DOMDocument.java | 250 java.lang.reflect.Constructor con; in docToBytes() local 294 con = xercesSer.getConstructor(new Class [] in docToBytes() 305 Object serializer = con.newInstance(new Object [] { baos, null } ); in docToBytes()
|
| /AOO41X/main/jurt/com/sun/star/comp/connections/ |
| H A D | Connector.java | 119 XConnection con in connect() local 124 return con; in connect()
|
| /AOO41X/main/binaryurp/source/ |
| H A D | reader.cxx | 116 css::uno::Reference< css::connection::XConnection > con( in run() local 119 css::uno::Sequence< sal_Int8 > s(read(con, 8, true)); in run() 135 Unmarshal block(bridge_, state_, read(con, size, false)); in run()
|
| /AOO41X/main/qadevOOo/runner/org/openoffice/ |
| H A D | RunnerService.java | 222 java.net.JarURLConnection con = in getPropertyValues() local 225 java.util.jar.JarFile f = con.getJarFile(); in getPropertyValues()
|
| /AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ |
| H A D | OfficeDocument.java | 858 java.lang.reflect.Constructor con; in docToBytes() local 906 con = xercesSer.getConstructor(new Class [] in docToBytes() 917 Object serializer = con.newInstance(new Object [] { baos, null } ); in docToBytes()
|
| /AOO41X/main/offapi/com/sun/star/sdbc/ |
| H A D | PreparedStatement.idl | 74 Example of setting a parameter; <code>con</code> is an active connection. 77 pstmt = con.prepareStatement("UPDATE EMPLOYEES SET SALARY = ? WHERE ID = ?")
|
| /AOO41X/main/sc/qa/complex/calcPreview/ |
| H A D | ViewForwarder.java | 1069 XAccessibleContext con = at.getAccessibleObjectForRole in checkPreviewShape() local 1071 System.out.println("Name of AccessibleContext: " + con.getAccessibleName()); in checkPreviewShape() 1072 oObj = con; in checkPreviewShape()
|
| /AOO41X/extras/l10n/source/gl/ |
| H A D | localize.sdf | 156 …SMATCH_TEXT 80 gl O diálogo que se importará é compatíbel con idiomas distintos d… 1473 …ue ..WebWizard.WebWizard.Layouts.table_3 Name 0 gl Táboa con 3 columnas … 1474 …ue ..WebWizard.WebWizard.Layouts.table_2 Name 0 gl Táboa con 2 columnas … 2068 …Interface.Commands..uno:ConnectorArrowEnd Label 0 gl Conector con frecha no fin … 2069 …rface.Commands..uno:ConnectorArrowStart Label 0 gl Conector con frecha no inicio … 2070 …Interface.Commands..uno:ConnectorArrows Label 0 gl Conector con frechas … 2074 …Interface.Commands..uno:ConnectorCircles Label 0 gl Conector con círculos … 2078 …nds..uno:ConnectorCurveArrows Label 0 gl Conector curvilíneo con frechas … 2081 …nds..uno:ConnectorCurveCircles Label 0 gl Conector curvilíneo con círculos … 2084 …ands..uno:ConnectorLineArrowStart Label 0 gl Conector recto con frecha no inicio … [all …]
|