HomeSort by relevance Sort by last modified time
    Searched full:unicodecurr (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/wrec/
CharacterClassConstructor.cpp 153 UChar unicodeCurr = std::max(lo, (UChar)0x80);
154 addSortedRange(m_rangesUnicode, unicodeCurr, hi);
158 while (unicodeCurr <= hi) {
160 for (; jsc_pcre_ucp_othercase(unicodeCurr) == -1; ++unicodeCurr) {
162 if (unicodeCurr == hi)
165 // if we fall through to here, unicodeCurr <= hi & has another case. Get the other case.
166 UChar rangeStart = unicodeCurr;
167 UChar otherCurr = jsc_pcre_ucp_othercase(unicodeCurr);
169 // If unicodeCurr is not yet hi, check the next char in the range. If it also has another case
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 111 uint32_t unicodeCurr = std::max(lo, (UChar)0x80);
112 addSortedRange(m_rangesUnicode, unicodeCurr, hi);
115 while (unicodeCurr <= hi) {
117 // unicodeCurr in this loop may take it to 0x10000. This is fine
120 // to represent unicodeCurr, we must use a 32-bit value instead.
121 ASSERT(unicodeCurr <= 0xffff);
123 if (isUnicodeUpper(unicodeCurr)) {
124 UChar lowerCaseRangeBegin = Unicode::toLower(unicodeCurr);
126 while ((++unicodeCurr <= hi) && isUnicodeUpper(unicodeCurr) && (Unicode::toLower(unicodeCurr) == (lowerCaseRangeEnd + 1))
    [all...]

Completed in 703 milliseconds