summaryrefslogtreecommitdiffstats
path: root/libjava
Commit message (Collapse)AuthorAgeFilesLines
* * java/util/AbstractMap.java (putAll): Use entrySet size.mark2002-04-082-5/+10
| | | | | | | (toString): Explicitly use getKey() and getValue(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52008 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.mauve/xfails: Add CASE_INSENSITIVE_ORDER, result wasmark2002-04-072-0/+18
| | | | | | | | | unspecified and test should be updated to match latest spec. Add AcuniaPropertiesTest, known bug #6219. Add test_getClassLoader, what we do seems to be not really right or wrong. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52006 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/Hashtable.java (contains): Remove NullPointer check.mark2002-04-072-15/+16
| | | | | | | | (containsValue): Add NullPointer check. (remove): Always throw NullPointerException when key is null. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51994 138bc75d-0d04-0410-961f-82ee72b054a4
* typobryce2002-04-071-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51991 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-04-07 Adam King <aking@dreammechanics.com>bryce2002-04-076-16/+167
| | | | | | | | | | | | | * java/lang/natSystem.cc (init_properties): Call new function _Jv_platform_initProperties. * win32 (_Jv_platform_initProperties): New function that adds Win32 support for the System properties os.name, os.arch, os.version, user.name, user.home, and user.dir. * include/posix.h, include/win32.h, posix.cc: New function _Jv_platform_initProperties. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51989 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.mauve/mauve.exp: Use libgcj.jar not libgcj.zip.mark2002-04-073-1/+12
| | | | | | | | | * libjava.mauve/xfails: add Character.classify12 (number 1), Character.getType (number 11), Character.getType (number 20) and Character.getType (number 22). We implement 1.4 Character. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51987 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/Character,java (isDefined): getType() != UNASSIGNED.mark2002-04-072-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51982 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/ArrayList.java (addAll(int,Collection)): System.arraycopymark2002-04-073-5/+28
| | | | | | | | | | | | | all of the remaining elements. * java/util/Vector.java (addAll(int,Collection)): Likewise. (removeRange): If toIndex == fromIndex do nothing, if toIndex < fromIndex throw IndexOutIfBoundsException. (removeAll): Always throw NullPointerException when collection is null. (retrainAll): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51979 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/ArrayList.jva (removeRange): If toIndex == fromIndex domark2002-04-062-3/+12
| | | | | | | nothing, if toIndex < fromIndex throw IndexOutIfBoundsException. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51947 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-04-05 Adam Megacz <adam@xwt.org>megacz2002-04-061-0/+4
| | | | | | | * exception.cc (abort): added static modifier git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51938 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-04-05 Adam Megacz <adam@xwt.org>megacz2002-04-061-1/+2
| | | | | | | * exception.cc (abort): added static modifier git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51937 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-04-04 Adam Megacz <adam@xwt.org>megacz2002-04-052-1/+7
| | | | | | | | * include/win32.h (_Jv_platform_close_on_exec): added inline modifier. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51899 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix cut-n-paste typo.ljrittle2002-04-051-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51897 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.host: Add case statement to support generic portljrittle2002-04-052-5/+24
| | | | | | | properties. Add *-*-freebsd* section. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51896 138bc75d-0d04-0410-961f-82ee72b054a4
* * mauve-libgcj: Add JLS1.0 and JLS1.1 tags, ignore Character.unicodemark2002-04-053-3/+34
| | | | | | | | | | test. * testsuite/libjava.mauve/xfails: Remove working tests DoubleTest, FloatTest and ObjectStreamClass. Add FAIL for Introspector.jdk11 tests that depend on awt code and BufferedByteOutputStream.interrupt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51893 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/Arrays.java (qsort): Fix off-by-one errors and use ofbryce2002-04-042-42/+54
| | | | | | | incorrect "hi" value when count > 40. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51854 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/reflect/Modifier.java (toString(int,StringBuffer)): Fixmark2002-04-042-8/+13
| | | | | | | ordering. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51848 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/natClassLoader.cc (findClass): Compare against `3',tromey2002-04-022-2/+8
| | | | | | | not `0'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51764 138bc75d-0d04-0410-961f-82ee72b054a4
* * mauve-libgcj: add java.net.DatagramSocket.DatagramSocketTest2 tomark2002-04-022-0/+6
| | | | | | | list of testsuite crashers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51753 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/IdentityHashMap.java (put): Set new threshold correctlybryce2002-04-022-1/+6
| | | | | | | when resizing table. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51751 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/util/BitSet.java (BitSet(int)): if nbits < 0 throwmark2002-04-012-6/+20
| | | | | | | | | | | | | NegativeArraySizeException (clear(int)): Use sign extended shift. (flip(int)): Likewise. (get(int)): Likewise. (nextClearBit(int)): Likewise. (nextSetBit(int)): Likewise. (set(int)): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51701 138bc75d-0d04-0410-961f-82ee72b054a4
* * mauve-libgcj: Add JDK1.3, JDK1.4, JLS1.2 tests, remove ignored testsmark2002-04-012-26/+18
| | | | | | | that can be compiled now and add testsuite crashers to ignore list. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51693 138bc75d-0d04-0410-961f-82ee72b054a4
* * libgcj.spec.in, libgcj-test.spec.in: Revert for now.aoliva2002-03-313-4/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51659 138bc75d-0d04-0410-961f-82ee72b054a4
* * libgcj.spec.in: Override libgcc, not lib.aoliva2002-03-313-4/+9
| | | | | | | * libgcj-test.spec.in: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51640 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/net/natPlainDatagramSocketImpl.cc (close): New function.tromey2002-03-293-2/+15
| | | | | | | * java/net/natPlainSocketImpl.cc (close): Indentation fix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51563 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-28 Andrew Haley <aph@redhat.com>aph2002-03-283-0/+62
| | | | | | | | * libjava.lang/Throw_2.java: New. * libjava.lang/Throw_2.out: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51515 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/net/PlainDatagramSocketImpl.javajsturm2002-03-285-31/+73
| | | | | | | | | | | | | | | | | | | | | (close): Use native implementation. (finalize): New method. * java/net/PlainSocketImpl.java (finalize): New method. * java/net/natPlainDatagramSocketImpl.cc (java/io/FileDescriptor.h): Don't include. (close): Implement method here. (create): Don't assign fd. * java/net/natPlainSocketImpl.cc (java/io/FileDescriptor.h): Don't include. (create): Don't assign fd. (accept): Likewise. (close): Synchronize. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51492 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/posix-threads.h [alpha] (_Jv_ThreadSelf): Avoid a copy.rth2002-03-272-2/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51468 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-25 Andrew Haley <aph@cambridge.redhat.com>, Hans Boehm ↵aph2002-03-272-0/+62
| | | | | | | | | | | | <Hans_Boehm@hp.com> * include/dwarf2-signal.h (MAKE_THROW_FRAME): Add for IA-64. (INIT_SEGV, INIT_FPE): Add versions that use __libc_sigaction instead of syscall on IA-64. Add FIXME comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51459 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-27 Anthony Green <green@redhat.com>tromey2002-03-279-104/+121
| | | | | | | | | | * libgcj.spec.in: Add CHECKREFSPEC. * configure.in: Ditto. * configure.host: Ditto. Check references for xscale-elf. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51457 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-27 Anthony Green <green@redhat.com>tromey2002-03-272-0/+9
| | | | | | | | * libjava.lang/InvokeReturn.java: Modify test for targets which do not yet support reflection. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51455 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-27 Anthony Green <green@redhat.com>tromey2002-03-272-2/+6
| | | | | | | * libjava.jni/jni.exp (gcj_jni_run): Fix cross build test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51453 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-27 Anthony Green <green@redhat.com>tromey2002-03-272-8/+15
| | | | | | | | * lib/libjava.exp: Add the wrapper link options only when we're linking. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51451 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/dwarf2-signal.h: Temporarily back out last change.hboehm2002-03-262-30/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51415 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.mauve/mauve.exp (test_mauve): Use correct stderrtromey2002-03-262-2/+7
| | | | | | | redirection code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51405 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/posix-threads.h: Support <.../pal.h> on FreeBSD/alpha.ljrittle2002-03-262-0/+9
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51383 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in, configure: enable dwarf2-exception-stylehboehm2002-03-264-2/+44
| | | | | | | | | | exception handling on IA-64. * include/dwarf2-signal.h (MAKE_THROW_FRAME): Add for IA-64. (INIT_SEGV, INIT_FPE): Use __libc_sigaction instead of syscall. Add FIXME comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51367 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.am (libgcj_la_LDFLAGS): Use THREADLDFLAGS.tromey2002-03-268-361/+410
| | | | | | | | | | | | (jv_convert_LDFLAGS): Likewise. (gij_LDFLAGS): Likewise. (rmic_LDFLAGS): Likewise. (rmiregistry_LDFLAGS): Likewise. * configure.in (THREADLDFLAGS): New subst; set correctly for *BSD. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51363 138bc75d-0d04-0410-961f-82ee72b054a4
* For PR libgcj/5303:tromey2002-03-254-3/+41
| | | | | | | | | | | | | | * gnu/java/rmi/registry/RegistryImpl.java (main): Recognize --help and --version. (help): New method. (version): Likewise. * gnu/gcj/convert/Convert.java (version): Removed extraneous "GNU". * gnu/java/rmi/rmic/RMIC.java (parseOptions): Removed extraneous "GNU". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51343 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/awt/Component.java (processEvent): Check ComponentEventtromey2002-03-252-2/+7
| | | | | | | after KeyEvent. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51301 138bc75d-0d04-0410-961f-82ee72b054a4
* Based on patch from Intel's ORP team:bryce2002-03-252-7/+18
| | | | | | | | | | * java/io/PushbackInputStream.java (available): Calculate correct number of bytes in buffer. (read): Remove redundant bound check. Return bytes from both the buffer and the stream. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51296 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/io/FileInputStream.java (skip): Call fd.getFilePointer() andbryce2002-03-252-1/+6
| | | | | | | calculate correct number of bytes skipped. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51293 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/io/PushbackReader.java: Reformat.bryce2002-03-252-396/+340
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51291 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/awt/TextComponent.java (TextComponent): Editable bytromey2002-03-242-0/+4
| | | | | | | default. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51278 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/awt/MenuItem.java (eventMask): No longer private.tromey2002-03-2410-5/+107
| | | | | | | | | | | | | | | * java/awt/Button.java (dispatchEventImpl): Only dispatch to superclass if we didn't handle event. * java/awt/Checkbox.java (dispatchEventImpl): New method. * java/awt/CheckboxMenuItem.java (dispatchEventImpl): New method. * java/awt/Choice.java (dispatchEventImpl): New method. * java/awt/List.java (dispatchEventImpl): New method. * java/awt/Scrollbar.java (dispatchEventImpl): New method. * java/awt/TextComponent.java (dispatchEventImpl): New method. * java/awt/TextField.java (dispatchEventImpl): New method. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51277 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-24 Eric Blake <ebb9@email.byu.edu>mark2002-03-246-439/+595
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/beans/IntrospectionException.java: Update to 1.4. * java/beans/PropertyVetoException.java: Ditto. 2002-03-24 Eric Blake <ebb9@email.byu.edu> * gnu/java/beans/BeanInfoEmbryo.java (hasMethod): Use Arrays.equals instead of ArrayHelper.equalsArray. 2002-03-24 C. Brian Jones <cbj@gnu.org> * java/beans/Introspector.java: added new static final fields introduced in 1.2, lots of other updates remain to be done 2002-03-24 C. Brian Jones <cbj@gnu.org> * java/beans/Introspector.java: reformatting 2002-03-24 C. Brian Jones <cbj@gnu.org> * java/beans/Introspector.java: default beanInfoSearchPath will not include sun.beans.infos given we provide no such package and the API doesn't really require it; gnu.java.beans.info is the default. 2002-03-24 Mark Wielaard <mark@klomp.org> Thanks to Orp developers * gnu/java/beans/editors/NativeBooleanEditor.java (setAsText(String)): switch TRUE and FALSE return values. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51273 138bc75d-0d04-0410-961f-82ee72b054a4
* reverted erroneous checkintromey2002-03-236-382/+345
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51235 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/name-finder.h (_Jv_name_finder::myclose): New method.tromey2002-03-239-352/+426
| | | | | | | * name-finder.cc (_Jv_name_finder): Initialize file descriptors. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51234 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-03-23 Michael Smith <msmith@spinnakernet.com>tromey2002-03-232-3/+8
| | | | | | | | * java/util/GregorianCalendar.java (minimums, maximums): Correct MONTH entry. Fixes PR libgcj/6045. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51232 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nat/natPlainSocketImpl.cc (write): Abort loop on error.jsturm2002-03-232-0/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51230 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud