diff options
| author | Jing Yu <jingyu@google.com> | 2009-11-05 15:11:04 -0800 |
|---|---|---|
| committer | Jing Yu <jingyu@google.com> | 2009-11-05 15:11:04 -0800 |
| commit | df62c1c110e8532b995b23540b7e3695729c0779 (patch) | |
| tree | dbbd4cbdb50ac38011e058a2533ee4c3168b0205 /gcc-4.2.1/libjava/java/lang/natStringBuilder.cc | |
| parent | 8d401cf711539af5a2f78d12447341d774892618 (diff) | |
| download | toolchain_gcc-df62c1c110e8532b995b23540b7e3695729c0779.tar.gz toolchain_gcc-df62c1c110e8532b995b23540b7e3695729c0779.tar.bz2 toolchain_gcc-df62c1c110e8532b995b23540b7e3695729c0779.zip | |
Check in gcc sources for prebuilt toolchains in Eclair.
Diffstat (limited to 'gcc-4.2.1/libjava/java/lang/natStringBuilder.cc')
| -rw-r--r-- | gcc-4.2.1/libjava/java/lang/natStringBuilder.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gcc-4.2.1/libjava/java/lang/natStringBuilder.cc b/gcc-4.2.1/libjava/java/lang/natStringBuilder.cc new file mode 100644 index 000000000..e2c8c29f6 --- /dev/null +++ b/gcc-4.2.1/libjava/java/lang/natStringBuilder.cc @@ -0,0 +1,29 @@ +// Native methods for StringBuilder. + +/* Copyright (C) 2005 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +#include <config.h> +#include <gcj/cni.h> +#include <java/lang/StringBuilder.h> +#include <java/lang/String.h> + +jboolean +java::lang::StringBuilder::regionMatches(jint offset, jstring other) +{ + int len = other->count; + int index = 0; + jchar *sc = elements (value); + jchar *oc = _Jv_GetStringChars (other); + while (--len >= 0) + { + if (sc[offset++] != oc[index++]) + return false; + } + return true; +} |
