Home
last modified time | relevance | path

Searched refs:extractBytes (Results 1 – 4 of 4) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Ducsdetst.c71 static char *extractBytes(const UChar *src, int32_t length, const char *codepage, int32_t *byteLeng… in extractBytes() function
133 bytes = extractBytes(s, sLength, "UTF-8", &byteLength); in TestUTF8()
172 char *beBytes = extractBytes(chars, cLength, "UTF-16BE", &beLength); in TestUTF16()
173 char *leBytes = extractBytes(chars, cLength, "UTF-16LE", &leLength); in TestUTF16()
243 bISO = extractBytes(sISO, sISOLength, "ISO-8859-1", &lISO); in TestC1Bytes()
244 bWindows = extractBytes(sWindows, sWindowsLength, "windows-1252", &lWindows); in TestC1Bytes()
295 bytes = extractBytes(s, sLength, "ISO-8859-1", &byteLength); in TestInputFilter()
478 char *bytes = extractBytes(chars, cLength, "IBM424", &bLength); in TestIBM424()
479 char *bytes_r = extractBytes(chars_reverse, crLength, "IBM424", &brLength); in TestIBM424()
556 char *bytes = extractBytes(chars, cLength, "IBM420", &bLength); in TestIBM420()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dcsdetest.cpp146 static char *extractBytes(const UnicodeString &source, const char *codepage, int32_t &length) in extractBytes() function
176 std::unique_ptr<char []> bytes(extractBytes(testString, codepage, byteLength)); in checkEncoding()
328 char *bytes = extractBytes(s, "UTF-8", byteLength); in UTF8Test()
367 std::unique_ptr<char []>beBytes(extractBytes(s, "UTF-16BE", beLength)); in UTF16Test()
368 std::unique_ptr<char []>leBytes(extractBytes(s, "UTF-16LE", leLength)); in UTF16Test()
417 char *bytes = extractBytes(s, "ISO-8859-1", byteLength); in InputFilterTest()
484 char *bISO = extractBytes(sISO, "ISO-8859-1", lISO); in C1BytesTest()
485 char *bWindows = extractBytes(sWindows, "windows-1252", lWindows); in C1BytesTest()
625 char *bytes = extractBytes(s1, "IBM424", bLength); in IBM424Test()
626 char *bytes_r = extractBytes(s2, "IBM424", brLength); in IBM424Test()
[all …]
/third_party/skia/third_party/externals/piex/src/binary_parse/
Drange_checked_byte_ptr.cc144 std::vector<unsigned char> bytes = extractBytes(pos, length); in substr()
153 std::vector<unsigned char> RangeCheckedBytePtr::extractBytes( in extractBytes() function in piex::binary_parse::RangeCheckedBytePtr
265 std::vector<unsigned char> x_vec = x.extractBytes(0, num); in memcmp()
266 std::vector<unsigned char> y_vec = y.extractBytes(0, num); in memcmp()
277 std::vector<unsigned char> x_vec = x.extractBytes(0, y.length()); in strcmp()
Drange_checked_byte_ptr.h321 std::vector<unsigned char> extractBytes(size_t pos, size_t length) const;