HomeSort by relevance Sort by last modified time
    Searched defs:codePoints (Results 1 - 25 of 36) sorted by null

1 2

  /external/icu4c/samples/props/
props.cpp 53 codePoints[]={
58 for(i=0; i<sizeof(codePoints)/sizeof(codePoints[0]); ++i) {
59 printProps(codePoints[i]);
  /external/chromium_org/third_party/icu/source/i18n/
ucol_cnt.h 40 UChar *codePoints;
50 UChar *codePoints;
  /external/icu4c/i18n/
ucol_cnt.h 40 UChar *codePoints;
50 UChar *codePoints;
  /external/chromium_org/third_party/icu/source/test/cintltst/
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];
utf8tst.c     [all...]
  /external/chromium_org/third_party/icu/source/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/icu4c/test/cintltst/
utf16tst.c 715 static const UChar32 codePoints[]={
745 for(i=0; i<LENGTHOF(codePoints); ++i) {
746 c=codePoints[i];
759 for(i=0; i<LENGTHOF(codePoints); ++i) {
760 c=codePoints[i];
utf8tst.c 517 static const UChar32 codePoints[]={
532 if(c != codePoints[i]){
534 offset, codePoints[i], c);
539 if(c != codePoints[i]){
541 offset, codePoints[i], c);
545 for(i=LENGTHOF(codePoints)-1, offset=sizeof(input); offset > 0; --i){
547 if(c != codePoints[i]){
549 offset, codePoints[i], c);
552 for(i=LENGTHOF(codePoints)-1, offset=sizeof(input); offset > 0; --i){
554 if(c != codePoints[i])
    [all...]
  /external/icu4c/tools/toolutil/
ucm.h 72 UChar32 *codePoints;
112 (((m)->uLen==1) ? &(m)->u : (t)->codePoints+(m)->u)
133 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
140 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
253 UChar32 codePoints[UCNV_EXT_MAX_UCHARS],
260 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...]
  /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);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.h 84 const int *codePoints = getProximityCodePointsAt(index);
86 while (codePoints[i] > 0 && i < MAX_PROXIMITY_CHARS_SIZE) {
87 if (codePoints[i++] == c) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordComposer.java 220 final int[] codePoints;
225 codePoints = StringUtils.toCodePointArray(mTypedWord.toString());
227 codePoints = mPrimaryKeyCodes;
233 actualMoveAmountWithinWord += Character.charCount(codePoints[cursorPos]);
241 actualMoveAmountWithinWord -= Character.charCount(codePoints[cursorPos]);
BinaryDictionary.java 260 int[] codePoints = StringUtils.toCodePointArray(word);
261 return getProbabilityNative(mNativeDict, codePoints);
282 final int[] codePoints = StringUtils.toCodePointArray(word);
283 addUnigramWordNative(mNativeDict, codePoints, probability);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DynamicBinaryDictIOUtils.java 183 * @param codePoints the characters to put inside the PtNode.
184 * @param length how many code points to read from codePoints.
198 private static int movePtNode(final int fileEndAddress, final int[] codePoints,
206 final int[] writtenCharacters = Arrays.copyOfRange(codePoints, 0, length);
274 final int[] codePoints = FusionDictionary.getCodePoints(word);
275 final int wordLen = codePoints.length;
327 } else if (codePoints[wordPos + p] != currentInfo.mCharacters[p]) {
378 final int[] newCharacters = Arrays.copyOfRange(codePoints, wordPos + p,
379 codePoints.length);
436 final int[] characters = Arrays.copyOfRange(codePoints, wordPos, wordLen)
    [all...]
FusionDictionary.java 375 final int[] codePoints = new int[Character.codePointCount(characters, 0, length)];
380 codePoints[dsti] = codePoint;
383 codePoints[dsti] = codePoint;
384 return codePoints;
646 final int[] codePoints = getCodePoints(string);
650 int indexOfGroup = findIndexOfChar(nodeArray, codePoints[index]);
654 if (codePoints.length - index < currentPtNode.mChars.length) return null;
656 while (newIndex < codePoints.length && newIndex - index < currentPtNode.mChars.length) {
657 if (currentPtNode.mChars[newIndex - index] != codePoints[newIndex]) return null;
665 if (index < codePoints.length)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 236 int codePoints[wordLength];
237 env->GetIntArrayRegion(word, 0, wordLength, codePoints);
238 return dictionary->getProbability(codePoints, wordLength);
286 int codePoints[wordLength];
287 env->GetIntArrayRegion(word, 0, wordLength, codePoints);
288 dictionary->addUnigramWord(codePoints, wordLength, probability);
  /external/chromium_org/third_party/icu/source/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/tools/makeconv/
gencnvex.c 936 UChar32 *codePoints;
953 codePoints=UCM_GET_CODE_POINTS(table, m);
954 next=codePoints[0];
962 codePoints=UCM_GET_CODE_POINTS(table, m);
963 next=codePoints[0];
973 codePoints=UCM_GET_CODE_POINTS(table, m);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
StringUtils.java 170 final int[] codePoints = new int[string.codePointCount(0, length)];
173 codePoints[destIndex] = string.codePointAt(index);
176 return codePoints;
  /external/chromium_org/third_party/icu/source/common/
ucnvmbcs.c 482 * @param codePoints resulting Unicode code points, or negative if a byte sequence does
487 UConverterEnumToUCallback(const void *context, uint32_t value, UChar32 codePoints[32]);
496 UChar32 codePoints[32];
511 codePoints[0]=U_SENTINEL;
530 codePoints[b&0x1f]=U_SENTINEL;
572 codePoints[b&0x1f]=c;
577 if(!callback(context, value|(uint32_t)(b-0x20), codePoints)) {
    [all...]
  /external/icu4c/common/
ucnvmbcs.c 485 * @param codePoints resulting Unicode code points, or negative if a byte sequence does
490 UConverterEnumToUCallback(const void *context, uint32_t value, UChar32 codePoints[32]);
499 UChar32 codePoints[32];
514 codePoints[0]=U_SENTINEL;
533 codePoints[b&0x1f]=U_SENTINEL;
575 codePoints[b&0x1f]=c;
580 if(!callback(context, value|(uint32_t)(b-0x20), codePoints)) {
    [all...]
  /libcore/luni/src/main/java/java/lang/
Character.java     [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 357 milliseconds

1 2