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

  /external/webkit/JavaScriptCore/wrec/
CharacterClassConstructor.h 73 m_matchesUnicode.begin(), m_matchesUnicode.size(),
91 Vector<UChar> m_matchesUnicode;
CharacterClassConstructor.cpp 215 addSorted(m_matchesUnicode, m_charBuffer);
219 addSorted(m_matchesUnicode, other);
247 addSorted(m_matchesUnicode, other.matchesUnicode[i]);
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 50 m_matchesUnicode.clear();
60 for (size_t i = 0; i < other->m_matchesUnicode.size(); ++i)
61 addSorted(m_matchesUnicode, other->m_matchesUnicode[i]);
77 addSorted(m_matchesUnicode, upper);
78 addSorted(m_matchesUnicode, lower);
80 addSorted(m_matchesUnicode, ch);
148 characterClass->m_matchesUnicode.append(m_matchesUnicode);
232 Vector<UChar> m_matchesUnicode;
    [all...]
RegexPattern.h 63 Vector<UChar> m_matchesUnicode;
RegexJIT.cpp 149 if (charClass->m_matchesUnicode.size() || charClass->m_rangesUnicode.size()) {
152 if (charClass->m_matchesUnicode.size()) {
153 for (unsigned i = 0; i < charClass->m_matchesUnicode.size(); ++i) {
154 UChar ch = charClass->m_matchesUnicode[i];
206 if (charClass->m_matchesUnicode.size() || charClass->m_rangesUnicode.size())
    [all...]
RegexInterpreter.cpp 265 for (unsigned i = 0; i < characterClass->m_matchesUnicode.size(); ++i)
266 if (ch == characterClass->m_matchesUnicode[i])
    [all...]

Completed in 32 milliseconds