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

1 2

  /libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 120 int currentChar = lastChar;
121 if (currentChar == -1) {
122 currentChar = in.read();
126 switch (currentChar) {
128 currentChar = '\n';
137 return currentChar;
162 int currentChar;
164 currentChar = read();
171 if (currentChar == -1) {
174 buffer[byteOffset + i] = (byte) currentChar;
    [all...]
StreamTokenizer.java 264 int currentChar = peekChar == -2 ? read() : peekChar;
266 if (lastCr && currentChar == '\n') {
268 currentChar = read();
270 if (currentChar == -1) {
274 byte currentType = currentChar > 255 ? TOKEN_WORD
275 : tokenTypes[currentChar];
280 if (currentChar == '\r') {
287 if ((currentChar = read()) == '\n') {
288 currentChar = read();
290 } else if (currentChar == '\n')
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 82 char currentChar = (char)(currentByte & 0xffff);
85 (Character.isISOControl(currentChar) ? '.' : currentChar));
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 197 char currentChar = buf.charAt(i);
199 if (currentChar == ' ')
207 else if (currentChar == '\\')
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 190 char currentChar = buf.charAt(i);
192 if (currentChar == ' ')
200 else if (currentChar == '\\')
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 140 char currentChar = identifier.charAt(i);
142 out.append(Character.toLowerCase(currentChar));
143 } else if (Character.isUpperCase(currentChar)) {
144 out.append('_').append(Character.toLowerCase(currentChar));
146 out.append(currentChar);
  /libcore/luni/src/main/java/java/math/
Conversion.java 80 int currentChar = resLengthInChars;
95 int previous = currentChar;
97 result[--currentChar] = Character.forDigit(
99 } while (((resDigit /= radix) != 0) && (currentChar != 0));
100 int delta = charsPerInt - previous + currentChar;
101 for (i = 0; i < delta && currentChar > 0; i++) {
102 result[--currentChar] = '0';
115 for (int j = 0; (j < 8) && (currentChar > 0); j++) {
117 result[--currentChar] = Character.forDigit(resDigit, 16);
121 while (result[currentChar] == '0')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
SegmentedString.h 258 ASSERT_UNUSED(expectedCharacter, currentChar() == expectedCharacter);
264 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(currentChar()) == WTF::Unicode::foldCase(expectedCharacter));
270 ASSERT(currentChar() != '\n');
276 ASSERT(currentChar() == '\n');
308 UChar currentChar() const { return m_currentChar; }
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 826 public char currentChar() { return desc.charAt(curPos); }
832 char c = currentChar();
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditor.cpp 586 UChar currentChar = decodedSnippet[currentLength];
587 if (currentChar == '?'
588 || currentChar == '#'
589 || ((currentChar == '/' || currentChar == '\\') && (commaSeen || ++slashCount > 2))
590 || (currentChar == '<' && commaSeen)) {
594 if (currentChar == ',')
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 461 final int currentChar = currentChars[j];
462 if (currentChar == Constants.NOT_A_CODE) {
465 if (currentChar == lowerC || currentChar == c) {
651 final char currentChar = word.charAt(offset);
654 if (node.mCode == currentChar) {
    [all...]
  /external/icu4c/layout/
IndicReordering.cpp     [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 705 final char currentChar = mTextView.getText().charAt(offset);
707 if (Character.isSurrogatePair(currentChar, nextChar)) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
org.sat4j.core_2.2.0.v20100429.jar 
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/internal/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 

Completed in 1620 milliseconds

1 2