| /trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/ |
| H A D | PostgresqlResultSet.java | 103 public boolean absolute(int arg0) throws SQLException { in absolute() argument 104 return impl.absolute(arg0); in absolute() 159 public boolean relative(int arg0) throws SQLException { in relative() argument 160 return impl.relative(arg0); in relative() 177 public XArray getArray(int arg0) throws SQLException { in getArray() argument 178 return implRow.getArray(arg0); in getArray() 181 public XInputStream getBinaryStream(int arg0) throws SQLException { in getBinaryStream() argument 182 return implRow.getBinaryStream(arg0); in getBinaryStream() 185 public XBlob getBlob(int arg0) throws SQLException { in getBlob() argument 186 return implRow.getBlob(arg0); in getBlob() [all …]
|
| H A D | PostgresqlPreparedStatement.java | 119 …public void addPropertyChangeListener(String arg0, XPropertyChangeListener arg1) throws UnknownPro… in addPropertyChangeListener() argument 120 implPropertySet.addPropertyChangeListener(arg0, arg1); in addPropertyChangeListener() 123 …public void addVetoableChangeListener(String arg0, XVetoableChangeListener arg1) throws UnknownPro… in addVetoableChangeListener() argument 124 implPropertySet.addVetoableChangeListener(arg0, arg1); in addVetoableChangeListener() 131 …public Object getPropertyValue(String arg0) throws UnknownPropertyException, WrappedTargetExceptio… in getPropertyValue() argument 132 return implPropertySet.getPropertyValue(arg0); in getPropertyValue() 135 …public void removePropertyChangeListener(String arg0, XPropertyChangeListener arg1) throws Unknown… in removePropertyChangeListener() argument 136 implPropertySet.removePropertyChangeListener(arg0, arg1); in removePropertyChangeListener() 139 …public void removeVetoableChangeListener(String arg0, XVetoableChangeListener arg1) throws Unknown… in removeVetoableChangeListener() argument 140 implPropertySet.removeVetoableChangeListener(arg0, arg1); in removeVetoableChangeListener() [all …]
|
| H A D | PostgresqlResultSetMetaData.java | 37 public String getCatalogName(int arg0) throws SQLException { in getCatalogName() argument 38 return impl.getCatalogName(arg0); in getCatalogName() 45 public int getColumnDisplaySize(int arg0) throws SQLException { in getColumnDisplaySize() argument 46 return impl.getColumnDisplaySize(arg0); in getColumnDisplaySize() 49 public String getColumnLabel(int arg0) throws SQLException { in getColumnLabel() argument 50 return impl.getColumnLabel(arg0); in getColumnLabel() 53 public String getColumnName(int arg0) throws SQLException { in getColumnName() argument 54 return impl.getColumnName(arg0); in getColumnName() 57 public String getColumnServiceName(int arg0) throws SQLException { in getColumnServiceName() argument 58 return impl.getColumnServiceName(arg0); in getColumnServiceName() [all …]
|
| H A D | PostgresqlDatabaseMetadata.java | 64 public boolean deletesAreDetected(int arg0) throws SQLException { in deletesAreDetected() argument 65 return impl.deletesAreDetected(arg0); in deletesAreDetected() 72 …public XResultSet getBestRowIdentifier(Object arg0, String arg1, String arg2, int arg3, boolean ar… in getBestRowIdentifier() argument 73 … return new PostgresqlResultSet(impl.getBestRowIdentifier(arg0, arg1, arg2, arg3, arg4), null); in getBestRowIdentifier() 88 …public XResultSet getColumnPrivileges(Object arg0, String arg1, String arg2, String arg3) throws S… in getColumnPrivileges() argument 89 return new PostgresqlResultSet(impl.getColumnPrivileges(arg0, arg1, arg2, arg3), null); in getColumnPrivileges() 92 …public XResultSet getColumns(Object arg0, String arg1, String arg2, String arg3) throws SQLExcepti… in getColumns() argument 93 XResultSet results = impl.getColumns(arg0, arg1, arg2, arg3); in getColumns() 150 …public XResultSet getCrossReference(Object arg0, String arg1, String arg2, Object arg3, String arg… in getCrossReference() argument 151 … return new PostgresqlResultSet(impl.getCrossReference(arg0, arg1, arg2, arg3, arg4, arg5), null); in getCrossReference() [all …]
|
| H A D | PostgresqlStatement.java | 76 public boolean execute(String arg0) throws SQLException { in execute() argument 77 System.out.println(arg0); in execute() 78 return impl.execute(arg0); in execute() 81 public XResultSet executeQuery(String arg0) throws SQLException { in executeQuery() argument 82 XResultSet results = impl.executeQuery(arg0); in executeQuery() 86 public int executeUpdate(String arg0) throws SQLException { in executeUpdate() argument 87 return impl.executeUpdate(arg0); in executeUpdate() 102 …public void addPropertyChangeListener(String arg0, XPropertyChangeListener arg1) throws UnknownPro… in addPropertyChangeListener() argument 103 implPropertySet.addPropertyChangeListener(arg0, arg1); in addPropertyChangeListener() 106 …public void addVetoableChangeListener(String arg0, XVetoableChangeListener arg1) throws UnknownPro… in addVetoableChangeListener() argument [all …]
|
| H A D | PostgresqlConnection.java | 139 public synchronized String nativeSQL(String arg0) throws SQLException { in nativeSQL() argument 141 return impl.nativeSQL(arg0); in nativeSQL() 144 public synchronized XPreparedStatement prepareCall(String arg0) throws SQLException { in prepareCall() argument 146 …resqlPreparedStatement pgStatement = new PostgresqlPreparedStatement(impl.prepareCall(arg0), this); in prepareCall() 152 public synchronized XPreparedStatement prepareStatement(String arg0) throws SQLException { in prepareStatement() argument 154 …PreparedStatement pgStatement = new PostgresqlPreparedStatement(impl.prepareStatement(arg0), this); in prepareStatement() 165 public synchronized void setAutoCommit(boolean arg0) throws SQLException { in setAutoCommit() argument 167 impl.setAutoCommit(arg0); in setAutoCommit() 170 public synchronized void setCatalog(String arg0) throws SQLException { in setCatalog() argument 172 impl.setCatalog(arg0); in setCatalog() [all …]
|
| /trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
| H A D | DatabaseMetaDataResultSet.java | 356 public synchronized int findColumn(String arg0) throws SQLException { in findColumn() argument 358 return implColumnLocate.findColumn(arg0); in findColumn() 363 …public synchronized void addPropertyChangeListener(String arg0, XPropertyChangeListener arg1) thro… in addPropertyChangeListener() argument 365 implPropertySet.addPropertyChangeListener(arg0, arg1); in addPropertyChangeListener() 368 …public synchronized void addVetoableChangeListener(String arg0, XVetoableChangeListener arg1) thro… in addVetoableChangeListener() argument 370 implPropertySet.addVetoableChangeListener(arg0, arg1); in addVetoableChangeListener() 378 …public synchronized Object getPropertyValue(String arg0) throws UnknownPropertyException, WrappedT… in getPropertyValue() argument 380 return implPropertySet.getPropertyValue(arg0); in getPropertyValue() 383 …public synchronized void removePropertyChangeListener(String arg0, XPropertyChangeListener arg1) t… in removePropertyChangeListener() argument 385 implPropertySet.removePropertyChangeListener(arg0, arg1); in removePropertyChangeListener() [all …]
|
| H A D | CustomResultSet.java | 356 public synchronized int compareBookmarks(Object arg0, Object arg1) throws SQLException { in compareBookmarks() argument 361 bookmark1 = AnyConverter.toInt(arg0); in compareBookmarks() 386 public synchronized int hashBookmark(Object arg0) throws SQLException { in hashBookmark() argument 390 bookmark = AnyConverter.toInt(arg0); in hashBookmark() 397 public synchronized boolean moveRelativeToBookmark(Object arg0, int arg1) throws SQLException { in moveRelativeToBookmark() argument 402 bookmark = AnyConverter.toInt(arg0); in moveRelativeToBookmark() 415 public synchronized boolean moveToBookmark(Object arg0) throws SQLException { in moveToBookmark() argument 420 bookmark = AnyConverter.toInt(arg0); in moveToBookmark()
|
| /trunk/main/unoxml/source/rdf/ |
| H A D | CURI.cxx | 755 ::rtl::OUString arg0; in initialize() 767 if (!(aArguments[0] >>= arg0)) { in initialize() 779 arg0 = arg0 + arg1; in initialize() 785 if ( ((idx = arg0.indexOf ('#')) >= 0) in initialize() 786 || ((idx = arg0.lastIndexOf('/')) >= 0) in initialize() 787 || ((idx = arg0.lastIndexOf(':')) >= 0)) in initialize() 790 if (idx < arg0.getLength() - 1) { in initialize() 791 arg1 = arg0.copy(idx+1); in initialize() 792 arg0 = arg0.copy(0, idx+1); in initialize() 801 if (arg0.getLength() > 0) { in initialize() [all …]
|
| H A D | CLiteral.cxx | 113 ::rtl::OUString arg0; in initialize() 114 if (!(aArguments[0] >>= arg0)) { in initialize() 121 m_Value = arg0; in initialize()
|
| /trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/ |
| H A D | ConverterException.java | 50 public ConverterException(String arg0) { in ConverterException() argument 51 super(arg0); in ConverterException() 58 public ConverterException(Throwable arg0) { in ConverterException() argument 59 super(arg0); in ConverterException() 67 public ConverterException(String arg0, Throwable arg1) { in ConverterException() argument 68 super(arg0, arg1); in ConverterException()
|
| H A D | LineErrorException.java | 51 public LineErrorException(String arg0) { in LineErrorException() argument 52 super(arg0); in LineErrorException() 59 public LineErrorException(Throwable arg0) { in LineErrorException() argument 60 super(arg0); in LineErrorException() 68 public LineErrorException(String arg0, Throwable arg1) { in LineErrorException() argument 69 super(arg0, arg1); in LineErrorException()
|
| H A D | ExtMap.java | 53 public ExtMap(int arg0) { in ExtMap() argument 54 super(arg0); in ExtMap() 62 public ExtMap(int arg0, float arg1) { in ExtMap() argument 63 super(arg0, arg1); in ExtMap() 70 public ExtMap(Map arg0) { in ExtMap() argument 71 super(arg0); in ExtMap()
|
| /trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/languageResolver/ |
| H A D | LanguageResolver.java | 170 public LanguageResolvingException(String arg0) { in LanguageResolvingException() argument 171 super(arg0); in LanguageResolvingException() 179 public LanguageResolvingException(String arg0, Throwable arg1) { in LanguageResolvingException() argument 180 super(arg0, arg1); in LanguageResolvingException() 187 public LanguageResolvingException(Throwable arg0) { in LanguageResolvingException() argument 188 super(arg0); in LanguageResolvingException()
|
| /trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/DirtyTags/ |
| H A D | DirtyTagWrapper.java | 218 public TagWrapperException(String arg0) { in TagWrapperException() argument 219 super(arg0); in TagWrapperException() 229 public TagWrapperException(String arg0, Throwable arg1) { in TagWrapperException() argument 230 super(arg0, arg1); in TagWrapperException() 239 public TagWrapperException(Throwable arg0) { in TagWrapperException() argument 240 super(arg0); in TagWrapperException()
|
| /trunk/main/wizards/com/sun/star/wizards/form/ |
| H A D | UIControlArranger.java | 423 public void addListDataListener(ListDataListener arg0) in addListDataListener() argument 428 public void itemStateChanged(ItemEvent arg0) in itemStateChanged() argument 463 public void contentsChanged(ListDataEvent arg0) in contentsChanged() argument 471 public void intervalAdded(ListDataEvent arg0) in intervalAdded() argument 479 public void intervalRemoved(ListDataEvent arg0) in intervalRemoved() argument 487 public void disposing(EventObject arg0) in disposing() argument
|
| /trunk/main/wizards/com/sun/star/wizards/ui/ |
| H A D | PeerConfig.java | 99 public void windowResized(WindowEvent arg0) in windowResized() argument 103 public void windowMoved(WindowEvent arg0) in windowMoved() argument 107 public void windowShown(EventObject arg0) in windowShown() argument 151 public void windowHidden(EventObject arg0) in windowHidden() argument 155 public void disposing(EventObject arg0) in disposing() argument
|
| H A D | ImageList.java | 125 public void mousePressed(MouseEvent arg0) in mousePressed() argument 130 public void mouseReleased(MouseEvent arg0) in mouseReleased() argument 134 public void mouseEntered(MouseEvent arg0) in mouseEntered() argument 138 public void mouseExited(MouseEvent arg0) in mouseExited() argument 142 public void disposing(EventObject arg0) in disposing() argument 1071 public void disposing(EventObject arg0) in disposing() argument
|
| H A D | WizardDialog.java | 153 public void vetoableChange(java.beans.PropertyChangeEvent arg0) in vetoableChange() argument 791 public void notifyTermination(EventObject arg0) in notifyTermination() argument 796 public void queryTermination(EventObject arg0) in queryTermination() argument 803 public void disposing(EventObject arg0) in disposing() argument
|
| /trunk/main/comphelper/qa/complex/comphelper/ |
| H A D | Map.java | 281 …public boolean has( Object arg0 ) { throw new UnsupportedOperationException( "Not implemente… in has() argument 282 …public void insert( Object arg0 ) { throw new UnsupportedOperationException( "Not implemente… in insert() argument 283 …public void remove( Object arg0 ) { throw new UnsupportedOperationException( "Not implemente… in remove() argument 291 …public void addContainerListener( XContainerListener arg0 ) { throw new UnsupportedOperationExcept… in addContainerListener() argument 292 …public void removeContainerListener( XContainerListener arg0 ) { throw new UnsupportedOperationExc… in removeContainerListener() argument 297 …public Object getByIdentifier( int arg0 ) { throw new UnsupportedOperationException( "Not implemen… in getByIdentifier() argument
|
| /trunk/main/testtools/source/bridgetest/ |
| H A D | constructors.cxx | 78 ::sal_Bool arg0 = sal_Bool(); in initialize() 123 && (arguments[0] >>= arg0) && arg0 in initialize() 241 ttb::TestPolyStruct< css::uno::Type > arg0; in initialize() local 304 && (arguments[0] >>= arg0) && arg0.member == cppu::UnoType<sal_Int32>::get() in initialize()
|
| /trunk/main/wizards/com/sun/star/wizards/db/ |
| H A D | TableDescriptor.java | 772 public void elementInserted(ContainerEvent arg0) in elementInserted() argument 776 … XPropertySet xTablePropertySet = UnoRuntime.queryInterface(XPropertySet.class, arg0.Element); in elementInserted() 792 public void elementRemoved(ContainerEvent arg0) in elementRemoved() argument 799 public void elementReplaced(ContainerEvent arg0) in elementReplaced() argument 806 public void disposing(EventObject arg0) in disposing() argument
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/ |
| H A D | SOFunctionManager.java | 144 public XFunctionDescription getFunctionByName(String arg0) throws NoSuchElementException in getFunctionByName() argument 146 final FunctionDescription func = functionRegistry.getMetaData(arg0); in getFunctionByName()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/ |
| H A D | SpreadsheetRawReportTarget.java | 127 public int compareTo(final Object arg0) in compareTo() argument 129 if (arg0.equals(this)) in compareTo() 133 if (arg0 instanceof ColumnBoundary) in compareTo() 135 if (boundary > ((ColumnBoundary) arg0).boundary) in compareTo()
|
| /trunk/main/wizards/com/sun/star/wizards/web/ |
| H A D | IconsDialog.java | 144 public Object getElementAt(int arg0) in getElementAt() argument 146 return objects[arg0]; in getElementAt()
|