Searched refs:ch1 (Results 1 - 4 of 4) sorted by last modified time

/frameworks/base/media/java/android/media/
H A DMediaScanner.java1581 char ch1 = line.charAt(0);
1582 boolean fullPath = (ch1 == '/' ||
1583 (Character.isLetter(ch1) && line.charAt(1) == ':' && line.charAt(2) == '\\'));
/frameworks/av/media/mtp/
H A DMtpStringBuffer.cpp150 uint16_t ch1 = *src++; local
151 if ((ch1 & 0x80) == 0) {
153 ch = ch1;
154 } else if ((ch1 & 0xE0) == 0xC0) {
157 ch = ((ch1 & 0x1F) << 6) | (ch2 & 0x3F);
162 ch = ((ch1 & 0x0F) << 12) | ((ch2 & 0x3F) << 6) | (ch3 & 0x3F);
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp526 UChar ch1 = chars[i]; local
527 if (::ublock_getCode(ch1) == UBLOCK_COMBINING_DIACRITICAL_MARKS) {
/frameworks/av/media/libmedia/
H A DMediaScannerClient.cpp100 uint8_t ch1, ch2; local
103 while ((ch1 = *chp++)) {
104 if (ch1 & 0x80) {
106 ch1 = ((ch1 << 6) & 0xC0) | (ch2 & 0x3F);
107 // ch1 is now the first byte of the potential native char
113 int ch = (int)ch1 << 8 | (int)ch2;

Completed in 6530 milliseconds