/external/chromium/base/third_party/icu/ |
icu_utf.cc | 73 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal; 74 * lead bytes above 0xf4 are illegal. 99 3, 3, 3, /* illegal in Unicode */ 100 4, 4, 4, 4, /* illegal in Unicode */ 101 5, 5, /* illegal in Unicode */ 102 0, 0 /* illegal bytes 0xfe and 0xff */ 119 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative 122 * All illegal byte sequences yield a positive code point such that this 124 * the illegal sequence. 127 * like illegal sequences 141 uint8 trail, illegal=0; local [all...] |
/external/chromium_org/base/third_party/icu/ |
icu_utf.cc | 73 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal; 74 * lead bytes above 0xf4 are illegal. 99 3, 3, 3, /* illegal in Unicode */ 100 4, 4, 4, 4, /* illegal in Unicode */ 101 5, 5, /* illegal in Unicode */ 102 0, 0 /* illegal bytes 0xfe and 0xff */ 119 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative 122 * All illegal byte sequences yield a positive code point such that this 124 * the illegal sequence. 127 * like illegal sequences 141 uint8 trail, illegal=0; local [all...] |
/external/chromium_org/third_party/icu/source/common/ |
utf_impl.c | 44 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal; 45 * lead bytes above 0xf4 are illegal. 70 3, 3, 3, /* illegal in Unicode */ 71 4, 4, 4, 4, /* illegal in Unicode */ 72 5, 5, /* illegal in Unicode */ 73 0, 0 /* illegal bytes 0xfe and 0xff */ 90 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative 93 * All illegal byte sequences yield a positive code point such that this 95 * the illegal sequence. 98 * like illegal sequences 112 uint8_t trail, illegal=0; local [all...] |
ustrtrns.c | 270 uint8_t trail, illegal=0; local 273 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 278 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 279 illegal=1; 286 illegal=1; 293 illegal=1; 301 illegal=1; 311 /* illegal is also set if count>=4 */ 312 if(illegal || c<utf8_minLegal[count] || UTF_IS_SURROGATE(c)) { 338 uint8_t trail, illegal=0 local [all...] |
/external/icu4c/common/ |
ustrtrns.cpp | 274 uint8_t trail, illegal=0; local 278 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */ 283 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */ 284 illegal=1; 291 illegal=1; 298 illegal=1; 306 illegal=1; 316 /* illegal is also set if count>=4 */ 317 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) { 343 uint8_t trail, illegal=0 [all...] |
/external/chromium/base/i18n/ |
file_util_icu.cc | 146 IllegalCharacters* illegal = IllegalCharacters::GetInstance(); local 170 if (illegal->contains(code_point)) {
|
/external/chromium_org/base/i18n/ |
file_util_icu.cc | 102 IllegalCharacters* illegal = IllegalCharacters::GetInstance(); local 126 if (illegal->contains(code_point)) {
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
trie2test.c | 352 static const uint8_t illegal[]={ local 405 /* write an illegal byte sequence */ 406 if(i8<sizeof(illegal)) { 407 U8_FWD_1(illegal, i8, sizeof(illegal)); 409 s[length++]=illegal[prev8++]; 414 /* write the remaining illegal byte sequences */ 415 while(i8<sizeof(illegal)) { 416 U8_FWD_1(illegal, i8, sizeof(illegal)); [all...] |
/external/icu4c/test/cintltst/ |
trie2test.c | 352 static const uint8_t illegal[]={ local 405 /* write an illegal byte sequence */ 406 if(i8<sizeof(illegal)) { 407 U8_FWD_1(illegal, i8, sizeof(illegal)); 409 s[length++]=illegal[prev8++]; 414 /* write the remaining illegal byte sequences */ 415 while(i8<sizeof(illegal)) { 416 U8_FWD_1(illegal, i8, sizeof(illegal)); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
xmllib.py | 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content variable 263 self.syntax_error('illegal data at start of file') 267 if not self.__accept_utf8 and illegal.search(data): 268 self.syntax_error('illegal character in content') 410 if not self.__accept_utf8 and illegal.search(data): 411 self.syntax_error('illegal character in content') 438 illegal.search(rawdata, i+4, res.start(0)): 439 self.syntax_error('illegal character in comment') 500 illegal.search(rawdata, i+9, res.start(0)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
xmllib.py | 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content variable 263 self.syntax_error('illegal data at start of file') 267 if not self.__accept_utf8 and illegal.search(data): 268 self.syntax_error('illegal character in content') 410 if not self.__accept_utf8 and illegal.search(data): 411 self.syntax_error('illegal character in content') 438 illegal.search(rawdata, i+4, res.start(0)): 439 self.syntax_error('illegal character in comment') 500 illegal.search(rawdata, i+9, res.start(0)) [all...] |
/external/clang/test/Sema/ |
array-init.c | 5 extern int foof() = 1; // expected-error{{illegal initializer (only variables can be initialized)}} 19 typedef int TInt = 1; // expected-error{{illegal initializer (only variables can be initialized)}} 116 void illegal() { function
|
/external/chromium_org/v8/src/ |
heap.cc | 3770 Code* illegal = isolate_->builtins()->builtin(Builtins::kIllegal); local [all...] |
/external/v8/src/ |
heap.cc | 2897 Code* illegal = isolate_->builtins()->builtin(Builtins::kIllegal); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar | |
com.ibm.icu_4.2.1.v20100412.jar | |
/prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/ |
icu4j-2.6.1.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant.jar | |
/prebuilts/tools/common/ant/ |
ant.jar | |
/prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/ |
ant-1.8.0.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |