Lines Matching refs:text8
423 - // Rewrites *sp from being a pointer into text8 (UTF-8)
425 - static void AdjustUTF8ToUCS2(const StringPiece& text8, const StringPiece& text16,
427 - if (sp->begin() == NULL && text8.begin() != NULL)
433 - const char* p = text8.begin();
434 - const char* ep = text8.end();
450 - << CEscape(text8) << " "
451 - << (int)(sp->begin() - text8.begin()) << " "
452 - << (int)(sp->end() - text8.begin());
458 - // to being a pointer into text8 (equivalent text but in UTF-8).
459 - static void AdjustUCS2ToUTF8(const StringPiece& text16, const StringPiece& text8,
467 - const char* p = text8.begin();
468 - const char* ep = text8.end();
482 - if (text8.begin() != NULL && (spbegin == NULL || spend == NULL)) {