Searched refs:currentChar (Results 1 – 7 of 7) sorted by relevance
51 for ( var currentChar = 0, strippedString="";52 currentChar < s.length; currentChar++ )54 if (!IsWhiteSpace(s.charAt(currentChar))) {55 strippedString += s.charAt(currentChar);
98 for ( var currentChar = 0; currentChar < s.length; currentChar++ ) {99 if (!IsWhiteSpace(s.charAt(currentChar))) {100 strippedString += s.charAt(currentChar);
101 InternalState getNextState(InternalState from, int currentChar) { in getNextState() argument103 if (from == null || currentChar < 0) in getNextState()112 if (currentChar < MAX_CHARS) { in getNextState()113 result = stateTable[id][currentChar]; in getNextState()
190 char currentChar = buf.charAt(i); in replaceChars() local192 if (currentChar == ' ') in replaceChars()200 else if (currentChar == '\\') in replaceChars()
197 char currentChar = buf.charAt(i); in replaceChars() local199 if (currentChar == ' ') in replaceChars()207 else if (currentChar == '\\') in replaceChars()
1201 LEUnicode currentChar; in getDynamicProperties() local1213 …for ( currentChar = classTable->firstChar ; currentChar <= classTable->lastChar ; currentChar++ ) { in getDynamicProperties()1214 if ( classTable->isVirama(currentChar)) { in getDynamicProperties()1215 virama = currentChar; in getDynamicProperties()1221 …for ( currentChar = classTable->firstChar ; currentChar <= classTable->lastChar ; currentChar++ ) { in getDynamicProperties()1222 if ( classTable->isConsonant(currentChar)) { in getDynamicProperties()
826 public char currentChar() { return desc.charAt(curPos); } in currentChar() method in Descriptor.Iterator832 char c = currentChar(); in is2byte()