/external/icu/icu4c/source/common/unicode/ |
uchar.h | 35 * The actual Unicode Character Database (UCD) data is stored in uprops.dat 48 * This C API provides low-level access to the Unicode Character Database. 52 * Unicode assigns each code point (not just assigned character) values for 58 * "About the Unicode Character Database" (http://www.unicode.org/ucd/) 61 * Many functions are designed to match java.lang.Character functions. 63 * and see the JDK 1.4 java.lang.Character documentation 64 * at http://java.sun.com/j2se/1.4/docs/api/java/lang/Character.html 72 * There are also only a few, broad C/POSIX character classes, and they tend 80 * ICU 3.4 and later provides API access for all twelve C/POSIX character classes. 85 * API access for C/POSIX character classes is as follows [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
SlimLexer.cs | 328 /** <summary>What is the index of the current character of lookahead?</summary> */ 359 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting " + GetCharErrorDisplay( mte.Expecting ); 367 msg = "no viable alternative at character " + GetCharErrorDisplay( e.Character ); 373 msg = "required (...)+ loop did not match anything at character " + GetCharErrorDisplay( e.Character ); 378 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; 383 msg = "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
Encodings.properties | 91 # Variant of Cp850 with Euro character 126 # Latin-1 character set for EBCDIC hosts 128 # Variant of Cp037 with Euro character 130 # Variant of Cp273 with Euro character 132 # Variant of Cp277 with Euro character 134 # Variant of Cp278 with Euro character 136 # Variant of Cp280 with Euro character 138 # Variant of Cp284 with Euro character 140 # Variant of Cp285 with Euro character 142 # Variant of Cp297 with Euro character [all...] |
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ |
CharsTest.java | 43 private static final char LEAST = Character.MIN_VALUE; 44 private static final char GREATEST = Character.MAX_VALUE; 51 assertEquals(((Character) value).hashCode(), Chars.hashCode(value)); 90 Character.valueOf(x).compareTo(y), 263 List<Character> none = Arrays.<Character>asList(); 266 List<Character> one = Arrays.asList((char) 1); 271 List<Character> three = Arrays.asList((char) 0, (char) 1, 'A'); 280 List<Character> list = Chars.asList(VALUES).subList(0, i); 281 Collection<Character> misleadingSize [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
Utf8Test.java | 49 newString(Character.MIN_HIGH_SURROGATE, Character.MIN_LOW_SURROGATE))); 60 utf8Lengths.put(Character.MIN_SUPPLEMENTARY_CODE_POINT - 1, 3); 61 utf8Lengths.put(Character.MIN_SUPPLEMENTARY_CODE_POINT, 4); 62 utf8Lengths.put(Character.MAX_CODE_POINT, 4); 86 testEncodedLengthFails(newString(Character.MIN_HIGH_SURROGATE), 0); 87 testEncodedLengthFails("foobar" + newString(Character.MIN_HIGH_SURROGATE), 6); 88 testEncodedLengthFails(newString(Character.MIN_LOW_SURROGATE), 0); 89 testEncodedLengthFails("foobar" + newString(Character.MIN_LOW_SURROGATE), 6); 92 Character.MIN_HIGH_SURROGATE [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
ucoleitr.h | 44 * character of an international string. Use the iterator to return the 45 * ordering priority of the positioned character. The ordering priority of a 46 * character, which we refer to as a key, defines how a character is collated 81 * ucol_prev() returns the collation order of the previous character. 93 * Character based on the comparison level of the collator. A collation order 150 * A single character may contain more than one collation element. 162 * A single character may contain more than one collation element. 209 * Get the offset of the current source character. 210 * This is an offset into the text of the character containing the curren [all...] |
/libcore/ojluni/src/main/java/java/net/ |
URLEncoder.java | 61 * <li>The space character "<code> </code>" is 65 * represented by the 3-character string 76 * "The+string+%C3%BC%40foo-bar" because in UTF-8 the character 78 * character @ is encoded as one byte 40 (hex). 107 * unescaped character to appear. 120 * character which is clearly not unreserved according to the 193 * <a href="../lang/package-summary.html#charenc">character 222 //System.out.println("Examining character: " + c); 236 * If this character represents the start of a Unicode 241 * any other character [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/paper-action-dialog/ |
paper-char-counter.html | 12 Material Design: <a href="http://www.google.com/design/spec/components/text-fields.html#text-fields-character-counter">Character counter</a> 14 `paper-char-counter` adds a character counter for paper input fields with a character restriction in place. 78 * If false, don't show the character counter. Used in conjunction with
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-input/ |
paper-char-counter.html | 12 Material Design: <a href="http://www.google.com/design/spec/components/text-fields.html#text-fields-character-counter">Character counter</a> 14 `paper-char-counter` adds a character counter for paper input fields with a character restriction in place. 78 * If false, don't show the character counter. Used in conjunction with
|
/external/guava/guava-tests/test/com/google/common/escape/ |
ArrayBasedUnicodeEscaperTest.java | 33 private static final Map<Character, String> NO_REPLACEMENTS = 35 private static final Map<Character, String> SIMPLE_REPLACEMENTS = 46 Character.MIN_VALUE, Character.MAX_CODE_POINT, null) { 105 // Replacements are applied first regardless of whether the character is in
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
FCDUTF16CollationIterator.java | 116 if(Character.isHighSurrogate(c) && pos != limit && 117 Character.isLowSurrogate(trail = seq.charAt(pos))) { 119 return Character.toCodePoint(c, trail); 151 if(Character.isLowSurrogate(c) && pos != start && 152 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) { 154 return Character.toCodePoint(lead, c); 254 // Fetch the next character's fcd16 value. 256 int c = Character.codePointAt(seq, p); 257 p += Character.charCount(c); 261 // FCD boundary before the [q, p[ character [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
Normalizer2.java | 45 * a character is guaranteed to be at a normalization boundary, 353 * "no" or "maybe" character: The end index is at a normalization boundary. 366 * Tests if the character always has a normalization boundary before it, 368 * If true, then the character does not normalization-interact with 370 * In other words, a string containing this character can be normalized 371 * by processing portions before this character and starting from this 372 * character independently. 374 * @param c character to test 380 * Tests if the character always has a normalization boundary after it, 382 * If true, then the character does not normalization-interact wit [all...] |
/external/icu/icu4c/source/common/ |
punycode.h | 49 * indicating that the corresponding character is to be 52 * the character. 85 * the corresponding character in dest. 92 * U_INVALID_CHAR_FOUND if a non-ASCII character 94 * or if an invalid character (not a-zA-Z0-9) is found
|
uinvchar.h | 72 * Get the ordinal number of an uppercase invariant character 86 * Compare two EBCDIC invariant-character strings in ASCII order. 94 * Compare two invariant-character strings in ASCII order. 106 * Converts an EBCDIC invariant character to lowercase ASCII. 114 * Converts an invariant character to lowercase ASCII.
|
/external/icu/icu4c/source/layout/ |
TibetanLayoutEngine.h | 104 * This method does Tibetan OpenType character processing. It assigns the OpenType feature 109 * @param chars - the input character context 110 * @param offset - the index of the first character to process 114 * @param glyphStorage - the glyph storage object. The glyph and character index arrays will be set. 120 * @return the output character count
|
/external/icu/icu4c/source/test/intltest/ |
nptrans.h | 65 * Map every character in input stream with mapping character 67 * For any individual character the mapping table may specify 68 * that that a character be mapped to nothing, mapped to one 69 * other character or to a string of other characters.
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
FCDUTF16CollationIterator.java | 114 if(Character.isHighSurrogate(c) && pos != limit && 115 Character.isLowSurrogate(trail = seq.charAt(pos))) { 117 return Character.toCodePoint(c, trail); 149 if(Character.isLowSurrogate(c) && pos != start && 150 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) { 152 return Character.toCodePoint(lead, c); 252 // Fetch the next character's fcd16 value. 254 int c = Character.codePointAt(seq, p); 255 p += Character.charCount(c); 259 // FCD boundary before the [q, p[ character [all...] |
/external/libutf/ |
utf.7 | 11 UTF, Unicode, ASCII, rune \- character set and format 13 The Plan 9 character set and representation are 16 encoding (Universal Character 30 is a 16-bit quantity representing a Unicode character. 85 character set in a compatible way.
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
UnixFakeFileSystem.java | 55 * a path is valid if it starts with the '/' character, followed by zero or more names
65 // Any character but '/'
71 * Return true if the specified char is a separator character ('\' or '/')
73 * @param c - the character to test
74 * @return true if the specified char is a separator character ('\' or '/')
|
/external/pcre/dist/ |
pcre16_ord2utf16.c | 42 character value into a UTF16 string. */ 48 /* Generate code with 16 bit character support. */ 54 * Convert character value to UTF-16 * 58 and encodes it as a UTF-16 character in 1 to 2 pcre_uchars. 61 cvalue the character value
|
pcre32_ord2utf32.c | 42 character value into a UTF32 string. */ 48 /* Generate code with 32 bit character support. */ 54 * Convert character value to UTF-32 * 58 and encodes it as a UTF-32 character in 1 pcre_uchars. 61 cvalue the character value
|
/libcore/ojluni/src/main/java/sun/misc/ |
MessageUtils.java | 65 int index = Character.digit(patt.charAt(i + 1), 10); 96 * character conversion methods. 99 // Android-removed : Remove support for bypassing character conversion 106 * character conversion methods. 109 // Android-removed : Remove support for bypassing character conversion
|
/system/bt/embdrv/sbc/decoder/include/ |
oi_cpu_dep.h | 104 typedef unsigned char OI_BYTE; /**< Raw bytes type uses native character data type for target CPU. */ 119 typedef signed char OI_INT8; /**< 8-bit signed integer values use native signed character data type for x86 processor. */ 122 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character data type for x86 processor. */ 165 typedef signed char OI_INT8; /**< 8-bit signed integer values use native signed character data type for SH-3 processor. */ 168 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character data type for SH-3 processor. */ 187 typedef signed char OI_INT8; /**< 8-bit signed integer values use native signed character data type for SH-2 processor. */ 190 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character data type for SH-2 processor. */ 213 typedef signed char OI_INT8; /**< 8-bit signed integer values use native signed character data type for ARM7 processor. */ 216 typedef unsigned char OI_UINT8; /**< 8-bit unsigned integer values use native unsigned character data type for ARM7 processor. */ 242 typedef signed char OI_INT8; /**< 8-bit signed integer values use native signed character data type for M68000 processor. * [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
Hex.java | 39 result[15 - i] = Character.forDigit((int) v & 0x0f, 16); 55 result[7 - i] = Character.forDigit(v & 0x0f, 16); 71 result[5 - i] = Character.forDigit(v & 0x0f, 16); 87 result[3 - i] = Character.forDigit(v & 0x0f, 16); 119 result[1 - i] = Character.forDigit(v & 0x0f, 16); 135 result[0] = Character.forDigit(v & 0x0f, 16); 156 result[16 - i] = Character.forDigit((int) v & 0x0f, 16); 180 result[8 - i] = Character.forDigit(v & 0x0f, 16); 204 result[4 - i] = Character.forDigit(v & 0x0f, 16); 228 result[2 - i] = Character.forDigit(v & 0x0f, 16) [all...] |
/dalvik/dx/src/com/android/dx/util/ |
Hex.java | 39 result[15 - i] = Character.forDigit((int) v & 0x0f, 16); 55 result[7 - i] = Character.forDigit(v & 0x0f, 16); 71 result[5 - i] = Character.forDigit(v & 0x0f, 16); 87 result[3 - i] = Character.forDigit(v & 0x0f, 16); 119 result[1 - i] = Character.forDigit(v & 0x0f, 16); 135 result[0] = Character.forDigit(v & 0x0f, 16); 156 result[16 - i] = Character.forDigit((int) v & 0x0f, 16); 180 result[8 - i] = Character.forDigit(v & 0x0f, 16); 204 result[4 - i] = Character.forDigit(v & 0x0f, 16); 228 result[2 - i] = Character.forDigit(v & 0x0f, 16) [all...] |