Searched refs:illegal (Results 1 - 25 of 30) sorted by relevance

12

/external/libchrome/base/third_party/icu/
H A Dicu_utf.cc73 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal;
74 * lead bytes above 0xf4 are illegal.
95 3, 3, /* illegal in Unicode */
96 4, 4, 4, 4, /* illegal in Unicode */
97 5, 5, /* illegal in Unicode */
98 0, 0 /* illegal bytes 0xfe and 0xff */
115 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative
118 * All illegal byte sequences yield a positive code point such that this
120 * the illegal sequence.
123 * like illegal sequence
140 uint8_t trail, illegal = 0; local
[all...]
/external/libweave/third_party/chromium/base/third_party/icu/
H A Dicu_utf.cc73 * 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 sequence
145 uint8_t trail, illegal=0; local
[all...]
/external/webrtc/webrtc/base/
H A Dstringencode.cc28 const char * illegal, char escape) {
36 if ((ch == escape) || ::strchr(illegal, ch)) {
69 const char * illegal, char escape) {
77 if ((ch != escape) && !::strchr(illegal, ch)) {
399 // Not enough room to encode the character, or illegal character
26 escape(char * buffer, size_t buflen, const char * source, size_t srclen, const char * illegal, char escape) argument
67 encode(char * buffer, size_t buflen, const char * source, size_t srclen, const char * illegal, char escape) argument
H A Dstringencode.h33 // Escaping prefixes illegal characters with the escape character. Compact, but
34 // illegal characters still appear in the string.
37 const char * illegal, char escape);
43 // Encoding replaces illegal characters with the escape character and 2 hex
45 // illegal characters. note that hex digits should not be used as illegal
49 const char * illegal, char escape);
56 // file, suitable for passing to the 'illegal' member of escape or encode.
59 // url_encode is an encode operation with a predefined set of illegal characters
/external/icu/icu4c/source/common/
H A Dustrtrns.cpp274 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
[all...]
/external/e2fsprogs/po/
H A Dat-expand.pl78 $msg =~ s/\@I/illegal/g;
/external/v8/test/mjsunit/harmony/
H A Dreflect-define-property.js450 assertTrue(/illegal access/.test(e));
456 assertTrue(/illegal access/.test(e));
462 assertTrue(/illegal access/.test(e));
468 assertTrue(/illegal access/.test(e));
474 assertTrue(/illegal access/.test(e));
482 assertTrue(/illegal access/.test(e));
488 assertTrue(/illegal access/.test(e));
/external/v8/test/mjsunit/
H A Dobject-define-property.js476 assertTrue(/illegal access/.test(e));
482 assertTrue(/illegal access/.test(e));
488 assertTrue(/illegal access/.test(e));
494 assertTrue(/illegal access/.test(e));
500 assertTrue(/illegal access/.test(e));
508 assertTrue(/illegal access/.test(e));
514 assertTrue(/illegal access/.test(e));
/external/icu/icu4c/source/test/cintltst/
H A Dtrie2test.c350 static const uint8_t illegal[]={ local
403 /* write an illegal byte sequence */
404 if(i8<sizeof(illegal)) {
405 U8_FWD_1(illegal, i8, sizeof(illegal));
407 s[length++]=illegal[prev8++];
412 /* write the remaining illegal byte sequences */
413 while(i8<sizeof(illegal)) {
414 U8_FWD_1(illegal, i8, sizeof(illegal));
[all...]
/external/clang/test/Sema/
H A Darray-init.c5 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/llvm/test/MC/ARM/
H A Dthumb2-diagnostics.s28 @ CHECK-ERRORS: error: illegal IT block condition mask 'tfe'
/external/icu/icu4c/source/i18n/
H A Drbt_pars.cpp307 const UnicodeString& illegal,
384 * @param illegal the set of special characters that is illegal during
399 const UnicodeString& illegal,
501 if (illegal.indexOf(c) >= 0) {
397 parseSection(const UnicodeString& rule, int32_t pos, int32_t limit, UnicodeString& buf, const UnicodeString& illegal, UBool isSegment, UErrorCode& status) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUCharacterTest.java1415 * Testing the for illegal characters
1419 int illegal[] = {0xFFFE, 0x00FFFF, 0x005FFFE, 0x005FFFF, 0x0010FFFE,
1424 for (int count = 0; count < illegal.length; count ++) {
1425 if (UCharacter.isLegal(illegal[count])) {
1426 errln("FAIL \\u" + hex(illegal[count]) +
1438 String illegalStr = "This is an illegal string ";
1441 for (int count = 0; count < illegal.length; count ++) {
1443 if (illegal[count] < 0x10000) {
1444 str.append((char)illegal[count]);
1447 char lead = UTF16.getLeadSurrogate(illegal[coun
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java1411 * Testing the for illegal characters
1415 int illegal[] = {0xFFFE, 0x00FFFF, 0x005FFFE, 0x005FFFF, 0x0010FFFE,
1420 for (int count = 0; count < illegal.length; count ++) {
1421 if (UCharacter.isLegal(illegal[count])) {
1422 errln("FAIL \\u" + hex(illegal[count]) +
1434 String illegalStr = "This is an illegal string ";
1437 for (int count = 0; count < illegal.length; count ++) {
1439 if (illegal[count] < 0x10000) {
1440 str.append((char)illegal[count]);
1443 char lead = UTF16.getLeadSurrogate(illegal[coun
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java146 new Object[]{ extraTokens }); //"Extra illegal tokens: "+extraTokens);
211 new Object[]{ extraTokens }); //"Extra illegal tokens: "+extraTokens);
1697 error(XPATHErrorResources.ER_PREDICATE_ILLEGAL_SYNTAX, null); //"'..[predicate]' or '.[predicate]' is illegal syntax. Use 'self::node()[predicate]' instead.");
1810 new Object[]{ m_token }); //"illegal axis name: "+m_token);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransliteratorParser.java427 * @param illegal the set of special characters that is illegal during
443 UnicodeSet illegal,
539 if (illegal.contains(c)) {
440 parseSection(String rule, int pos, int limit, TransliteratorParser parser, StringBuffer buf, UnicodeSet illegal, boolean isSegment) argument
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorParser.java426 * @param illegal the set of special characters that is illegal during
442 UnicodeSet illegal,
538 if (illegal.contains(c)) {
439 parseSection(String rule, int pos, int limit, TransliteratorParser parser, StringBuffer buf, UnicodeSet illegal, boolean isSegment) argument
/external/valgrind/none/tests/
H A Dcmdline1.stdout.exp121 --sigill-diagnostics=yes|no warn about illegal instructions? [yes]
H A Dcmdline2.stdout.exp121 --sigill-diagnostics=yes|no warn about illegal instructions? [yes]
/external/libbrillo/
H A DAndroid.mk382 # We su shell because process tests try setting "illegal"
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp297 // illegal byte sequences
309 StringPiece illegal(strings[i]);
310 UCollationResult order = coll->compareUTF8(fffd, illegal, errorCode);
312 errln("compareUTF8(U+FFFD, string %d with illegal UTF-8)=%d != UCOL_EQUAL",
1192 errln("illegal attribute=value combination on line %d: %s",
/external/conscrypt/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java608 for (String illegal : illegals) {
610 NativeCrypto.SSL_set_cipher_lists(s, new String[] { illegal });
611 fail("Exception now thrown for illegal cipher: " + illegal);
/external/mesa3d/src/mesa/swrast/
H A Ds_texfetch_tmp.h67 #error illegal number of texture dimensions
/external/libvorbis/doc/
H A D04-codec.tex259 and \varname{[vorbis_mode_transformtype]}. \varname{[vorbis_mode_mapping]} must not be greater than the highest number mapping in use. Any illegal values render the stream undecodable.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1188 milliseconds

12