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

/art/runtime/
H A Dutf-inl.h42 const char* utf8_2) {
46 c2 = *utf8_2;
55 utf8_2++;
66 c2 = ((c2 & 0x1f) << 6) | (*utf8_2 & 0x3f);
69 c2 = ((c2 & 0x0f) << 12) | ((utf8_2[0] & 0x3f) << 6) | (utf8_2[1] & 0x3f);
88 c2 = ((c2 & 0x1f) << 6) | (*utf8_2 & 0x3f);
89 utf8_2++;
92 c2 = ((c2 & 0x0f) << 12) | ((utf8_2[0] & 0x3f) << 6) | (utf8_2[
41 CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(const char* utf8_1, const char* utf8_2) argument
[all...]
H A Dutf.h59 const char* utf8_2);
65 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8_1, const uint16_t* utf8_2);
H A Dutf.cc96 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8_1, const uint16_t* utf8_2) { argument
99 return (*utf8_2 == '\0') ? 0 : -1;
100 } else if (*utf8_2 == '\0') {
105 int c2 = *utf8_2;

Completed in 51 milliseconds