HomeSort by relevance Sort by last modified time
    Searched refs:currentChar (Results 1 - 17 of 17) sorted by null

  /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...]
  /libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 117 int currentChar = lastChar;
118 if (currentChar == -1) {
119 currentChar = in.read();
123 switch (currentChar) {
125 currentChar = '\n';
134 return currentChar;
177 int currentChar;
179 currentChar = read();
186 if (currentChar == -1) {
189 buffer[offset + i] = (byte) currentChar;
    [all...]
StreamTokenizer.java 262 int currentChar = peekChar == -2 ? read() : peekChar;
264 if (lastCr && currentChar == '\n') {
266 currentChar = read();
268 if (currentChar == -1) {
272 byte currentType = currentChar > 255 ? TOKEN_WORD
273 : tokenTypes[currentChar];
278 if (currentChar == '\r') {
285 if ((currentChar = read()) == '\n') {
286 currentChar = read();
288 } else if (currentChar == '\n')
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-003.js 51 for ( var currentChar = 0, strippedString="";
52 currentChar < s.length; currentChar++ )
54 if (!IsWhiteSpace(s.charAt(currentChar))) {
55 strippedString += s.charAt(currentChar);
function-002.js 98 for ( var currentChar = 0; currentChar < s.length; currentChar++ ) {
99 if (!IsWhiteSpace(s.charAt(currentChar))) {
100 strippedString += s.charAt(currentChar);
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 77 char currentChar = (char)(currentByte & 0xffff);
80 (Character.isISOControl(currentChar) ? '.' : currentChar));
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 197 char currentChar = buf.charAt(i);
199 if (currentChar == ' ')
207 else if (currentChar == '\\')
  /libcore/luni/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 190 char currentChar = buf.charAt(i);
192 if (currentChar == ' ')
200 else if (currentChar == '\\')
  /cts/tools/dx-tests/src/util/
CollectAllTests.java 400 char currentChar;
402 while ((currentChar = (char) reader.read()) != -1 && blocks > 0) {
403 switch (currentChar) {
406 builder.append(currentChar);
411 builder.append(currentChar);
415 builder.append(currentChar);
  /external/icu4c/layout/
IndicReordering.cpp     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 267 char currentChar = wordComposer.getTypedWord().charAt(0);
269 char currentCharUpper = Character.toUpperCase(currentChar);
273 if (mBigramSuggestions.get(i).charAt(0) == currentChar
ExpandableDictionary.java 293 final int currentChar = currentChars[j];
294 if (currentChar == -1) {
297 if (currentChar == lowerC || currentChar == c) {
472 char currentChar = word.charAt(offset);
475 if (node.code == currentChar) {
  /cts/tools/vm-tests/src/util/build/
BuildDalvikSuite.java 714 char currentChar;
716 while ((currentChar = (char) reader.read()) != -1 && blocks > 0) {
717 switch (currentChar) {
720 builder.append(currentChar);
725 builder.append(currentChar);
729 builder.append(currentChar);
  /packages/inputmethods/LatinIME/native/src/
dictionary.cpp 567 unsigned short currentChar = (unsigned short) word[offset];
572 if (c == currentChar) {
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 401 milliseconds