Searched refs:ch (Results 1 – 6 of 6) sorted by relevance
68 char ch = s.charAt(i); in countBytes() local69 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() local91 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 …]
73 char ch = current.charAt(i); in parseHeaderGroup() local74 if (ch != ' ' && ch != '\t') { in parseHeaderGroup()
... , int) throws java.io.IOException char ch int i int l Object headGroup Object inbuffer int maxHeaderCount ...
838 @????: mark-local-int . <- v73:"ch"C931 ch) . <- v30:Ljava/lang/StringBuilder; v99:I=32
179 function isWordChar(ch) { argument180 return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');390 var ch = plainText.charAt(i);392 switch (ch) {
303 char ch = descr.charAt(offset + i); in descriptorToDot() local304 buf[i] = (ch == '/') ? '.' : ch; in descriptorToDot()