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

1 2 3 4 5

  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 35 public char getChar(int index){
  /external/chromium_org/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 81 if (limit > 0 && getChar(input, 0) == 0x0000FEFFUL) {
86 int32_t ch = getChar(input, i);
124 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
140 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 84 if (getChar(input, 0) == 0x0000FEFFUL) {
89 int32_t ch = getChar(input, i);
128 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
144 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
CharSerializer.java 48 return data.getChar();
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 112 HtmlUtils.isJavascriptWhitespace(getChar(-1))) {
152 public char getChar(int position) {
196 if (HtmlUtils.isJavascriptWhitespace(getChar(-1))) {
200 for (position = end; HtmlUtils.isJavascriptIdentifier(getChar(position));
230 char c = getChar(position);
  /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/clang/lib/CodeGen/
CodeGenTBAA.cpp 65 llvm::MDNode *CodeGenTBAA::getChar() {
101 return getChar();
120 return getChar();
139 createTBAAScalarType(BTy->getName(Features), getChar());
148 getChar());
158 return MetadataCache[Ty] = getChar();
166 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar());
170 return MetadataCache[Ty] = getChar();
213 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DosLineEndingsFix.java 51 char c = document.getChar(i);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 69 try { Array.getChar(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
71 assertEquals(chars[0], Array.getChar(chars, 0));
72 try { Array.getChar(doubles, 0); fail(); } catch (IllegalArgumentException expected) {}
73 try { Array.getChar(floats, 0); fail(); } catch (IllegalArgumentException expected) {}
74 try { Array.getChar(ints, 0); fail(); } catch (IllegalArgumentException expected) {}
75 try { Array.getChar(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
76 try { Array.getChar(shorts, 0); fail(); } catch (IllegalArgumentException expected) {}
77 try { Array.getChar(null, 0); fail(); } catch (NullPointerException expected) {}
  /external/jsilver/src/com/google/streamhtmlparser/impl/
JavascriptParserImpl.java 185 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(position))) {
189 switch (ccBuffer.getChar(position)) {
192 if (ccBuffer.getChar(position - 1) != '+') {
198 if (ccBuffer.getChar(position - 1) != '-') {
252 if (HtmlUtils.isJavascriptWhitespace(ccBuffer.getChar(-2))) {
  /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);
  /external/smack/src/org/xbill/DNS/
Tokenizer.java 181 getChar() throws IOException {
207 int c = getChar();
258 c = getChar();
297 c = getChar();
322 c = getChar();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 187 // If the caret is right after a resource name (meaning getChar(offset) points
189 char c = document.getChar(offset);
198 char c = document.getChar(start);
210 char c = document.getChar(end);
293 // If the caret is right after a resource name (meaning getChar(offset) points
295 char c = document.getChar(offset);
303 char c = document.getChar(start);
314 char c = document.getChar(end);
  /libcore/luni/src/main/java/java/nio/
ByteBufferAsCharBuffer.java 91 return byteBuffer.getChar(position++ * SizeOf.CHAR);
97 return byteBuffer.getChar(index * SizeOf.CHAR);
ByteBuffer.java 424 public abstract char getChar();
440 public abstract char getChar(int index);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ArrayTest.java 126 * @tests java.lang.reflect.Array#getChar(java.lang.Object, int)
130 // java.lang.reflect.Array.getChar(java.lang.Object, int)
134 ret = Array.getChar(x, 0);
138 ret = Array.getChar(new Object(), 0);
148 ret = Array.getChar(x, 4);
488 assertEquals("Get returned incorrect value", 1, Array.getChar(x, 0));
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 95 data[i] = buf.getChar();
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 186 * java.lang.reflect.Array#getChar(java.lang.Object, int)
190 // java.lang.reflect.Array.getChar(java.lang.Object, int)
195 ret = Array.getChar(x, 0);
201 ret = Array.getChar(new Object(), 0);
211 ret = Array.getChar(x, 4);
221 ret = Array.getChar(null, 0);
725 assertEquals("Get returned incorrect value", 1, Array.getChar(x, 0));
  /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));

Completed in 4326 milliseconds

1 2 3 4 5