Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dex/
DMutf8.java68 char ch = s.charAt(i); in countBytes() local
69 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. in countBytes()
71 } else if (ch <= 2047) { in countBytes()
90 char ch = s.charAt(i); in encode() local
91 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. in encode()
92 dst[offset++] = (byte) ch; in encode()
93 } else if (ch <= 2047) { in encode()
94 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6))); in encode()
95 dst[offset++] = (byte) (0x80 | (0x3f & ch)); in encode()
97 dst[offset++] = (byte) (0xe0 | (0x0f & (ch >> 12))); in encode()
[all …]
/dalvik/dx/tests/087-ssa-local-vars/
DBlort.java73 char ch = current.charAt(i); in parseHeaderGroup() local
74 if (ch != ' ' && ch != '\t') { in parseHeaderGroup()
DBlort.class ... , int) throws java.io.IOException char ch int i int l Object headGroup Object inbuffer int maxHeaderCount ...
Dexpected.txt838 @????: mark-local-int . <- v73:"ch"C
931 ch) . <- v30:Ljava/lang/StringBuilder; v99:I=32
/dalvik/docs/
Dprettify.js179 function isWordChar(ch) { argument
180 return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');
390 var ch = plainText.charAt(i);
392 switch (ch) {
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DOutput.java303 char ch = descr.charAt(offset + i); in descriptorToDot() local
304 buf[i] = (ch == '/') ? '.' : ch; in descriptorToDot()