Searched refs:utf8_minLegal (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/base/third_party/icu/ |
D | icu_utf.cc | 106 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; variable 193 if(illegal || (c)<utf8_minLegal[count] || (CBU_IS_SURROGATE(c) && strict!=-2)) { in utf8_nextCharSafeBody()
|
/external/icu/icu4c/source/common/ |
D | utf_impl.c | 81 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; variable 160 if(c>=utf8_minLegal[count] && in utf8_nextCharSafeBody() 257 …if(count>=4 || c>0x10ffff || c<utf8_minLegal[count] || (U_IS_SURROGATE(c) && strict!=-2) || (stric… in utf8_prevCharSafeBody()
|
D | ustrtrns.cpp | 261 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; variable 319 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) { in utf8_nextCharSafeBodyTerminated() 386 U_ASSERT(illegal || count<LENGTHOF(utf8_minLegal)); in utf8_nextCharSafeBodyPointer() 387 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) { in utf8_nextCharSafeBodyPointer()
|
D | ucnv_u8.c | 744 utf8_minLegal[5]={ 0, 0, 0x80, 0x800, 0x10000 }; variable 920 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_UTF8FromUTF8()
|
D | ucnvmbcs.c | 4855 utf8_minLegal[5]={ 0, 0, 0x80, 0x800, 0x10000 }; variable 5064 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_SBCSFromUTF8() 5344 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_DBCSFromUTF8()
|
/external/chromium_org/third_party/icu/source/common/ |
D | utf_impl.c | 81 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; variable 160 if(c>=utf8_minLegal[count] && in utf8_nextCharSafeBody() 257 …if(count>=4 || c>0x10ffff || c<utf8_minLegal[count] || (U_IS_SURROGATE(c) && strict!=-2) || (stric… in utf8_prevCharSafeBody()
|
D | ustrtrns.cpp | 261 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; variable 319 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) { in utf8_nextCharSafeBodyTerminated() 386 U_ASSERT(illegal || count<LENGTHOF(utf8_minLegal)); in utf8_nextCharSafeBodyPointer() 387 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) { in utf8_nextCharSafeBodyPointer()
|
D | ucnv_u8.c | 753 utf8_minLegal[5]={ 0, 0, 0x80, 0x800, 0x10000 }; variable 929 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_UTF8FromUTF8()
|
D | ucnvmbcs.c | 4855 utf8_minLegal[5]={ 0, 0, 0x80, 0x800, 0x10000 }; variable 5064 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_SBCSFromUTF8() 5344 (c-=utf8_offsets[toULength])>=utf8_minLegal[toULength] && in ucnv_DBCSFromUTF8()
|