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

1 2

  /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 120 int currentChar = lastChar;
121 if (currentChar == -1) {
122 currentChar = in.read();
126 switch (currentChar) {
128 currentChar = '\n';
137 return currentChar;
173 int currentChar;
175 currentChar = read();
182 if (currentChar == -1) {
185 buffer[offset + 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...]
  /external/webkit/Source/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 82 char currentChar = (char)(currentByte & 0xffff);
85 (Character.isISOControl(currentChar) ? '.' : currentChar));
  /external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java 98 * @param currentChar the character received
101 InternalState getNextState(InternalState from, int currentChar) {
103 if (from == null || currentChar < 0)
112 if (currentChar < MAX_CHARS) {
113 result = stateTable[id][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 == '\\')
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 551 char currentChar;
553 while ((currentChar = (char) reader.read()) != -1 && blocks > 0) {
554 switch (currentChar) {
557 builder.append(currentChar);
562 builder.append(currentChar);
566 builder.append(currentChar);
  /external/icu4c/layout/
IndicReordering.cpp     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 494 final int currentChar = currentChars[j];
495 if (currentChar == Constants.NOT_A_CODE) {
498 if (currentChar == lowerC || currentChar == c) {
678 final char currentChar = word.charAt(offset);
681 if (node.mCode == currentChar) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 826 public char currentChar() { return desc.charAt(curPos); }
832 char c = currentChar();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.sat4j.core_2.2.0.v20100429.jar 
org.eclipse.pde.core_3.6.1.v20100902_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 
  /frameworks/base/core/java/android/widget/
Editor.java 688 final char currentChar = mTextView.getText().charAt(offset);
690 if (Character.isSurrogatePair(currentChar, nextChar)) {
    [all...]
  /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 513 milliseconds

1 2