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

1 2 3 4 5 6 7 8

  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
CharArrayWrapper.java 35 public 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));
  /libcore/ojluni/src/main/java/java/io/
Bits.java 43 static char getChar(byte[] b, int off) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecog_Unicode.java 129 abstract int getChar(byte[] input, int index);
147 if (getChar(input, 0) == 0x0000FEFF) {
152 int ch = getChar(input, i);
184 int getChar(byte[] input, int index)
201 int getChar(byte[] input, int index)
  /external/icu/icu4c/source/i18n/
csrucode.cpp 132 if (limit > 0 && getChar(input, 0) == 0x0000FEFFUL) {
137 int32_t ch = getChar(input, i);
176 int32_t CharsetRecog_UTF_32_BE::getChar(const uint8_t *input, int32_t index) const
192 int32_t CharsetRecog_UTF_32_LE::getChar(const uint8_t *input, int32_t index) const
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_Unicode.java 128 abstract int getChar(byte[] input, int index);
146 if (getChar(input, 0) == 0x0000FEFF) {
151 int ch = getChar(input, i);
183 int getChar(byte[] input, int index)
200 int getChar(byte[] input, int index)
  /frameworks/rs/script_api/
Scanner.cpp 37 int Scanner::getChar() {
47 int c = getChar();
60 int c = getChar();
72 int c = getChar();
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 64 llvm::MDNode *CodeGenTBAA::getChar() {
100 return getChar();
119 return getChar();
138 createTBAAScalarType(BTy->getName(Features), getChar());
147 getChar());
157 return MetadataCache[Ty] = getChar();
162 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar());
166 return MetadataCache[Ty] = getChar();
209 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
  /external/deqp/executor/
xeContainerFormatParser.cpp 117 int ContainerFormatParser::getChar (int offset) const
141 int curChar = getChar(m_elementLen);
167 int nextChar = getChar(m_elementLen);
205 DE_ASSERT(getChar(0) == '#');
216 int bufChar = (offset+ndx < m_elementLen) ? getChar(offset+ndx) : 0;
249 if (getChar(offset) != ' ')
256 if (getChar(offset) != ' ')
260 if (getChar(offset) != ' ')
271 const int curChar = offset < m_elementLen ? getChar(offset) : 0;
297 bool isString = getChar(offset) == '"' || getChar(offset) == '\''
    [all...]
xeXMLParser.cpp 98 int Tokenizer::getChar (int offset) const
131 if (getChar(0) == END_OF_STRING)
139 int curChar = getChar(m_curTokenLen);
179 curChar = getChar(0);
231 // \todo [2012-10-17 pyry] Should we actually do the check against getChar(0)?
232 if (curChar != getChar(0))
250 int prev2 = m_curTokenLen > 5 ? getChar(m_curTokenLen-2) : 0;
251 int prev1 = m_curTokenLen > 4 ? getChar(m_curTokenLen-1) : 0;
284 int prevChar = getChar(m_curTokenLen-1);
334 curChar = getChar(m_curTokenLen)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Array.java 279 // Android-changed: Non-native implementation of getChar(Object, int)
280 public static char getChar(Object array, int index)
    [all...]
Field.java 421 public native char getChar(Object obj)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeObject.java 229 final char getChar(int offset) {
230 return unsafe.getChar(offset + address);
  /art/test/711-checker-type-conversion/src/
Main.java 116 static char $noinline$getChar() {
158 byteArr[0] = (byte)$noinline$getChar();
167 shortArr[0] = (short)$noinline$getChar();
176 intArr[0] = $noinline$getChar();
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
BasicComponent.java 26 char getChar();
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferBenchmark.java 120 src.getChar();
141 src.getChar(i * 2);
  /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) {}
  /libcore/ojluni/src/main/java/java/nio/
HeapByteBuffer.java 196 public char getChar() {
197 return Bits.getChar(this, ix(nextGetIndex(2)), bigEndian);
201 public char getChar(int i) {
202 return Bits.getChar(this, ix(checkIndex(i, 2)), bigEndian);
207 return Bits.getChar(this, ix(i), bigEndian);
  /libcore/ojluni/src/main/java/sun/misc/
Unsafe.java 323 public native char getChar(Object obj, long offset);
412 public native char getChar(long address);
  /art/test/100-reflect2/src/
Main.java 38 System.out.println(f.getChar(null));
72 System.out.println(f.getChar(null));
107 System.out.println(f.getChar(null));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMap.java 541 i = getChar(bytes, i, output);
547 public static int getChar(byte[] bytes, int start, char[] output) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMap.java 540 i = getChar(bytes, i, output);
546 public static int getChar(byte[] bytes, int start, char[] output) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBundle.java 149 public char getChar(String key) {
150 return getChar(key, (char) 0);
154 public char getChar(String key, char defaultValue) {

Completed in 1983 milliseconds

1 2 3 4 5 6 7 8