/third_party/icu/icu4c/source/common/ |
H A D | ustrenum.cpp | 47 unistr=*s; in next() 48 ensureCharsCapacity(unistr.length()+1, status); in next() 51 *resultLength=unistr.length(); in next() 53 unistr.extract(0, INT32_MAX, chars, charsCapacity, US_INV); in next() 65 unistr=*s; in unext() 67 *resultLength=unistr.length(); in unext() 69 return unistr.getTerminatedBuffer(); in unext() 110 UChar *buffer=unistr.getBuffer(length+1); in setChars() 114 unistr.releaseBuffer(length); in setChars() 115 return &unistr; in setChars() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ustrenum.cpp | 47 unistr=*s; in next() 48 ensureCharsCapacity(unistr.length()+1, status); in next() 51 *resultLength=unistr.length(); in next() 53 unistr.extract(0, INT32_MAX, chars, charsCapacity, US_INV); in next() 65 unistr=*s; in unext() 67 *resultLength=unistr.length(); in unext() 69 return unistr.getTerminatedBuffer(); in unext() 110 char16_t *buffer=unistr.getBuffer(length+1); in setChars() 114 unistr.releaseBuffer(length); in setChars() 115 return &unistr; in setChars() [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ustrenum.cpp | 47 unistr=*s; in next() 48 ensureCharsCapacity(unistr.length()+1, status); in next() 51 *resultLength=unistr.length(); in next() 53 unistr.extract(0, INT32_MAX, chars, charsCapacity, US_INV); in next() 65 unistr=*s; in unext() 67 *resultLength=unistr.length(); in unext() 69 return unistr.getTerminatedBuffer(); in unext() 110 UChar *buffer=unistr.getBuffer(length+1); in setChars() 114 unistr.releaseBuffer(length); in setChars() 115 return &unistr; in setChars() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | formatted_string_builder.cpp | 167 int32_t FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, Field field, in insert() argument 169 if (unistr.length() == 0) { in insert() 172 } else if (unistr.length() == 1) { in insert() 174 return insertCodePoint(index, unistr.charAt(0), field, status); in insert() 176 return insert(index, unistr, 0, unistr.length(), field, status); in insert() 181 FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, in insert() argument 189 getCharPtr()[position + i] = unistr.charAt(start + i); in insert() 196 FormattedStringBuilder::splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, in splice() argument 216 getCharPtr()[position + i] = unistr in splice() [all...] |
H A D | formatted_string_builder.h | 122 inline int32_t append(const UnicodeString &unistr, Field field, UErrorCode &status) { 123 return insert(fLength, unistr, field, status); 127 int32_t insert(int32_t index, const UnicodeString &unistr, Field field, UErrorCode &status); 131 * @param start Start index of the substring of unistr to be inserted. 132 * @param end End index of the substring of unistr to be inserted (exclusive). 134 int32_t insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, Field field, 142 * @param unistr The string to insert at the deletion position. 143 * @param startOther Start index of the substring of unistr to be inserted. 144 * @param endOther End index of the substring of unistr to be inserted (exclusive). 146 int32_t splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | formatted_string_builder.cpp | 167 int32_t FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, Field field, in insert() argument 169 if (unistr.length() == 0) { in insert() 172 } else if (unistr.length() == 1) { in insert() 174 return insertCodePoint(index, unistr.charAt(0), field, status); in insert() 176 return insert(index, unistr, 0, unistr.length(), field, status); in insert() 181 FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, in insert() argument 189 getCharPtr()[position + i] = unistr.charAt(start + i); in insert() 196 FormattedStringBuilder::splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, in splice() argument 216 getCharPtr()[position + i] = unistr in splice() [all...] |
H A D | formatted_string_builder.h | 122 inline int32_t append(const UnicodeString &unistr, Field field, UErrorCode &status) { 123 return insert(fLength, unistr, field, status); 127 int32_t insert(int32_t index, const UnicodeString &unistr, Field field, UErrorCode &status); 131 * @param start Start index of the substring of unistr to be inserted. 132 * @param end End index of the substring of unistr to be inserted (exclusive). 134 int32_t insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, Field field, 142 * @param unistr The string to insert at the deletion position. 143 * @param startOther Start index of the substring of unistr to be inserted. 144 * @param endOther End index of the substring of unistr to be inserted (exclusive). 146 int32_t splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | formatted_string_builder.cpp | 166 int32_t FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, Field field, in insert() argument 168 if (unistr.length() == 0) { in insert() 171 } else if (unistr.length() == 1) { in insert() 173 return insertCodePoint(index, unistr.charAt(0), field, status); in insert() 175 return insert(index, unistr, 0, unistr.length(), field, status); in insert() 180 FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, in insert() argument 188 getCharPtr()[position + i] = unistr.charAt(start + i); in insert() 195 FormattedStringBuilder::splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, in splice() argument 212 getCharPtr()[position + i] = unistr in splice() [all...] |
H A D | formatted_string_builder.h | 122 inline int32_t append(const UnicodeString &unistr, Field field, UErrorCode &status) { 123 return insert(fLength, unistr, field, status); 127 int32_t insert(int32_t index, const UnicodeString &unistr, Field field, UErrorCode &status); 131 * @param start Start index of the substring of unistr to be inserted. 132 * @param end End index of the substring of unistr to be inserted (exclusive). 134 int32_t insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, Field field, 142 * @param unistr The string to insert at the deletion position. 143 * @param startOther Start index of the substring of unistr to be inserted. 144 * @param endOther End index of the substring of unistr to be inserted (exclusive). 146 int32_t splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, [all...] |
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/ |
H A D | update.py | 15 def unistr (s): function 50 result.append ("../fonts/%s:%s:%s:%s" % (font, opts, unistr(text), glyphstr(glyphs))) 61 result.append ("../fonts/%s:%s:%s:*" % (font, opts, unistr (text)))
|
/third_party/icu/icu4c/source/test/perf/ustrperf/ |
H A D | stringperf.h | 16 #include "unicode/unistr.h" 37 UnicodeString unistr; variable 419 unistr = icu_assign_helper(src,srcLen); in assign() 424 unistr.setTo(src, srcLen); in assign1() 429 unistr = s0; in assign2()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | string_byte_sink.h | 18 // See unicode/unistr.h and unicode/bytestream.h in ICU for more details. 22 #include <unicode/unistr.h>
|
H A D | regexp_adapter_icu.cc | 29 #include <unicode/unistr.h>
|
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | fuzz_phone.cc | 19 #include <unicode/unistr.h>
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | strenum.h | 20 #include "unicode/unistr.h" 217 UnicodeString unistr; member in StringEnumeration 252 * Converts s to Unicode and sets unistr to the result. 270 * @return A pointer to unistr.
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | strenum.h | 20 #include "unicode/unistr.h" 217 UnicodeString unistr; member in StringEnumeration 252 * Converts s to Unicode and sets unistr to the result. 270 * @return A pointer to unistr.
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | strenum.h | 20 #include "unicode/unistr.h" 217 UnicodeString unistr; member in StringEnumeration 252 * Converts s to Unicode and sets unistr to the result. 270 * @return A pointer to unistr.
|
/third_party/python/Modules/cjkcodecs/ |
H A D | multibytecodec.c | 765 PyObject *unistr, int final) in encoder_encode_stateful() 772 if (PyUnicode_Check(unistr)) in encoder_encode_stateful() 775 unistr = ucvt = PyObject_Str(unistr); in encoder_encode_stateful() 776 if (unistr == NULL) in encoder_encode_stateful() 778 else if (!PyUnicode_Check(unistr)) { in encoder_encode_stateful() 794 PyUnicode_Append(&inbuf_tmp, unistr); in encoder_encode_stateful() 803 Py_INCREF(unistr); in encoder_encode_stateful() 804 inbuf = unistr; in encoder_encode_stateful() 1716 PyObject *unistr, PyObjec in mbstreamwriter_iwrite() 764 encoder_encode_stateful(MultibyteStatefulEncoderContext *ctx, PyObject *unistr, int final) encoder_encode_stateful() argument 1715 mbstreamwriter_iwrite(MultibyteStreamWriterObject *self, PyObject *unistr, PyObject *str_write) mbstreamwriter_iwrite() argument [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/ |
H A D | geocoding_warpper.cc | 10 #include <unicode/unistr.h> // NOLINT(build/include_order)
|
H A D | phonenumber_offline_geocoder.cc | 22 #include <unicode/unistr.h> // NOLINT(build/include_order)
|
/third_party/icu/icu4c/source/samples/case/ |
H A D | case.cpp | 16 #include <unicode/unistr.h>
|
/third_party/skia/third_party/externals/icu/source/samples/case/ |
H A D | case.cpp | 16 #include <unicode/unistr.h>
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
H A D | name_editing_test.cc | 21 #include <unicode/unistr.h>
|
/third_party/python/Lib/test/ |
H A D | test_unicodedata.py | 333 def unistr(data): member in NormalizationTest 380 c1,c2,c3,c4,c5 = [self.unistr(x) for x in line.split(';')[:-1]]
|
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
H A D | TestCharset.java | 1173 final String unistr = "abcd\ud800\udc00\u1234\u00a5\u3000\r\n"; in TestAPISemantics() 1203 CharBuffer uniVal = CharBuffer.wrap(unistr); in TestAPISemantics() 1214 CharBuffer chars = CharBuffer.allocate(unistr.length()); in TestAPISemantics() 1225 if (!equals(chars, unistr)) { in TestAPISemantics() 1229 printchars(unistr); in TestAPISemantics() 1240 CharBuffer chars = CharBuffer.allocate(unistr.length()); in TestAPISemantics() 1254 if (unistr.length() != (chars.limit())) { in TestAPISemantics() 1258 if (!equals(chars, unistr)) { in TestAPISemantics() 1271 CharBuffer chars = CharBuffer.allocate(unistr.length()); in TestAPISemantics() 1284 if (chars.limit() != unistr in TestAPISemantics() [all...] |