HomeSort by relevance Sort by last modified time
    Searched refs:getChar (Results 1 - 25 of 42) sorted by null

1 2

  /libcore/luni/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 35 public char getChar(int index){
  /external/chromium/third_party/icu/source/i18n/
csrucode.h 68 virtual int32_t getChar(const uint8_t *input, int32_t index) const = 0;
82 int32_t getChar(const uint8_t *input, int32_t index) const;
95 int32_t getChar(const uint8_t *input, int32_t index) const;
csrucode.cpp 79 if (getChar(input, 0) == 0x0000FEFFUL) {
84 int32_t ch = getChar(input, i);
122 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
138 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const
  /external/icu4c/i18n/
csrucode.h 68 virtual int32_t getChar(const uint8_t *input, int32_t index) const = 0;
82 int32_t getChar(const uint8_t *input, int32_t index) const;
95 int32_t getChar(const uint8_t *input, int32_t index) const;
csrucode.cpp 79 if (getChar(input, 0) == 0x0000FEFFUL) {
84 int32_t ch = getChar(input, i);
122 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
138 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const
  /libcore/luni/src/main/java/java/nio/
BaseByteBuffer.java 60 public final char getChar() {
65 public final char getChar(int index) {
CharToByteBufferAdapter.java 141 return byteBuffer.getChar(position++ << 1);
149 return byteBuffer.getChar(index << 1);
MappedByteBufferAdapter.java 135 public char getChar() {
138 char result = this.wrapped.getChar();
144 public char getChar(int index) {
147 return this.wrapped.getChar(index);
ByteBuffer.java 451 public abstract char getChar();
467 public abstract char getChar(int index);
    [all...]
  /packages/apps/Email/src/com/beetstra/jutf7/
Base64Util.java 114 byte getChar(final int sextet) {
UTF7StyleCharsetEncoder.java 110 out.put(base64.getChar(sextet));
184 out.put(base64.getChar(sextet));
212 out.put(base64.getChar(sextet));
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 113 if (f.getChar(this) != g.getChar(that))
203 if (f.getChar(this) != g.getChar(that))
314 char charField = f.getChar(this);
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 119 if (f.getChar(this) != g.getChar(that))
209 if (f.getChar(this) != g.getChar(that))
325 char charField = f.getChar(this);
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 95 data[i] = buf.getChar();
  /packages/inputmethods/LatinIME/native/src/
dictionary.h 64 unsigned short getChar(int *pos);
dictionary.cpp 113 Dictionary::getChar(int *pos)
303 unsigned short c = getChar(&pos);
569 unsigned short c = getChar(&pos);
  /external/nist-sip/java/gov/nist/core/
GenericObject.java 250 char charField = f.getChar(mergeObject);
444 if (f.getChar(this) != g.getChar(that))
529 if (f.getChar(this) != g.getChar(that))
628 char charField = f.getChar(this);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 94 char charField = f.getChar(this);
  /dalvik/tests/064-field-access/src/
Main.java 67 result = new Character(field.getChar(obj));
299 result = new Character(field.getChar(obj));
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 210 * @tests java.lang.reflect.Array#getChar(java.lang.Object, int)
215 method = "getChar",
220 // java.lang.reflect.Array.getChar(java.lang.Object, int)
225 ret = Array.getChar(x, 0);
231 ret = Array.getChar(new Object(), 0);
241 ret = Array.getChar(x, 4);
251 ret = Array.getChar(null, 0);
827 assertEquals("Get returned incorrect value", 1, Array.getChar(x, 0));
    [all...]
FieldTest.java 293 res = new Character(f.getChar(o));
378 * @tests java.lang.reflect.Field#getChar(java.lang.Object)
435 method = "getChar",
836 * @tests java.lang.reflect.Field#getChar(java.lang.Object)
841 method = "getChar",
846 // java.lang.reflect.Field.getChar(java.lang.Object)
852 val = f.getChar(x);
861 f.getChar(x);
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemNumber.java     [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ChunkHandler.java 100 data[i] = buf.getChar();
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 183 public static char getChar(Object array, int index)
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java     [all...]

Completed in 550 milliseconds

1 2