HomeSort by relevance Sort by last modified time
    Searched refs:isLegalUTF8 (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/unicode/
UTF8.cpp 206 static bool isLegalUTF8(const unsigned char* source, int length)
270 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(source), utf8SequenceLength)) {
345 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(data), utf8SequenceLength))
382 if (!isLegalUTF8(reinterpret_cast<const unsigned char*>(b), utf8SequenceLength))
  /external/clang/lib/Basic/
ConvertUTF.c 110 * If your compiler supports it, the "isLegalUTF8" call can be turned
354 static Boolean isLegalUTF8(const UTF8 *source, int length) {
390 return isLegalUTF8(source, length);
412 if (length > sourceEnd - *source || !isLegalUTF8(*source, length))
434 if (!isLegalUTF8(source, extraBytesToRead+1)) {
507 if (!isLegalUTF8(source, extraBytesToRead+1)) {
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 199 * If your compiler supports it, the "isLegalUTF8" call can be turned
287 isLegalUTF8(const UTF8 *source, int length) {
324 return isLegalUTF8(source, length);
342 if (! isLegalUTF8(source, extraBytesToRead+1)) {
468 if (! isLegalUTF8(source, extraBytesToRead+1)) {

Completed in 354 milliseconds