HomeSort by relevance Sort by last modified time
    Searched defs:surrogate_pair (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/strings/
string16_unittest.cc 37 string16 surrogate_pair; local
38 surrogate_pair.push_back(0xd800);
39 surrogate_pair.push_back(0xdf00);
40 surrogate_pair.push_back('z');
49 << surrogate_pair << "," << unterminated_surrogate;
  /art/runtime/
utf-inl.h 62 uint32_t surrogate_pair = 0; local
65 surrogate_pair |= ((code_point >> 10) + 0xd7c0) & 0xffff;
67 surrogate_pair |= ((code_point & 0x03ff) + 0xdc00) << 16;
69 return surrogate_pair;

Completed in 117 milliseconds