Home
last modified time | relevance | path

Searched refs:con (Results 1 – 25 of 49) sorted by relevance

12

/aoo41x/main/qadevOOo/tests/java/ifc/sheet/
H A D_XSheetConditionalEntries.java107 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()
113 con[2] = new PropertyValue(); in Conditions()
114 con[2].Name = "Formula2"; in Conditions()
115 con[2].Value = ""; in Conditions()
117 con[3].Name = "Operator"; in Conditions()
121 con[4].Value = ca; in Conditions()
[all …]
/aoo41x/main/qadevOOo/tests/java/mod/_sc/
H A DScTableConditionalFormat.java185 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()
191 con[2] = new PropertyValue(); in Conditions()
192 con[2].Name = "Formula2"; in Conditions()
193 con[2].Value = ""; in Conditions()
195 con[3].Name = "Operator"; in Conditions()
199 con[4].Value = ca; in Conditions()
[all …]
H A DScIndexEnumeration_TableConditionalEntryEnumeration.java184 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()
190 con[2] = new PropertyValue(); in Conditions()
191 con[2].Name = "Formula2"; in Conditions()
192 con[2].Value = ""; in Conditions()
194 con[3].Name = "Operator"; in Conditions()
198 con[4].Value = ca; in Conditions()
[all …]
H A DScTableConditionalEntry.java207 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()
213 con[2] = new PropertyValue(); in Conditions()
214 con[2].Name = "Formula2"; in Conditions()
215 con[2].Value = ""; in Conditions()
217 con[3].Name = "Operator"; in Conditions()
221 con[4].Value = ca; in Conditions()
[all …]
/aoo41x/main/odk/examples/DevelopersGuide/Database/
H A DCodeSamples.java67 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()
113 if(con != null) in checkConnection()
132 XConnection con = null; in openConnectionWithDriverManager() local
154 return con; in openConnectionWithDriverManager()
160 XConnection con = null; in openConnectionWithDriver() local
180 con = xDriver.connect(url,props); in openConnectionWithDriver()
182 return con; in openConnectionWithDriver()
[all …]
H A DSales.java40 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 DSalesMan.java40 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 Dsdbcx.java39 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.java71 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 DDBTools.java369 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 DAPIDescGetter.java575 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.java70 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 DsocketConnector.java148 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 Dlocalize.sdf13683 …estilo de párrafo con un tipo de letra de ancho fijo es trasformado como texto con formato. Texto
34284 …raw.xhp 0 help par_id5792107 0 es Dibuje con la línea de mano alzada de la misma manera como lo…
36834con menos que 1 argumento\<br/\>STDEVP con menos de 1 argumento\<br/\>VAR con menos de 2 argumento…
37607 …órmulas;calcular con\</bookmark_value\>\<bookmark_value\>calcular; con fórmulas\</bookmark_value\>…
43075con mantequilla que caen de una mesa caen sobre el suelo con la parte con mantequilla primero, ent…
45571 …ared\autopi\01010100.xhp 0 help par_idN106A7 0 es Utilizar papel con membrete con elementos imp…
47036 …go de celdas con un diagrama incluido, éste sólo mantendrá su vínculo con el rango de celdas fuent…
47238 …t\shared\guide\data_reports.xhp 0 help par_idN105C4 0 es Crear un con informe con el Asistente …
56479 …mpos con formato;propiedades\</bookmark_value\>\<bookmark_value\>campos;campos con formato\</bookm…
56998 …d\02\01170102.xhp 0 help par_idN1100B 0 es Campo numérico y campo con formato con celda vincula…
[all …]
/aoo41x/extras/l10n/source/it/
H A Dlocalize.sdf17296 … 0 it \<link href=\"text/shared/01/01070000.xhp\" name=\"Salva con nome...\"\>Salva con nome...\<…
17694 …5 0 it \<link href=\"text/shared/01/01070000.xhp\" name=\"Salva con nome\"\>Salva con nome\</lin…
19926con la tastiera\</bookmark_value\>\<bookmark_value\>Colonna; inserire/eliminare nelle tabelle con
28496con un nome specificato (con il comando \<emph\>File - Salva con nome\</emph\> o, se il nome del d…
28498con un nome specificato (con il comando \<emph\>File - Salva con nome\</emph\> o, se il nome del d…
36834con meno di un argomento\<br/\>STDEVP con meno di un argomento\<br/\>VAR con meno di due argomenti…
47358con OpenOffice.org 3.2 o StarOffice 9.2, o una versione successiva, e lo aprite con una versione p…
48266 …red\guide\main.xhp 0 help hd_id3159149 4 0 it Copiare dati con la funzione Drag&Drop e con i men…
56871 … di riepilogo lavorano con riferimenti che possono essere realizzati con tabelle collegate tramite…
62988 … readmeitem fghfgh fghfgh 0 it X Server con risoluzione 1024x768 (raccomandata risoluzione più e…
[all …]
/aoo41x/main/qadevOOo/tests/java/mod/_sm/
H A DSmEditAccessible.java131 …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.java159 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 DDOMDocument.java250 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 DConnector.java119 XConnection con in connect() local
124 return con; in connect()
/aoo41x/main/binaryurp/source/
H A Dreader.cxx116 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 DRunnerService.java222 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 DOfficeDocument.java858 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 DPreparedStatement.idl74 Example of setting a parameter; <code>con</code> is an active connection.
77 pstmt = con.prepareStatement("UPDATE EMPLOYEES SET SALARY = ? WHERE ID = ?")
/aoo41x/main/mysqlc/source/description/
H A Ddescription_es.txt1 Conecta OpenOffice.org directamente con los servidores de MySQL
/aoo41x/main/sc/qa/complex/calcPreview/
H A DViewForwarder.java1069 XAccessibleContext con = at.getAccessibleObjectForRole in checkPreviewShape() local
1071 System.out.println("Name of AccessibleContext: " + con.getAccessibleName()); in checkPreviewShape()
1072 oObj = con; in checkPreviewShape()

Completed in 2174 milliseconds

12