aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/nio/ByteBufferImpl.h
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2016-09-30 16:24:48 +0000
committerAndrew Haley <aph@gcc.gnu.org>2016-09-30 16:24:48 +0000
commit07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch)
tree3f22b3241c513ad168c8353805614ae1249410f4 /libjava/java/nio/ByteBufferImpl.h
parenteae993948bae8b788c53772bcb9217c063716f93 (diff)
downloadgcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com> * Makefile.def: Remove libjava. * Makefile.tpl: Likewise. * Makefile.in: Regenerate. * configure.ac: Likewise. * configure: Likewise. * gcc/java: Remove. * libjava: Likewise. From-SVN: r240662
Diffstat (limited to 'libjava/java/nio/ByteBufferImpl.h')
-rw-r--r--libjava/java/nio/ByteBufferImpl.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/libjava/java/nio/ByteBufferImpl.h b/libjava/java/nio/ByteBufferImpl.h
deleted file mode 100644
index 12621a0..0000000
--- a/libjava/java/nio/ByteBufferImpl.h
+++ /dev/null
@@ -1,87 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_nio_ByteBufferImpl__
-#define __java_nio_ByteBufferImpl__
-
-#pragma interface
-
-#include <java/nio/ByteBuffer.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace nio
- {
- class ByteBuffer;
- class ByteBufferImpl;
- class CharBuffer;
- class DoubleBuffer;
- class FloatBuffer;
- class IntBuffer;
- class LongBuffer;
- class ShortBuffer;
- }
- }
-}
-
-class java::nio::ByteBufferImpl : public ::java::nio::ByteBuffer
-{
-
-public: // actually package-private
- ByteBufferImpl(JArray< jbyte > *, jint, jint, jint, jint, jint, jboolean);
-public:
- ::java::nio::CharBuffer * asCharBuffer();
- ::java::nio::ShortBuffer * asShortBuffer();
- ::java::nio::IntBuffer * asIntBuffer();
- ::java::nio::LongBuffer * asLongBuffer();
- ::java::nio::FloatBuffer * asFloatBuffer();
- ::java::nio::DoubleBuffer * asDoubleBuffer();
- jboolean isReadOnly();
- ::java::nio::ByteBuffer * slice();
- ::java::nio::ByteBuffer * duplicate();
- ::java::nio::ByteBuffer * asReadOnlyBuffer();
-public: // actually package-private
- void shiftDown(jint, jint, jint);
-public:
- ::java::nio::ByteBuffer * compact();
- jboolean isDirect();
- jbyte get();
- ::java::nio::ByteBuffer * get(JArray< jbyte > *, jint, jint);
- ::java::nio::ByteBuffer * put(JArray< jbyte > *, jint, jint);
- ::java::nio::ByteBuffer * put(jbyte);
- jbyte get(jint);
- ::java::nio::ByteBuffer * put(jint, jbyte);
- jchar getChar();
- ::java::nio::ByteBuffer * putChar(jchar);
- jchar getChar(jint);
- ::java::nio::ByteBuffer * putChar(jint, jchar);
- jshort getShort();
- ::java::nio::ByteBuffer * putShort(jshort);
- jshort getShort(jint);
- ::java::nio::ByteBuffer * putShort(jint, jshort);
- jint getInt();
- ::java::nio::ByteBuffer * putInt(jint);
- jint getInt(jint);
- ::java::nio::ByteBuffer * putInt(jint, jint);
- jlong getLong();
- ::java::nio::ByteBuffer * putLong(jlong);
- jlong getLong(jint);
- ::java::nio::ByteBuffer * putLong(jint, jlong);
- jfloat getFloat();
- ::java::nio::ByteBuffer * putFloat(jfloat);
- jfloat getFloat(jint);
- ::java::nio::ByteBuffer * putFloat(jint, jfloat);
- jdouble getDouble();
- ::java::nio::ByteBuffer * putDouble(jdouble);
- jdouble getDouble(jint);
- ::java::nio::ByteBuffer * putDouble(jint, jdouble);
-private:
- jboolean __attribute__((aligned(__alignof__( ::java::nio::ByteBuffer)))) readOnly;
-public:
- static ::java::lang::Class class$;
-};
-
-#endif // __java_nio_ByteBufferImpl__