/libcore/luni/src/main/java/org/w3c/dom/ls/ |
LSOutput.java | 20 * character stream. 21 * <p> The exact definitions of a byte stream and a character stream are 88 * The character encoding to use for the output. The encoding must be a 90 * 4.3.3 "Character Encoding in Entities"), it is recommended that 91 * character encodings registered (as charsets) with the Internet 92 * Assigned Numbers Authority [<a href='ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets'>IANA-CHARSETS</a>] 97 * The character encoding to use for the output. The encoding must be a 99 * 4.3.3 "Character Encoding in Entities"), it is recommended that 100 * character encodings registered (as charsets) with the Internet 101 * Assigned Numbers Authority [<a href='ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets'>IANA-CHARSETS</a> [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Utf8Utils.java | 38 * differs from normal UTF-8 in the handling of character '\0' and 197 writer.write(Character.forDigit(c >> 12, 16)); 198 writer.write(Character.forDigit((c >> 8) & 0x0f, 16)); 199 writer.write(Character.forDigit((c >> 4) & 0x0f, 16)); 200 writer.write(Character.forDigit(c & 0x0f, 16)); 223 writer.write(Character.forDigit(c >> 12, 16)); 224 writer.write(Character.forDigit((c >> 8) & 0x0f, 16)); 225 writer.write(Character.forDigit((c >> 4) & 0x0f, 16)); 226 writer.write(Character.forDigit(c & 0x0f, 16)); 252 sb.append(Character.forDigit(c >> 12, 16)) [all...] |
/libcore/luni/src/main/java/java/text/ |
CollationElementIterator.java | 25 * ordering priority of the next character or sequence of characters in the 39 * In German, since the character '\u0086' is a composed character of 'a' 40 * and 'e', the iterator returns two collation elements for the single character 80 * Obtains the character offset in the source string corresponding to the 83 * <li>The index of the first character in the source string that matches 86 * {@code getOffset()} returns the index of the first character in the 92 * character, or composite character with the first character, having [all...] |
/external/chromium_org/third_party/icu/source/test/testdata/ |
GraphemeBreakTest.txt | 4 # Unicode Character Database 17 # - the sample character name 18 # - (x) the Grapheme_Break property* for the sample character 33 ÷ 0020 ÷ 0E40 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 34 ÷ 0020 × 0308 ÷ 0E40 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend) ÷ [999.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 57 ÷ 000D ÷ 0E40 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 58 ÷ 000D ÷ 0308 ÷ 0E40 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend) ÷ [999.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 81 ÷ 000A ÷ 0E40 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 82 ÷ 000A ÷ 0308 ÷ 0E40 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] COMBINING DIAERESIS (Extend) ÷ [999.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3] 105 ÷ 0001 ÷ 0E40 ÷ # ÷ [0.2] <START OF HEADING> (Control) ÷ [4.0] THAI CHARACTER SARA E (Prepend) ÷ [0.3 [all...] |
/external/icu4c/layout/ |
LayoutEngine.h | 33 * an array of character indices for the glyphs, and an array of glyph positions. 40 * character to glyph mapping and default positioning using the glyph's advance 46 * 1) Glyph processing - character to glyph mapping and any other glyph processing 162 * output character index array reflecting these changes. 167 * @param chars - the input character context 168 * @param offset - the index of the first character to process 172 * @param outChars - the output character array, if different from the input 173 * @param glyphStorage - the object that holds the per-glyph storage. The character index array may be set. 176 * @return the output character count (input character count if no change [all...] |
KhmerLayoutEngine.h | 34 * This class overrides the characterProcessing method to do Khmer character processing 104 * This method does Khmer 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/apache-xml/src/main/java/org/apache/xpath/objects/ |
XString.java | 128 // The character is not a '-' or a '.' or a digit 239 * Returns the character at the specified index. An index ranges 240 * from <code>0</code> to <code>length() - 1</code>. The first character 244 * @param index the index of the character. 245 * @return the character at the specified index of this string. 246 * The first character is at index <code>0</code>. 257 * Copies characters from this string into the destination character 260 * @param srcBegin index of the first character in the string 262 * @param srcEnd index after the last character in the string 405 * @see java.lang.Character#toLowerCase(char [all...] |
/libcore/luni/src/main/java/java/io/ |
OutputStreamWriter.java | 29 * A class for turning a character stream into a byte stream. Data written to 31 * provided character converter. The default encoding is taken from the 48 * stream to write converted characters to. The default character encoding 60 * stream to write converted characters to and {@code charsetName} as the character 67 * the string describing the desired character encoding. 91 * stream to write converted characters to and {@code cs} as the character 97 * the {@code Charset} that specifies the character encoding. 109 * stream to write converted characters to and {@code charsetEncoder} as the character 115 * the character encoder used for character conversion [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
mac_arabic.py | 1 """ Python Character Mapping Codec generated from 'VENDORS/APPLE/ARABIC.TXT' with gencodec.py. 181 u'\x00' # 0x0000 -> CONTROL CHARACTER 182 u'\x01' # 0x0001 -> CONTROL CHARACTER 183 u'\x02' # 0x0002 -> CONTROL CHARACTER 184 u'\x03' # 0x0003 -> CONTROL CHARACTER 185 u'\x04' # 0x0004 -> CONTROL CHARACTER 186 u'\x05' # 0x0005 -> CONTROL CHARACTER 187 u'\x06' # 0x0006 -> CONTROL CHARACTER 188 u'\x07' # 0x0007 -> CONTROL CHARACTER 189 u'\x08' # 0x0008 -> CONTROL CHARACTER [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mac_arabic.py | 1 """ Python Character Mapping Codec generated from 'VENDORS/APPLE/ARABIC.TXT' with gencodec.py. 181 u'\x00' # 0x0000 -> CONTROL CHARACTER 182 u'\x01' # 0x0001 -> CONTROL CHARACTER 183 u'\x02' # 0x0002 -> CONTROL CHARACTER 184 u'\x03' # 0x0003 -> CONTROL CHARACTER 185 u'\x04' # 0x0004 -> CONTROL CHARACTER 186 u'\x05' # 0x0005 -> CONTROL CHARACTER 187 u'\x06' # 0x0006 -> CONTROL CHARACTER 188 u'\x07' # 0x0007 -> CONTROL CHARACTER 189 u'\x08' # 0x0008 -> CONTROL CHARACTER [all...] |
/external/chromium/chrome/browser/ |
global_keyboard_shortcuts_mac.h | 66 // Returns a keyboard event character for the given |event|. In most cases 67 // this returns the first character of [NSEvent charactersIgnoringModifiers], 68 // but when [NSEvent character] has different printable ascii character 69 // we may return the first character of [NSEvent characters] instead. 72 // layout we want '{' character rather than '8' for opt-8.)
|
/external/chromium_org/chrome/browser/ |
global_keyboard_shortcuts_mac.h | 65 // Returns a keyboard event character for the given |event|. In most cases 66 // this returns the first character of [NSEvent charactersIgnoringModifiers], 67 // but when [NSEvent character] has different printable ascii character 68 // we may return the first character of [NSEvent characters] instead. 71 // layout we want '{' character rather than '8' for opt-8.)
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodec.h | 41 // Specifies what will happen when a character is encountered that is 42 // not encodable in the character set. 44 // Substitutes the replacement character "?". 47 // Encodes the character as an XML entity. For example, U+06DE 51 // Encodes the character as en entity as above, but escaped 76 // unencodable character into the given replacement buffer.
|
/external/chromium_org/third_party/icu/source/common/ |
rbbisetb.h | 23 // RBBISetBuilder Derives the character categories used by the runtime RBBI engine 26 // character categories. 33 // Each of the non-overlapping character ranges gets one of these descriptors. 35 // (by character) 91 // character were encountered. 113 // Groups correspond to character categories -
|
util_props.cpp | 21 * character to parse. On output, the character after the last 22 * parsed character. 70 * successful, the offset of the next non-space character is 74 * character matches one or more required spaces. A '~' character 75 * matches zero or more optional spaces. A '#' character matches 81 * @return the position after the last character parsed, or -1 if 134 * first character to examine. It must be less than str.length(), 135 * and it must not point to a whitespace character. That is, mus [all...] |
/external/icu4c/common/ |
rbbisetb.h | 23 // RBBISetBuilder Derives the character categories used by the runtime RBBI engine 26 // character categories. 33 // Each of the non-overlapping character ranges gets one of these descriptors. 35 // (by character) 91 // character were encountered. 113 // Groups correspond to character categories -
|
util_props.cpp | 23 * character to parse. On output, the character after the last 24 * parsed character. 72 * successful, the offset of the next non-space character is 76 * character matches one or more required spaces. A '~' character 77 * matches zero or more optional spaces. A '#' character matches 83 * @return the position after the last character parsed, or -1 if 136 * first character to examine. It must be less than str.length(), 137 * and it must not point to a whitespace character. That is, mus [all...] |
/external/proguard/src/proguard/io/ |
ManifestRewriter.java | 84 // Read the first character. 95 // Read the second character. 109 // Read the third character. 124 // Delegate to reading a single character at a time. 143 // Delegate to reading a single character at a time. 182 // Reset the character count.
|
/frameworks/base/core/java/com/android/internal/util/ |
CharSequences.java | 25 * Adapts {@link CharSequence} to an array of ASCII (7-bits per character) 51 * Adapts {@link CharSequence} to an array of ASCII (7-bits per character) 94 * Compares two character sequences for equality. 111 * Compares two character sequences with API like {@link Comparable#compareTo}. 124 if ((result = Character.toLowerCase(me.charAt(myPos++)) 125 - Character.toLowerCase(another.charAt(anotherPos++))) != 0) {
|
/system/core/sh/bltin/ |
echo.1 | 73 A backspace character is output. 82 Output a newline character. 86 Output a (horizontal) tab character. 90 Output the character whose value is given by zero to three digits. 91 If there are zero digits, a nul character is output. 101 The octal character escape mechanism
|
/external/bison/lib/ |
mbschr.c | 1 /* Searching a string for a character. 25 /* Locate the first single-byte character C in the character string STRING,
|
mbsrchr.c | 1 /* Searching a string for the last occurrence of a character. 25 /* Locate the last single-byte character C in the character string STRING,
|
wcwidth.c | 1 /* Determine the number of screen columns needed for a character. 37 /* We assume that in a UTF-8 locale, a wide character is the same as a 38 Unicode character. */
|
/external/chromium_org/chrome/installer/util/ |
google_update_experiment_util.cc | 40 // DAY = 3 character day of week, 42 // MON = 3 character month of year, 47 // TZ = 3 character timezone
|
/external/chromium_org/win8/metro_driver/ime/ |
text_store_delegate.h | 25 // the character position of composition and caret position upon request. 45 // Called when an IME requests the bounding box of an character whose 47 // implement this method must return true and fill the character bounds into
|