Home | History | Annotate | Download | only in nav

Lines Matching refs:uChar

118     uChar(name.characters(), name.length(), false);
407 uChar(properties.characters(), properties.length(), false);
680 void CacheBuilder::Debug::uChar(const UChar* name, unsigned len, bool hex) {
681 const UChar* end = name + len;
706 if (wroteHex && WTF::isASCIIHexDigit((UChar) ch))
732 void CacheBuilder::Debug::wideString(const UChar* chars, int length, bool hex) {
737 uChar(chars, length, hex);
1416 static bool strCharCmp(const char* matches, const UChar* test, int wordLength,
1483 static bool isUnicodeSpace(UChar ch)
1488 static bool validZip(int stateIndex, const UChar* zipPtr)
1573 CacheBuilder::FoundState CacheBuilder::FindAddress(const UChar* chars,
1591 CacheBuilder::FoundState CacheBuilder::FindPartialAddress(const UChar* baseChars,
1592 const UChar* chars, unsigned length, FindState* s)
1710 UChar ch = s->mCurrent;
1712 UChar prior = ch;
1820 const UChar* candidate = s->mWords[s->mWordCount];
1821 UChar firstLetter = candidate[0];
1846 UChar secondLetter = candidate[1];
1943 UChar candChar = s->mWords[s->mWordCount - 1][candIndex];
2066 const UChar* test = s->mWords[wordsIndex];
2067 UChar letter = test[0];
2171 CacheBuilder::FoundState CacheBuilder::FindPartialEMail(const UChar* chars, unsigned length,
2234 const UChar* start = chars;
2235 const UChar* end = chars + length;
2237 UChar ch = *chars++;
2240 const UChar* atLocation = chars - 1;
2251 UChar firstLetter = *chars++ | 0x20; // first letter of the domain
2310 UChar firstChar = *chars;
2327 CacheBuilder::FoundState CacheBuilder::FindPartialNumber(const UChar* chars, unsigned length,
2331 UChar* store = s->mStorePtr;
2332 const UChar* start = chars;
2333 const UChar* end = chars + length;
2334 const UChar* lastDigit = NULL;
2342 UChar ch = s->mCurrent = *chars;
2410 CacheBuilder::FoundState CacheBuilder::FindPhoneNumber(const UChar* chars, unsigned length,
2525 bool CacheBuilder::IsDomainChar(UChar ch)
2539 const UChar* baseChars = string->characters();
2540 // const UChar* originalBase = baseChars;
2589 const UChar* chars = baseChars + start;
2634 const UChar* store = findState.mStore;
2745 bool CacheBuilder::IsMailboxChar(UChar ch)
2989 static inline bool isNotSpace(UChar c)
3002 const UChar* chars = string->characters();