/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mac_roman.py | 1 """ Python Character Mapping Codec mac_roman generated from 'MAPPINGS/VENDORS/APPLE/ROMAN.TXT' with gencodec.py. 48 u'\x00' # 0x00 -> CONTROL CHARACTER 49 u'\x01' # 0x01 -> CONTROL CHARACTER 50 u'\x02' # 0x02 -> CONTROL CHARACTER 51 u'\x03' # 0x03 -> CONTROL CHARACTER 52 u'\x04' # 0x04 -> CONTROL CHARACTER 53 u'\x05' # 0x05 -> CONTROL CHARACTER 54 u'\x06' # 0x06 -> CONTROL CHARACTER 55 u'\x07' # 0x07 -> CONTROL CHARACTER 56 u'\x08' # 0x08 -> CONTROL CHARACTER [all...] |
mac_romanian.py | 1 """ Python Character Mapping Codec mac_romanian generated from 'MAPPINGS/VENDORS/APPLE/ROMANIAN.TXT' with gencodec.py. 48 u'\x00' # 0x00 -> CONTROL CHARACTER 49 u'\x01' # 0x01 -> CONTROL CHARACTER 50 u'\x02' # 0x02 -> CONTROL CHARACTER 51 u'\x03' # 0x03 -> CONTROL CHARACTER 52 u'\x04' # 0x04 -> CONTROL CHARACTER 53 u'\x05' # 0x05 -> CONTROL CHARACTER 54 u'\x06' # 0x06 -> CONTROL CHARACTER 55 u'\x07' # 0x07 -> CONTROL CHARACTER 56 u'\x08' # 0x08 -> CONTROL CHARACTER [all...] |
mac_turkish.py | 1 """ Python Character Mapping Codec mac_turkish generated from 'MAPPINGS/VENDORS/APPLE/TURKISH.TXT' with gencodec.py. 48 u'\x00' # 0x00 -> CONTROL CHARACTER 49 u'\x01' # 0x01 -> CONTROL CHARACTER 50 u'\x02' # 0x02 -> CONTROL CHARACTER 51 u'\x03' # 0x03 -> CONTROL CHARACTER 52 u'\x04' # 0x04 -> CONTROL CHARACTER 53 u'\x05' # 0x05 -> CONTROL CHARACTER 54 u'\x06' # 0x06 -> CONTROL CHARACTER 55 u'\x07' # 0x07 -> CONTROL CHARACTER 56 u'\x08' # 0x08 -> CONTROL CHARACTER [all...] |
/external/chromium_org/third_party/icu/source/common/ |
brkeng.h | 50 * <p>Indicate whether this engine handles a particular character for 53 * @param c A character which begins a run that the engine might handle 55 * @return TRUE if this engine handles the particular character and break 123 * character belongs. It is up to the set of available engines to 126 * @param c A character that begins a run for which a LanguageBreakEngine is 143 * handle. It is told the character and the type of break; at its 144 * discretion it may handle more than the specified character (e.g., 145 * the entire script to which that character belongs.</p> 175 * <p>Indicate whether this engine handles a particular character for 178 * @param c A character which begins a run that the engine might handl [all...] |
/external/icu4c/common/ |
brkeng.h | 50 * <p>Indicate whether this engine handles a particular character for 53 * @param c A character which begins a run that the engine might handle 55 * @return TRUE if this engine handles the particular character and break 123 * character belongs. It is up to the set of available engines to 126 * @param c A character that begins a run for which a LanguageBreakEngine is 143 * handle. It is told the character and the type of break; at its 144 * discretion it may handle more than the specified character (e.g., 145 * the entire script to which that character belongs.</p> 175 * <p>Indicate whether this engine handles a particular character for 178 * @param c A character which begins a run that the engine might handl [all...] |
/frameworks/base/core/java/android/text/ |
TextDirectionHeuristics.java | 50 * Determines the direction based on the first strong directional character, including bidi 58 * Determines the direction based on the first strong directional character, including bidi 66 * If the text contains any strong right to left non-format character, determines that the 86 case Character.DIRECTIONALITY_LEFT_TO_RIGHT: 88 case Character.DIRECTIONALITY_RIGHT_TO_LEFT: 89 case Character.DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC: 98 case Character.DIRECTIONALITY_LEFT_TO_RIGHT: 99 case Character.DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING: 100 case Character.DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE: 102 case Character.DIRECTIONALITY_RIGHT_TO_LEFT [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
EmojiTest.java | 47 * Tests all Emoji are defined in Character class 51 assertTrue(Character.isDefined(EmojiConstants.emojiCodePoints[i])); 75 mBitmapA = ccanvas.capture(Character.toChars(comparedCodePoints[i][0])); 76 mBitmapB = ccanvas.capture(Character.toChars(comparedCodePoints[i][1])); 82 mBitmapA = cviewA.capture(Character.toChars(comparedCodePoints[i][0])); 84 mBitmapB = cviewB.capture(Character.toChars(comparedCodePoints[i][1])); 89 mBitmapA = cedittextA.capture(Character.toChars(comparedCodePoints[i][0])); 91 mBitmapB = cedittextB.capture(Character.toChars(comparedCodePoints[i][1])); 95 mBitmapA = cwebview.capture(Character.toChars(comparedCodePoints[i][0])); 96 mBitmapB = cwebview.capture(Character.toChars(comparedCodePoints[i][1])) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ASCIICType.h | 40 // All functions return false or leave the character unchanged if passed a character 42 // characters if the intent is to do processing only if the character is ASCII. 89 character count 119 template<typename CharType> inline CharType toASCIILowerUnchecked(CharType character) 121 // This function can be used for comparing any input character 122 // to a lowercase English character. The isASCIIAlphaCaselessEqual 126 return character | 0x20; 158 template<typename CharType> inline bool isASCIIAlphaCaselessEqual(CharType cssCharacter, char character) 161 // lowercase letter to any input character [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
SearchUtil.java | 103 final int codePoint = Character.codePointAt(substring, i); 106 i += Character.charCount(codePoint); 112 int valueCp = Character.toLowerCase(value.codePointAt(j)); 117 j += Character.charCount(valueCp); 128 * character are considered delimiters. 145 if (!Character.isLetterOrDigit(codePoint)) { 148 index += Character.charCount(codePoint); 157 if (Character.isLetterOrDigit(codePoint)) { 160 index += Character.charCount(codePoint); 177 if (Character.isLetterOrDigit(codePoint)) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameLookupBuilder.java | 178 int character; local 183 character = name.codePointAt(position++); 184 if ((character == 0x20) || (character == 0x2c) || (character == 0x2E)) { 190 if ((character < 0x1100) || (character > 0x1112 && character < 0x3131) || 191 (character > 0x314E && character < 0xAC00) | [all...] |
/external/guava/guava/src/com/google/common/base/ |
Ascii.java | 46 * Null ('\0'): The all-zeros character which may serve to accomplish 56 * Start of Heading: A communication control character used at 59 * referred to as the "heading." An STX character has the effect of 67 * Start of Text: A communication control character which 78 * End of Text: A communication control character used to 87 * End of Transmission: A communication control character used 96 * Enquiry: A communication control character used in data 106 * Acknowledge: A communication control character transmitted 114 * Bell ('\a'): A character for use when there is a need to call for 143 * display devices.) Where appropriate, this character may have th [all...] |
/docs/source.android.com/src/devices/tech/input/ |
key-character-map-files.jd | 1 page.title=Key Character Map Files 19 <p>Key character map files (<code>.kcm</code> files) are responsible for mapping combinations 25 often aren't needed at all. The system provides a generic key character map 30 <p>Key character map files are located by USB vendor, product (and optionally version) 47 <h2 id="generic-key-character-map-file">Generic Key Character Map File</h2> 48 <p>The system provides a special built-in key character map file called <code>Generic.kcm</code>. 49 This key character map is intended to support a variety of standard external 51 <p><em>Do not modify the generic key character map!</em></p> 52 <h2 id="virtual-key-character-map-file">Virtual Key Character Map File</h2 [all...] |
/external/chromium_org/chrome/test/chromedriver/ |
keycode_text_conversion_mac.mm | 21 unichar character, unmodified_character; 25 &character, 54 UniChar character = 0; 65 &character); 66 if (status == noErr && char_count == 1 && !std::iscntrl(character)) { 68 text16.push_back(character); 85 // character. So here we check every key code to see if it produces the 86 // right character. We could cache the results and regenerate everytime the
|
/external/chromium_org/device/bluetooth/ |
bluetooth_utils.h | 15 // Takes a 4, 8 or 36 character UUID, validates it and returns it in 36 16 // character format with all hex digits lower case. If |uuid| is invalid, the
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
read.h | 31 TOK_OPEN_BRACE, /* An opening brace character */ 32 TOK_CLOSE_BRACE, /* A closing brace character */
|
/external/clang/test/Lexer/ |
unicode.c | 7 extern int x; // expected-warning {{treating Unicode character as whitespace}} 8 extern int?x; // expected-warning {{treating Unicode character as whitespace}}
|
/external/clang/test/Preprocessor/ |
ucn-pp-identifier.c | 19 #if \uarecool // expected-warning{{incomplete universal character name; treating as '\' followed by identifier}} expected-error {{invalid token at start of a preprocessor expression}} 23 #if \U0001000 // expected-warning{{incomplete universal character name; treating as '\' followed by identifier}} expected-error {{invalid token at start of a preprocessor expression}} 29 #define \u0061 // expected-error {{character 'a' cannot be specified by a universal character name}} expected-error {{macro names must be identifiers}} 49 // expected-error@+4 {{character 'a' cannot be specified by a universal character name}} 63 extern int PASTE(\u0, 0FD); // expected-warning{{incomplete universal character name}} 102 // expected-warning@-1 {{incomplete universal character name}} expected-note@-1 {{did you mean to use '\u'?}} expected-warning@-1 {{whitespace}}
|
/external/icu4c/layout/ |
ThaiLayoutEngine.h | 23 * All existing Thai fonts use an encoding which assigns character codes to all 82 * The character used as a base for vowels and 95 * generate the correct contextual character codes, and then calls 99 * @param chars - the input character context 100 * @param offset - the index of the first character to process 124 * it can use the character codes to determine glyph types if that information 128 * @param chars - the input character context 129 * @param offset - the offset of the first character to process
|
/external/icu4c/tools/genrb/ |
read.h | 31 TOK_OPEN_BRACE, /* An opening brace character */ 32 TOK_CLOSE_BRACE, /* A closing brace character */
|
/external/llvm/autoconf/m4/ |
c_printf_a.m4 | 2 # Determine if the printf() functions have the %a format character. 6 [AC_CACHE_CHECK([if printf has the %a format character],[llvm_cv_c_printf_a],
|
/external/llvm/projects/sample/autoconf/m4/ |
c_printf_a.m4 | 2 # Determine if the printf() functions have the %a format character. 6 [AC_CACHE_CHECK([if printf has the %a format character],[llvm_cv_c_printf_a],
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
CharSequenceReader.java | 38 * Construct a new instance with the specified character sequence.
40 * @param charSequence The character sequence, may be <code>null</code>
73 * Read a single character.
75 * @return the next character from the character sequence
100 throw new NullPointerException("Character array is missing");
148 * character sequence.
150 * @return The contents of the character sequence
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
ucnhash.h | 18 /* Get name for a given character code. Returns non-zero if 24 /* Get character code for a given name. Same error handling
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
ucnhash.h | 18 /* Get name for a given character code. Returns non-zero if 24 /* Get character code for a given name. Same error handling
|
/external/bison/lib/ |
memchr.valgrind | 2 # POSIX states that when the character is found, memchr must not read extra
|