Home
last modified time | relevance | path

Searched refs:unichars (Results 1 – 6 of 6) sorted by relevance

/third_party/icu/icu4c/source/test/cintltst/
Dcintltst.c492 char *austrdup(const UChar* unichars) in austrdup() argument
497 length = u_strlen ( unichars ); in austrdup()
504 u_austrcpy ( newString, unichars ); in austrdup()
509 char *aescstrdup(const UChar* unichars,int32_t length){ in aescstrdup() argument
525 length = u_strlen( unichars); in aescstrdup()
531 …ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,true,&errorCo… in aescstrdup()
Dcintltst.h60 U_CFUNC char *austrdup(const UChar* unichars);
69 U_CFUNC char *aescstrdup(const UChar* unichars, int32_t length);
Dusrchtst.c138 static char *toCharString(const UChar* unichars) in toCharString() argument
143 int length = u_strlen(unichars); in toCharString()
146 UChar ch = unichars[count]; in toCharString()
/third_party/skia/src/core/
DSkFont.cpp369 SkAutoTArray<SkUnichar> unichars(numGlyphsInTypeface); in GlyphsToUnichars() local
370 typeface->getGlyphToUnicodeMap(unichars.get()); in GlyphsToUnichars()
374 text[i] = (id < numGlyphsInTypeface) ? unichars[id] : 0xFFFD; in GlyphsToUnichars()
/third_party/icu/docs/userguide/format_parse/messages/
Dexamples.md160 char *austrdup(const UChar* unichars)
166 length = u_strlen ( unichars );
171 u_austrcpy ( newString, unichars );
/third_party/skia/src/svg/
DSkSVGDevice.cpp990 SkAutoSTArray<64, SkUnichar> unichars(runSize); in SVGTextBuilder() local
992 runSize, unichars.get()); in SVGTextBuilder()
995 this->appendUnichar(unichars[i], positions[i]); in SVGTextBuilder()