/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
cp874.py | 1 """ Python Character Mapping Codec cp874 generated from 'MAPPINGS/VENDORS/MICSFT/WINDOWS/CP874.TXT' with gencodec.py. 209 u'\u0e01' # 0xA1 -> THAI CHARACTER KO KAI 210 u'\u0e02' # 0xA2 -> THAI CHARACTER KHO KHAI 211 u'\u0e03' # 0xA3 -> THAI CHARACTER KHO KHUAT 212 u'\u0e04' # 0xA4 -> THAI CHARACTER KHO KHWAI 213 u'\u0e05' # 0xA5 -> THAI CHARACTER KHO KHON 214 u'\u0e06' # 0xA6 -> THAI CHARACTER KHO RAKHANG 215 u'\u0e07' # 0xA7 -> THAI CHARACTER NGO NGU 216 u'\u0e08' # 0xA8 -> THAI CHARACTER CHO CHAN 217 u'\u0e09' # 0xA9 -> THAI CHARACTER CHO CHIN [all...] |
iso8859_11.py | 1 """ Python Character Mapping Codec iso8859_11 generated from 'MAPPINGS/ISO8859/8859-11.TXT' with gencodec.py. 209 u'\u0e01' # 0xA1 -> THAI CHARACTER KO KAI 210 u'\u0e02' # 0xA2 -> THAI CHARACTER KHO KHAI 211 u'\u0e03' # 0xA3 -> THAI CHARACTER KHO KHUAT 212 u'\u0e04' # 0xA4 -> THAI CHARACTER KHO KHWAI 213 u'\u0e05' # 0xA5 -> THAI CHARACTER KHO KHON 214 u'\u0e06' # 0xA6 -> THAI CHARACTER KHO RAKHANG 215 u'\u0e07' # 0xA7 -> THAI CHARACTER NGO NGU 216 u'\u0e08' # 0xA8 -> THAI CHARACTER CHO CHAN 217 u'\u0e09' # 0xA9 -> THAI CHARACTER CHO CHIN [all...] |
tis_620.py | 1 """ Python Character Mapping Codec tis_620 generated from 'python-mappings/TIS-620.TXT' with gencodec.py. 209 u'\u0e01' # 0xA1 -> THAI CHARACTER KO KAI 210 u'\u0e02' # 0xA2 -> THAI CHARACTER KHO KHAI 211 u'\u0e03' # 0xA3 -> THAI CHARACTER KHO KHUAT 212 u'\u0e04' # 0xA4 -> THAI CHARACTER KHO KHWAI 213 u'\u0e05' # 0xA5 -> THAI CHARACTER KHO KHON 214 u'\u0e06' # 0xA6 -> THAI CHARACTER KHO RAKHANG 215 u'\u0e07' # 0xA7 -> THAI CHARACTER NGO NGU 216 u'\u0e08' # 0xA8 -> THAI CHARACTER CHO CHAN 217 u'\u0e09' # 0xA9 -> THAI CHARACTER CHO CHIN [all...] |
/external/clang/test/Lexer/ |
constants.c | 24 'df', // expected-warning {{multi-character character constant}} 28 '??!', // expected-warning {{trigraph converted to '|' character}} 29 'abcd' // expected-warning {{multi-character character constant}} 34 int m1 = '\\\''; // expected-warning {{multi-character character constant}} 35 int m2 = '\\\\'; // expected-warning {{multi-character character constant}} 43 int e = 'abcd'; // still warn: expected-warning {{multi-character character constant} [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
HashBasedTableTest.java | 29 @Override protected Table<String, Integer, Character> create( 31 Table<String, Integer, Character> table = HashBasedTable.create(); 40 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); 42 assertEquals((Character) 'a', table1.get("foo", 1)); 44 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); 46 assertEquals((Character) 'a', table2.get("foo", 1)); 48 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); 50 assertEquals((Character) 'a', table3.get("foo", 1)); 52 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); 54 assertEquals((Character) 'a', table4.get("foo", 1)) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
HashBasedTableTest.java | 32 @Override protected Table<String, Integer, Character> create( 34 Table<String, Integer, Character> table = HashBasedTable.create(); 43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); 45 assertEquals((Character) 'a', table1.get("foo", 1)); 47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0); 49 assertEquals((Character) 'a', table2.get("foo", 1)); 51 Table<String, Integer, Character> table3 = HashBasedTable.create(0, 20); 53 assertEquals((Character) 'a', table3.get("foo", 1)); 55 Table<String, Integer, Character> table4 = HashBasedTable.create(0, 0); 57 assertEquals((Character) 'a', table4.get("foo", 1)) [all...] |
TransposedTableTest.java | 29 @Override protected Table<String, Integer, Character> create( 31 Table<Integer, String, Character> original = HashBasedTable.create(); 32 Table<String, Integer, Character> table = Tables.transpose(original); 39 Table<Integer, String, Character> original = HashBasedTable.create(); 44 Table<Integer, String, Character> original = HashBasedTable.create(); 45 Table<String, Integer, Character> transpose = Tables.transpose(original); 47 assertEquals((Character) 'a', transpose.get("foo", 1)); 51 Table<Integer, String, Character> original = HashBasedTable.create(); 52 Table<String, Integer, Character> transpose = Tables.transpose(original); 54 assertEquals((Character) 'a', original.get(1, "foo")) [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/ |
escapeFlag.test | 7 "output":[["Character", "foo<!--"], ["EndTag", "xmp"], ["Character", "-->"], ["EndTag", "xmp"]]}, 13 "output":[["Character", "foo<!-->baz"], ["EndTag", "xmp"]]}, 19 "output":[["Character", "foo<!-->"], ["EndTag", "xmp"], "ParseError", ["Comment", ""], ["Character", "baz"], ["EndTag", "xmp"]]}, 25 "output":[["Character", " & <!-- & --> & "], ["EndTag", "xmp"]]}, 31 "output":[["Character", "foo<!-- x --x>x-- >x--!>x--<>"], ["EndTag", "xmp"]]}
|
contentModelFlags.test | 7 "output":[["Character", "<head>&body;"]]}, 13 "output":[["Character", "foo"], ["EndTag", "xmp"]]}, 19 "output":[["Character", "foo"], ["EndTag", "xmp"]]}, 25 "output":[["Character", "foo"], "ParseError"]}, 31 "output":[["Character", "foo</xmp"]]}, 37 "output":[["Character", "foo"], "ParseError"]}, 43 "output":[["Character", "foo</xmp<"]]}, 49 "output":[["Character", "</foo>bar"], ["EndTag", "xmp"]]}, 55 "output":[["Character", "</foo>bar</xmpaar>"]]}, 61 "output":[["Character", "foo"], ["EndTag", "xmp"], ["EndTag", "baz"]]} [all...] |
test2.test | 41 "output":["ParseError", ["DOCTYPE", "html", "", null, false], ["Character", "x"]]}, 45 "output":["ParseError", ["DOCTYPE", "html", "", null, false], ["Character", "x"]]}, 49 "output":["ParseError", ["DOCTYPE", "html", "foo", "", false], ["Character", "x"]]}, 53 "output":["ParseError", ["DOCTYPE", "html", "foo", "", false], ["Character", "x"]]}, 59 {"description":"Numeric entity representing the NUL character", 61 "output":["ParseError", ["Character", "\uFFFD"]]}, 63 {"description":"Hexadecimal entity representing the NUL character", 65 "output":["ParseError", ["Character", "\uFFFD"]]}, 69 "output":["ParseError", ["Character", "\uFFFD"]]}, 73 "output":["ParseError", ["Character", "\uFFFD"]]} [all...] |
/external/sfntly/cpp/src/sample/subtly/ |
character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { 32 return start_ <= character && character <= end_; 44 bool AcceptSet::operator()(int32_t character) const { 45 return characters_->find(character) != characters_->end(); 49 bool AcceptAll::operator()(int32_t character) const { 50 UNREFERENCED_PARAMETER(character);
|
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
SmartDialMap.java | 10 * by simply casting from a codepoint to a character. 14 * Returns true if the provided character can be mapped to a key on the dialpad 19 * Returns true if the provided character is a letter, and can be mapped to a key on the dialpad 24 * Returns true if the provided character is a digit, and can be mapped to a key on the dialpad 29 * Get the index of the key on the dialpad which the character corresponds to 34 * Get the actual numeric character on the dialpad which the character corresponds to
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
wctype.h | 21 * Wide character classification and mapping utilities <wctype.h> 37 to any member of the extended character set. */ 52 character classifications. */ 83 __ISwcntrl = 9, /* Control character. */ 96 _ISwcntrl = _ISwbit (__ISwcntrl), /* Control character. */ 107 * Wide-character classification functions: 7.15.2.1. 110 /* Test for any wide character for which `iswalpha' or `iswdigit' is 114 /* Test for any wide character for which `iswupper' or 'iswlower' is 115 true, or any wide character that is one of a locale-specific set of 120 /* Test for any control wide character. * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
wctype.h | 21 * Wide character classification and mapping utilities <wctype.h> 37 to any member of the extended character set. */ 52 character classifications. */ 83 __ISwcntrl = 9, /* Control character. */ 96 _ISwcntrl = _ISwbit (__ISwcntrl), /* Control character. */ 107 * Wide-character classification functions: 7.15.2.1. 110 /* Test for any wide character for which `iswalpha' or `iswdigit' is 114 /* Test for any wide character for which `iswupper' or 'iswlower' is 115 true, or any wide character that is one of a locale-specific set of 120 /* Test for any control wide character. * [all...] |
/external/clang/test/Preprocessor/ |
if_warning.c | 29 #if 'somesillylongthing' // expected-warning {{character constant too long for its type}} \ 30 // expected-warning {{multi-character character constant}}
|
/external/libxml2/test/catalogs/ |
whitex.script | 2 public "-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" 3 public " -//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN" 4 public "-//OASIS//ENTITIES DocBook XML Character Entities V4.1.2//EN "
|
/external/testng/src/main/java/org/testng/internal/ |
EclipseInterface.java | 11 public static final Character OPENING_CHARACTER = '['; 12 public static final Character CLOSING_CHARACTER = ']'; 17 public static final String ASSERT_RIGHT = Character.toString(CLOSING_CHARACTER);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
DecimalFormatProperties.java | 133 * decimal-separator specifies the character used for the decimal sign; 134 * the default value is the period character (.). 136 * @param ds Character to set as decimal separator 145 * decimal-separator specifies the character used for the decimal sign; 146 * the default value is the period character (.). 148 * @return the character to use as decimal separator 157 * grouping-separator specifies the character used as a grouping 158 * (e.g. thousands) separator; the default value is the comma character (,). 160 * @param gs Character to use a grouping separator 169 * grouping-separator specifies the character used as a groupin [all...] |
/external/clang/test/Sema/ |
ucn-cstring.c | 12 printf("%s\n", "\U00"); // expected-error{{incomplete universal character name}} 13 printf("%s\n", "\U0001"); // expected-error{{incomplete universal character name}} 14 printf("%s\n", "\u0001"); // expected-error{{universal character name refers to a control character}}
|
/external/llvm/test/FileCheck/ |
first-character-match.txt | 2 // Prefix is at the first character in the file. The run line then matches itself.
|
/packages/inputmethods/LatinIME/java/res/xml/ |
rowkeys_thai2.xml | 29 <!-- U+0E0E: "?" THAI CHARACTER DO CHADA --> 31 <!-- U+0E11: "?" THAI CHARACTER THO NANGMONTHO --> 33 <!-- U+0E18: "?" THAI CHARACTER THO THONG --> 36 U+0E4D: " ?" THAI CHARACTER THANTHAKHAT --> 37 <!-- Note: The space character is needed as a preceding letter to draw some Thai 43 U+0E4A: " ?" THAI CHARACTER MAI TRI --> 44 <!-- Note: The space character is needed as a preceding letter to draw some Thai 49 <!-- U+0E13: "?" THAI CHARACTER NO NEN --> 51 <!-- U+0E2F: "?" THAI CHARACTER PAIYANNOI --> 53 <!-- U+0E0D: "?" THAI CHARACTER YO YING -- [all...] |
rowkeys_thai3.xml | 24 <!-- U+0E24: "?" THAI CHARACTER RU --> 26 <!-- U+0E06: "?" THAI CHARACTER KHO RAKHANG --> 28 <!-- U+0E0F: "?" THAI CHARACTER TO PATAK --> 30 <!-- U+0E42: "?" THAI CHARACTER SARA O --> 32 <!-- U+0E0C: "?" THAI CHARACTER CHO CHOE --> 35 U+0E47: " ?" THAI CHARACTER MAITAIKHU --> 36 <!-- Note: The space character is needed as a preceding letter to draw some Thai 42 U+0E4B: " ?" THAI CHARACTER MAI CHATTAWA --> 43 <!-- Note: The space character is needed as a preceding letter to draw some Thai 48 <!-- U+0E29: "?" THAI CHARACTER SO RUSI -- [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
ntnls.h | 16 USHORT DefaultChar; /* Default MultiByte Character for the CP->Unicode conversion */ 17 USHORT UniDefaultChar; /* Default Unicode Character for the CP->Unicode conversion */ 18 USHORT TransDefaultChar; /* Default MultiByte Character for the Unicode->CP conversion */ 19 USHORT TransUniDefaultChar; /* Default Unicode Character for the Unicode->CP conversion */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
cons-2.s | 0 # Character constants. We actually see e.g. 'b' as 98, so ww just check
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/ |
quotes.s | 1 ;; test the parsing of strings and character constants
|