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

1 2 3 4

  /external/icu4c/i18n/
ucol_cnt.cpp 36 UChar *newCPs = (UChar *)uprv_realloc(tbl->codePoints, 2*tbl->size*sizeof(UChar));
43 tbl->codePoints = newCPs;
71 tbl->codePoints = NULL;
87 el->codePoints = (UChar *)uprv_malloc(INIT_EXP_TABLE_SIZE*sizeof(UChar));
88 if(el->codePoints == NULL) {
96 uprv_memset(el->codePoints, 0, INIT_EXP_TABLE_SIZE*sizeof(UChar));
109 uprv_free(el->codePoints);
167 if(table->codePoints != NULL) {
168 uprv_free(table->codePoints);
170 table->codePoints = (UChar *)uprv_malloc(table->position*sizeof(UChar))
    [all...]
ucol_cnt.h 40 UChar *codePoints;
50 UChar *codePoints;
uni2name.cpp 67 * we work on codepoints.
ucol_elm.h 48 * Unicode codepoints.
  /external/icu4c/samples/props/
props.cpp 53 codePoints[]={
58 for(i=0; i<sizeof(codePoints)/sizeof(codePoints[0]); ++i) {
59 printProps(codePoints[i]);
  /frameworks/base/core/java/android/emoji/
EmojiFactory.java 188 int[] codePoints = new int[vspString.codePointCount(0, len)];
196 codePoints[new_len] = newCodePoint;
200 codePoints[new_len] = codePoint;
202 return new String(codePoints, 0, new_len);
222 int[] codePoints = new int[puaString.codePointCount(0, len)];
230 codePoints[new_len] = newCodePoint;
234 codePoints[new_len] = codePoint;
236 return new String(codePoints, 0, new_len);
  /external/icu4c/test/cintltst/
citertst.c 1030 * Getting codepoints from a string
1031 * @param str character string contain codepoints seperated by space and ended
1033 * @param codepoints array for storage, assuming size > 5
1036 static char * getCodePoints(char *str, UChar *codepoints, UChar *contextCPs)
1272 UChar codepoints[10]; local
1658 UChar codepoints[10]; local
1856 UChar codepoints[10]; local
    [all...]
cucdapi.c 189 uint32_t codepoints[] = { local
244 for(i=0; i<LENGTHOF(codepoints); ++i){
245 code = uscript_getScript(codepoints[i],&status);
248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
250 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]);
255 codepoints[i],u_errorName(status));
285 log_err("uscript_getScript failed for %d codepoints\n", err);
utf16tst.c 647 static const UChar32 codePoints[]={
677 for(i=0; i<LENGTHOF(codePoints); ++i) {
678 c=codePoints[i];
691 for(i=0; i<LENGTHOF(codePoints); ++i) {
692 c=codePoints[i];
  /external/icu4c/common/
usetiter.cpp 43 * <br>You are guaranteed that the codepoints are in sorted order, and the strings are in sorted order,
69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields.
70 * <br>Note that the codepoints are in sorted order, and the strings are in sorted order,
uidna.cpp 214 // the source contains all ascii codepoints
216 // assume the source contains all LDH codepoints
356 // convert all codepoints to lower case ASCII
424 // step 1: find out if all the codepoints in src are ASCII
  /external/icu4c/tools/toolutil/
ucm.h 71 UChar32 *codePoints;
111 (((m)->uLen==1) ? &(m)->u : (t)->codePoints+(m)->u)
132 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
139 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
252 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
259 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
ucm.c 43 printMapping(UCMapping *m, UChar32 *codePoints, uint8_t *bytes, FILE *f) {
47 fprintf(f, "<U%04lX>", (long)codePoints[j]);
781 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
819 codePoints[uLen++]=cp;
827 m->u=codePoints[0];
830 u_strFromUTF32(NULL, 0, &u16Length, codePoints, uLen, &errorCode);
893 uprv_free(table->codePoints);
914 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
944 table->codePoints=(UChar32 *)uprv_malloc(table->codePointsCapacity*4);
945 if(table->codePoints==NULL)
    [all...]
  /external/sqlite/android/
PhoneticStringUtils.cpp 224 char32_t codepoints[MAX_CODEPOINTS]; // if array size is changed the for loop needs to be changed local
243 codepoints[j] = static_cast<char32_t>(ret);
253 // If all of codepoints are invalid, we place the string at the end of
255 codepoints[0] = 0x10000 + CODEPOINT_FOR_NULL_STR;
259 size_t new_len = utf8_length_from_utf32(codepoints, length);
265 if (utf32_to_utf8(codepoints, length, *dst, new_len + 1) != new_len) {
PhoneticStringUtilsTest.cpp 122 char32_t codepoints[1] = {codepoint}; \
123 status_t ret = string8.setTo(codepoints, 1); \
  /external/icu4c/tools/gensprep/
gensprep.8.in 84 Contains the list of unassigned codepoints in Unicode version 3.2.0.\|.\|..
  /external/icu4c/tools/dumpce/
dumpce.cpp 119 * Writes the hexadecimal of a null-terminated array of codepoints into a
122 * @param c codepoints array
137 * Writes the hexadecimal of a non-null-terminated array of codepoints into a
140 * @param c codepoints array
141 * @param l codepoints array length
355 fprintf(OUTPUT_, "# where xxxx are codepoints in hexadecimals,\n");
929 * Checks if the set of codepoints belongs to the script
933 * @return TRUE if all codepoints belongs to the script
    [all...]
  /external/iptables/extensions/
libipt_2dscp.c 11 * For a list of DSCP codepoints see
  /external/icu4c/tools/makeconv/
gencnvex.c 933 UChar32 *codePoints;
950 codePoints=UCM_GET_CODE_POINTS(table, m);
951 next=codePoints[0];
959 codePoints=UCM_GET_CODE_POINTS(table, m);
960 next=codePoints[0];
970 codePoints=UCM_GET_CODE_POINTS(table, m);
    [all...]
  /external/icu4c/common/unicode/
uidna.h 53 * Option to prohibit processing of unassigned codepoints in the input and
61 * Option to allow processing of unassigned codepoints in the input
  /external/webkit/WebCore/icu/unicode/
uidna.h 53 * Option to prohibit processing of unassigned codepoints in the input and
61 * Option to allow processing of unassigned codepoints in the input
  /external/webkit/WebKit/mac/icu/unicode/
uidna.h 53 * Option to prohibit processing of unassigned codepoints in the input and
61 * Option to allow processing of unassigned codepoints in the input
  /bionic/libc/include/netinet/
ip.h 106 * ECN (Explicit Congestion Notification) codepoints in RFC3168
  /dalvik/libcore/luni/src/main/java/java/util/
StringTokenizer.java 26 * The set of delimiters (the codepoints that separate tokens) may be specified
  /external/icu4c/test/intltest/
cntabcol.cpp 107 // we must construct table in order to copy codepoints and CEs

Completed in 777 milliseconds

1 2 3 4