Lines Matching refs:uChar
128 uChar(name.characters(), name.length(), false);
417 uChar(properties.characters(), properties.length(), false);
718 void CacheBuilder::Debug::uChar(const UChar* name, unsigned len, bool hex) {
719 const UChar* end = name + len;
744 if (wroteHex && WTF::isASCIIHexDigit((UChar) ch))
770 void CacheBuilder::Debug::wideString(const UChar* chars, int length, bool hex) {
775 uChar(chars, length, hex);
1530 static bool strCharCmp(const char* matches, const UChar* test, int wordLength,
1597 static bool isUnicodeSpace(UChar ch)
1602 static bool validZip(int stateIndex, const UChar* zipPtr)
1687 CacheBuilder::FoundState CacheBuilder::FindAddress(const UChar* chars,
1705 CacheBuilder::FoundState CacheBuilder::FindPartialAddress(const UChar* baseChars,
1706 const UChar* chars, unsigned length, FindState* s)
1824 UChar ch = s->mCurrent;
1826 UChar prior = ch;
1934 const UChar* candidate = s->mWords[s->mWordCount];
1935 UChar firstLetter = candidate[0];
1960 UChar secondLetter = candidate[1];
2057 UChar candChar = s->mWords[s->mWordCount - 1][candIndex];
2180 const UChar* test = s->mWords[wordsIndex];
2181 UChar letter = test[0];
2285 CacheBuilder::FoundState CacheBuilder::FindPartialEMail(const UChar* chars, unsigned length,
2348 const UChar* start = chars;
2349 const UChar* end = chars + length;
2351 UChar ch = *chars++;
2354 const UChar* atLocation = chars - 1;
2365 UChar firstLetter = *chars++ | 0x20; // first letter of the domain
2424 UChar firstChar = *chars;
2441 CacheBuilder::FoundState CacheBuilder::FindPartialNumber(const UChar* chars, unsigned length,
2445 UChar* store = s->mStorePtr;
2446 const UChar* start = chars;
2447 const UChar* end = chars + length;
2448 const UChar* lastDigit = NULL;
2456 UChar ch = s->mCurrent = *chars;
2524 CacheBuilder::FoundState CacheBuilder::FindPhoneNumber(const UChar* chars, unsigned length,
2639 bool CacheBuilder::IsDomainChar(UChar ch)
2653 const UChar* baseChars = string->characters();
2654 // const UChar* originalBase = baseChars;
2703 const UChar* chars = baseChars + start;
2748 const UChar* store = findState.mStore;
2862 bool CacheBuilder::IsMailboxChar(UChar ch)
3129 static inline bool isNotSpace(UChar c)
3142 const UChar* chars = string->characters();