/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 116 char hex1 = Character.toUpperCase(Character.forDigit((b >> 4) & 0xF, 16)); in encodeQuotedPrintable() 117 char hex2 = Character.toUpperCase(Character.forDigit(b & 0xF, 16)); in encodeQuotedPrintable() 182 int u = Character.digit((char) bytes[++i], 16); in decodeQuotedPrintable() 183 int l = Character.digit((char) bytes[++i], 16); in decodeQuotedPrintable()
|
D | URLCodec.java | 133 char hex1 = Character.toUpperCase( in encodeUrl() 134 Character.forDigit((b >> 4) & 0xF, 16)); in encodeUrl() 135 char hex2 = Character.toUpperCase( in encodeUrl() 136 Character.forDigit(b & 0xF, 16)); in encodeUrl() 167 int u = Character.digit((char)bytes[++i], 16); in decodeUrl() 168 int l = Character.digit((char)bytes[++i], 16); in decodeUrl()
|
/external/jdiff/src/jdiff/ |
D | HTMLIndexes.java | 143 char swu = Character.toUpperCase(sw); in generateLetterIndex() 144 if (swu != Character.toUpperCase(oldsw)) { in generateLetterIndex() 146 if (Character.toUpperCase(sw) != Character.toUpperCase(currChar)) { in generateLetterIndex() 298 if (Character.toUpperCase(sw) != Character.toUpperCase(oldsw)) { in emitPackageIndexEntry() 302 h_.writeText("<A NAME=\"" + Character.toUpperCase(res) + "\"></A>"); in emitPackageIndexEntry() 495 if (Character.toUpperCase(sw) != Character.toUpperCase(oldsw)) { in emitClassIndexEntry() 498 h_.writeText("<A NAME=\"" + Character.toUpperCase(res) + "\"></A>"); in emitClassIndexEntry() 502 … h_.writeText("<br><font size=\"+2\">" + Character.toUpperCase(sw) + "</font> "); in emitClassIndexEntry() 598 if (Character.toUpperCase(sw) != Character.toUpperCase(oldsw)) { in emitCtorIndexEntry() 601 h_.writeText("<A NAME=\"" + Character.toUpperCase(res) + "\"></A>"); in emitCtorIndexEntry() [all …]
|
D | Comments.java | 269 if (Character.isWhitespace(nextChar)) continue; in convertAtLinks() 273 } else if (!Character.isWhitespace(nextChar)) { in convertAtLinks() 287 } else if (Character.isWhitespace(c)) { in convertAtLinks() 303 if (Character.isWhitespace(c)) { in convertAtLinks()
|
/external/apache-http/src/org/apache/http/message/ |
D | BasicTokenIterator.java | 373 return ((ch == '\t') || Character.isSpaceChar(ch)); in isWhitespace() 392 if (Character.isLetterOrDigit(ch)) in isTokenChar() 396 if (Character.isISOControl(ch)) in isTokenChar()
|
/external/proguard/src/proguard/ |
D | WordReader.java | 135 Character.isWhitespace(currentLine.charAt(currentIndex))) in nextWord() 169 Character.isWhitespace(currentLine.charAt(currentIndex))) in nextWord() 217 Character.isWhitespace(currentCharacter)) in nextWord()
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | RefinedSoundex.java | 143 if (!Character.isLetter(c)) { in getMappingCode() 146 return this.soundexMapping[Character.toUpperCase(c) - 'A']; in getMappingCode()
|
D | SoundexUtils.java | 47 if (Character.isLetter(str.charAt(i))) { in clean()
|
/external/proguard/src/proguard/obfuscate/ |
D | DictionaryNameFactory.java | 70 Character.isJavaIdentifierStart((char)c) : in DictionaryNameFactory() 71 Character.isJavaIdentifierPart((char)c))) in DictionaryNameFactory()
|
/external/icu4c/data/brkitr/ |
D | char.txt | 7 # ICU Character Break Rules, also known as Grapheme Cluster Boundaries 15 # Character Class Definitions.
|
D | word_ja.txt | 18 # Character class definitions from TR 29 26 # Character Class Definitions.
|
D | word_POSIX.txt | 18 # Character class definitions from TR 29 26 # Character Class Definitions.
|
D | word.txt | 18 # Character class definitions from TR 29 26 # Character Class Definitions.
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | Parser.java | 573 else if (Character.isLetter(ch) || in expandEntities() 574 Character.isDigit(ch) || in expandEntities() 657 if (Character.toLowerCase(buff[offset + i]) != Character.toLowerCase(currentName.charAt(i))) { in etag_cdata() 912 if (Character.isWhitespace(c)) { in split() 983 if (!Character.isWhitespace(buff[offset+i])) { in pcdata() 1082 if (Character.isLetter(ch) || ch == '_') { in makeName() 1086 else if (Character.isDigit(ch) || ch == '-' || ch == '.') { in makeName()
|
D | HTMLScanner.java | 440 else if (theState == S_ENT && Character.isLetterOrDigit(ch1)) { in scan() 444 else if (theState == S_NCR && Character.isDigit(ch1)) { in scan() 448 else if (theState == S_XNCR && (Character.isDigit(ch1) || "abcdefABCDEF".indexOf(ch1) != -1)) { in scan()
|
/external/junit/src/junit/swingui/ |
D | TestSelector.java | 84 return ch == Character.toUpperCase(s.charAt(typeIndex(s))); in matchesKey() 239 if (!Character.isJavaIdentifierStart(ch)) in keySelectTestClass() 243 if (TestCellRenderer.matchesKey(s, Character.toUpperCase(ch))) { in keySelectTestClass()
|
/external/gdata/src/com/google/wireless/gdata/data/ |
D | StringUtils.java | 37 if (!Character.isWhitespace(string.charAt(i))) { in isEmptyOrWhitespace()
|
/external/junit/src/junit/framework/ |
D | Assert.java | 172 assertEquals(message, new Character(expected), new Character(actual)); in assertEquals()
|
/external/icu4c/data/translit/ |
D | en.txt | 21 "%Translit%UnicodeChar" { "Unicode Character" }
|
/external/proguard/src/proguard/io/ |
D | DataEntryRewriter.java | 87 if (Character.isJavaIdentifierPart(c) || in copyData()
|
D | DataEntryObfuscator.java | 84 if (!Character.isLetterOrDigit(c)) in renamedDataEntry()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Hex.java | 85 int digit = Character.digit(ch, 16); in toDigit()
|
/external/proguard/src/proguard/util/ |
D | ListUtil.java | 117 Character.isWhitespace(string.charAt(index))) in skipWhitespace()
|
/external/webkit/WebCore/platform/text/mac/ |
D | character-sets.txt | 60 Character Set Reference 807 Source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990 820 Source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990 856 Source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990 877 Source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990 1074 Source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990 1740 [RFC1345] Simonsen, K., "Character Mnemonics & Character Sets", 1755 Character Encoding for Internet Messages", RFC 1468, 1758 [RFC1489] Chernov, A., "Registration of a Cyrillic Character Set", 1768 [RFC1557] Choi, U., Chon, K., and H. Park, "Korean Character Encoding [all …]
|
/external/webkit/WebCore/dom/ |
D | Position.h | 46 Character, // Move to the next Unicode character break. enumerator
|