Searched refs:isLegalUTF8 (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp248 static bool isLegalUTF8(const unsigned char* source, int length) function in namespace:WTF::Unicode
312 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(source), utf8SequenceLength)) {
398 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(data), utf8SequenceLength))
436 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(b), utf8SequenceLength))
/external/llvm/lib/Support/
H A DConvertUTF.c111 * If your compiler supports it, the "isLegalUTF8" call can be turned
355 static Boolean isLegalUTF8(const UTF8 *source, int length) { function
391 return isLegalUTF8(source, length);
506 if (length > sourceEnd - *source || !isLegalUTF8(*source, length))
528 if (!isLegalUTF8(source, extraBytesToRead+1)) {
620 if (!isLegalUTF8(source, extraBytesToRead+1)) {
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c199 * If your compiler supports it, the "isLegalUTF8" call can be turned
287 isLegalUTF8(const UTF8 *source, int length) { function
324 return isLegalUTF8(source, length);
342 if (! isLegalUTF8(source, extraBytesToRead+1)) {
468 if (! isLegalUTF8(source, extraBytesToRead+1)) {

Completed in 1076 milliseconds