Home
last modified time | relevance | path

Searched refs:CharacterRange (Results 1 – 6 of 6) sorted by relevance

/external/webkit/JavaScriptCore/wrec/
DCharacterClass.cpp49 static const CharacterRange asciiDigitsRange[1] = { { '0', '9' } }; in digits()
62 static const CharacterRange asciiSpacesRange[1] = { { '\t', '\r' } }; in spaces()
64 static const CharacterRange unicodeSpacesRange[1] = { { 0x2000, 0x200a } }; in spaces()
77 … static const CharacterRange asciiWordcharRange[3] = { { '0', '9' }, { 'A', 'Z' }, { 'a', 'z' } }; in wordchar()
89 static const CharacterRange asciiNondigitsRange[2] = { { 0, '0' - 1 }, { '9' + 1, 0x7f } }; in nondigits()
90 static const CharacterRange unicodeNondigitsRange[1] = { { 0x0080, 0xffff } }; in nondigits()
102 …static const CharacterRange asciiNonspacesRange[3] = { { 0, '\t' - 1 }, { '\r' + 1, ' ' - 1 }, { '… in nonspaces()
103 static const CharacterRange unicodeNonspacesRange[9] = { in nonspaces()
126 …static const CharacterRange asciiNonwordcharRange[4] = { { 0, '0' - 1 }, { '9' + 1, 'A' - 1 }, { '… in nonwordchar()
127 static const CharacterRange unicodeNonwordcharRange[1] = { { 0x0080, 0xffff } }; in nonwordchar()
DCharacterClass.h37 struct CharacterRange { struct
54 const CharacterRange* ranges; argument
60 const CharacterRange* rangesUnicode;
DCharacterClassConstructor.h82 void addSortedRange(Vector<CharacterRange>& ranges, UChar lo, UChar hi);
90 Vector<CharacterRange> m_ranges;
92 Vector<CharacterRange> m_rangesUnicode;
DCharacterClassConstructor.cpp64 void CharacterClassConstructor::addSortedRange(Vector<CharacterRange>& ranges, UChar lo, UChar hi) in addSortedRange()
78 CharacterRange r = {lo, hi}; in addSortedRange()
107 CharacterRange r = {lo, hi}; in addSortedRange()
DWRECGenerator.h45 class CharacterRange; variable
86 …terClassInvertedRange(JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsig…
DWRECGenerator.cpp349 …terClassInvertedRange(JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsig… in generateCharacterClassInvertedRange()