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

1 2 3

  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 35 public char getChar(int index){
  /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
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 48 llvm::MDNode *CodeGenTBAA::getChar() {
102 return getChar();
121 return getChar();
140 getTBAAInfoForNamedType(BTy->getName(Features), getChar());
149 getChar());
160 return MetadataCache[Ty] = getChar();
168 return MetadataCache[Ty] = getChar();
176 return MetadataCache[Ty] = getTBAAInfoForNamedType(OutName, getChar());
180 return MetadataCache[Ty] = getChar();
CodeGenTBAA.h 54 /// getChar - This is the mdnode for "char", which is special, and any types
56 llvm::MDNode *getChar();
  /libcore/luni/src/main/java/java/nio/
BaseByteBuffer.java 60 public char getChar() {
65 public char getChar(int index) {
MappedByteBufferAdapter.java 150 public char getChar() {
152 char result = wrapped.getChar();
158 public char getChar(int index) {
159 return wrapped.getChar(index);
CharToByteBufferAdapter.java 91 return byteBuffer.getChar(position++ * SizeOf.CHAR);
97 return byteBuffer.getChar(index * SizeOf.CHAR);
ByteBuffer.java 436 public abstract char getChar();
452 public abstract char getChar(int index);
    [all...]
DirectByteBuffer.java 98 public final char getChar() {
109 public final char getChar(int index) {
HeapByteBuffer.java 120 public final char getChar() {
131 public final char getChar(int index) {
  /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/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))) {
  /packages/inputmethods/LatinIME/native/src/
dictionary.h 56 static unsigned short getChar(const unsigned char *dict, int *pos);
86 inline unsigned short Dictionary::getChar(const unsigned char *dict, int *pos) {
149 *c = Dictionary::getChar(dict, &position);
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 93 char c = buffer.getChar(i);
105 char c = buffer.getChar(i);
  /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 507 milliseconds

1 2 3