Lines Matching full:text16
424 - // to being a pointer into text16 (equivalent text but in UCS-2).
425 - static void AdjustUTF8ToUCS2(const StringPiece& text8, const StringPiece& text16,
439 - spbegin = text16.begin() + sizeof(uint16)*nrune;
441 - spend = text16.begin() + sizeof(uint16)*nrune;
457 - // Rewrites *sp from begin a pointer into text16 (UCS-2)
459 - static void AdjustUCS2ToUTF8(const StringPiece& text16, const StringPiece& text8,
472 - if (nrune == (sp->begin() - text16.begin())/2)
474 - if (nrune == (sp->end() - text16.begin())/2)
484 - << CEscape(text16) << " "
485 - << (int)(sp->begin() - text16.begin()) << " "
486 - << (int)(sp->end() - text16.begin());