382383384385386387388389390391392
int i = m_start; int j = 0; while (n-- != 0) { if (fsb.charAt(i) != str.charAt(j)) { return false; } i++;
421422423424425426427428429430431
int i = m_start; int j = 0; while (n-- != 0) { if (fsb.charAt(i) != anotherString.charAt(j)) { return false; } i++;
515516517518519520521522523524525
int i = m_start; int j = 0; while (n-- != 0) { char c1 = fsb.charAt(i); char c2 = xstr.charAt(j); if (c1 != c2) { return c1 - c2;
562563564565566567568569570571572
int i = m_start; int j = 0; while (n-- != 0) { char c1 = Character.toLowerCase(fsb.charAt(i)); char c2 = Character.toLowerCase(xstr.charAt(j)); if (c1 != c2) { return c1 - c2;
657658659660661662663664665666667
return false; } while (--pc >= 0) { if (fsb.charAt(to) != prefix.charAt(po)) { return false; } to++;
758759760761762763764765766767768
return -1; } for (int i = m_start + fromIndex; i < max; i++) { if (fsb.charAt(i) == ch) { return i - m_start; } }
901902903904905906907908909910911
int d = 0; boolean pres = false; for (int s = m_start; s < end; s++) { char c = fsb.charAt(s); if (isSpace(c)) { if (!pres) {
10001001100210031004100510061007100810091010
double doubleResult; int overflow=0; // Scan past leading whitespace characters while(start< end && XMLCharacterRecognizer.isWhiteSpace( fsb.charAt(start) ) ) ++start; if (start < end && fsb.charAt(start) == '-') {
10041005100610071008100910101011101210131014
while(start< end && XMLCharacterRecognizer.isWhiteSpace( fsb.charAt(start) ) ) ++start; if (start < end && fsb.charAt(start) == '-') { isNegative=true; start++; }
10131014101510161017101810191020102110221023
} // parse the string from left to right converting as an integer. for (int i = start; i < end; i++) { char c = fsb.charAt(i); if(XMLCharacterRecognizer.isWhiteSpace(c)) { trailingSpace=true; break; // Trailing whitespace is ignored