HomeSort by relevance Sort by last modified time
    Searched full:overlong (Results 1 - 25 of 40) sorted by null

1 2

  /external/pcre/dist/
pcre_valid_utf8.c 88 PCRE_UTF8_ERR15 Overlong 2-byte sequence
89 PCRE_UTF8_ERR16 Overlong 3-byte sequence
90 PCRE_UTF8_ERR17 Overlong 4-byte sequence
91 PCRE_UTF8_ERR18 Overlong 5-byte sequence (won't ever occur)
92 PCRE_UTF8_ERR19 Overlong 6-byte sequence (won't ever occur)
154 set and not the 0x40 bit. Then check for an overlong sequence, and for the
160 for for xx00 000x (overlong sequence). */
170 for 1110 0000, xx0x xxxx (overlong sequence) or
192 bytes for for 1111 0000, xx00 xxxx (overlong sequence), then check for a
220 here so that overlong sequences get diagnosed, and also in case there i
    [all...]
pcreposix.c 163 REG_BADPAT, /* overlong MARK name */
  /external/v8/test/mjsunit/regress/
regress-1415.js 38 // Overlong encodings
  /external/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 40 * Unicode 3.1, which mandates the rejection of "overlong" byte
43 * has been modified to also reject "overlong" byte sequences, but (as
162 // leading position and overlong 2-byte form.
180 // overlong? 5 most significant bits must not all be zero
280 // leading position and overlong 2-byte form.
292 // overlong? 5 most significant bits must not all be zero
Internal.java 161 * <p>This method rejects "overlong" byte sequences, as well as
165 * JDK has been modified to also reject "overlong" byte sequences,
ByteString.java 640 * <p>This method returns {@code false} for "overlong" byte sequences,
644 * Oracle's JDK has been modified to also reject "overlong" byte
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 238 // overlong NULL
240 // overlong ascii 'A'
242 // overlong "/../"
  /external/libxml2/include/libxml/
xmlexports.h 20 * modifying this, rather than overlong #ifdef lines. This helps
  /external/v8/test/mjsunit/
string-lastindexof.js 57 var longNonMatch = "overlong string that doesn't match";
  /external/guava/guava/src/com/google/common/base/
Utf8.java 154 // and overlong 2-byte form.
165 // Overlong? 5 most significant bits must not all be zero.
  /external/flac/libFLAC/
format.c 315 if ((utf8[0] & 0xFE) == 0xC0) /* overlong sequence check */
320 if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check */
330 if (utf8[0] == 0xF0 && (utf8[1] & 0xF0) == 0x80) /* overlong sequence check */
335 if (utf8[0] == 0xF8 && (utf8[1] & 0xF8) == 0x80) /* overlong sequence check */
340 if (utf8[0] == 0xFC && (utf8[1] & 0xFC) == 0x80) /* overlong sequence check */
  /external/boringssl/src/tool/
digest.cc 276 const bool overlong = line[len - 1] != '\n' && !feof(file); local
281 overlong) {
290 if (overlong) {
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 597 // Overlong sequences with one trailing byte missing.
752 // Overlong sequences with two trailing byte missing.
    [all...]
  /art/runtime/
utf_test.cc 135 // Two byte special case : 0 must use an overlong encoding.
  /external/libpng/contrib/tools/
chkfmt 50 # long and cause spuriously overlong lines. To avoid this subtitute the version
  /external/libvterm/src/
encoding.c 73 // Check for overlong sequences
  /external/openssh/
sshbuf-getput-crypto.c 78 /* Refuse overlong bignums */
sshbuf-getput-basic.c 442 /* Refuse overlong bignums, allow prepended \0 to avoid MSB set */
  /hardware/ti/omap4-aah/security/tf_daemon/
lib_manifest2.c 387 /* Illegal UTF-8: overlong encoding of character in the [0x00-0x7F] range
425 /* We're in a 3-byte sequence, check that we're not using an overlong sequence */
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 387 /* Illegal UTF-8: overlong encoding of character in the [0x00-0x7F] range
425 /* We're in a 3-byte sequence, check that we're not using an overlong sequence */
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSource.java 185 * overlong encodings (such as {@code 0xc080} for the NUL character in modified UTF-8).
Buffer.java 699 return REPLACEMENT_CHARACTER; // Reject overlong code points.
    [all...]
  /libcore/libart/src/main/java/java/lang/
StringFactory.java 126 // Note: Java allows overlong char
  /external/harfbuzz_ng/test/api/
test-buffer.c 627 /* overlong sequences */
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 721 // 99: overlong substring lengths get pinned to remainder lengths anyway
    [all...]

Completed in 1930 milliseconds

1 2