HomeSort by relevance Sort by last modified time
    Searched refs:ucol_getSortKey (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/test/cintltst/
ccurrtst.c 144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0);
146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1);
148 sortklen=ucol_getSortKey(c, target, u_strlen(target), NULL, 0);
150 ucol_getSortKey(c, target, u_strlen(target), sortKey2, sortklen+1);
capitst.c     [all...]
cmsccoll.c 371 sortkeysize = ucol_getSortKey(coll, m, sizem, sortkey, 256);
    [all...]
callcoll.c 368 sortklen1=ucol_getSortKey(myCollation, source, sLen, NULL, 0);
369 sortklen2=ucol_getSortKey(myCollation, target, tLen, NULL, 0);
376 ucol_getSortKey(myCollation, source, sLen, sortKey1, sortklen1+1);
377 ucol_getSortKey(myCollation, source, -1, sortKey1a, sortklen1+1);
381 ucol_getSortKey(myCollation, target, tLen, sortKey2, sortklen2+1);
382 ucol_getSortKey(myCollation, target, -1, sortKey2a, sortklen2+1);
874 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100);
875 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100);
    [all...]
cfrtst.c 321 lenActualSortKey = ucol_getSortKey(pCollator,
  /external/icu/icu4c/source/test/cintltst/
ccurrtst.c 144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0);
146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1);
148 sortklen=ucol_getSortKey(c, target, u_strlen(target), NULL, 0);
150 ucol_getSortKey(c, target, u_strlen(target), sortKey2, sortklen+1);
capitst.c     [all...]
cmsccoll.c 371 sortkeysize = ucol_getSortKey(coll, m, sizem, sortkey, 256);
730 ucol_getSortKey(coll, b, 1, res, 256);
1070 ucol_getSortKey(coll, strA, 3, (uint8_t *)sortKeyA, sizeof(sortKeyA));
1071 ucol_getSortKey(coll, strA, -1, (uint8_t *)sortKeyAz, sizeof(sortKeyAz));
1072 ucol_getSortKey(coll, strB, 3, (uint8_t *)sortKeyB, sizeof(sortKeyB));
1073 ucol_getSortKey(coll, strB, -1, (uint8_t *)sortKeyBz, sizeof(sortKeyBz));
1089 ucol_getSortKey(coll, strA, 3, (uint8_t *)sortKeyA, sizeof(sortKeyA));
1090 ucol_getSortKey(coll, strA, -1, (uint8_t *)sortKeyAz, sizeof(sortKeyAz));
1091 ucol_getSortKey(coll, strB, 3, (uint8_t *)sortKeyB, sizeof(sortKeyB));
1092 ucol_getSortKey(coll, strB, -1, (uint8_t *)sortKeyBz, sizeof(sortKeyBz))
    [all...]
callcoll.c 396 sortklen1=ucol_getSortKey(myCollation, source, sLen, NULL, 0);
397 sortklen2=ucol_getSortKey(myCollation, target, tLen, NULL, 0);
405 ucol_getSortKey(myCollation, source, sLen, sortKey1, sortklen1+1);
406 ucol_getSortKey(myCollation, source, -1, sortKey1a, sortklen1+1);
410 ucol_getSortKey(myCollation, target, tLen, sortKey2, sortklen2+1);
411 ucol_getSortKey(myCollation, target, -1, sortKey2a, sortklen2+1);
903 sourceKeyOut = ucol_getSortKey(myCollator, source, -1, sourceKeyArray, 100);
905 targetKeyOut = ucol_getSortKey(myCollator, target, -1, targetKeyArray, 100);
    [all...]
cfrtst.c 321 lenActualSortKey = ucol_getSortKey(pCollator,
  /external/icu/icu4c/source/samples/legacy/
newcol.cpp 33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
oldcol.cpp 34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
  /libcore/luni/src/main/native/
libcore_icu_NativeCollation.cpp 161 size_t byteArraySize = ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, sizeof(byteArray) - 1);
166 byteArraySize = ucol_getSortKey(collator, source.get(), source.size(), usedByteArray, byteArraySize);
  /external/chromium_org/third_party/icu/source/i18n/
tblcoll.cpp 565 return ucol_getSortKey(ucollator, source.getBuffer(), source.length(), result, resultLength);
572 return ucol_getSortKey(ucollator, source, sourceLength, result, resultLength);
  /external/chromium_org/third_party/icu/source/test/intltest/
ucaconf.cpp 194 resLen = ucol_getSortKey(coll, buffer, buflen, newSk, 1024);
  /external/chromium_org/third_party/icu/source/test/perf/collperf/
collperf.cpp 105 ucol_getSortKey(col, data[i].icu_data, -1, icu_key, MAX_KEY_LENGTH);
109 ucol_getSortKey(col, data[i].icu_data, data[i].icu_data_len, icu_key, MAX_KEY_LENGTH);
788 s = ucol_getSortKey(col, icu_data->dataOf(i), -1,NULL, 0);
790 t = ucol_getSortKey(col, icu_data->dataOf(i), -1,icu_key->last(), s);
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 108 ucol_getSortKey(col, data[i].icu_data, -1, icu_key, MAX_KEY_LENGTH);
112 ucol_getSortKey(col, data[i].icu_data, data[i].icu_data_len, icu_key, MAX_KEY_LENGTH);
805 s = ucol_getSortKey(col, icu_data->dataOf(i), -1,NULL, 0);
807 t = ucol_getSortKey(col, icu_data->dataOf(i), -1,icu_key->last(), s);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucol.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
ucol.h     [all...]
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
collperf.cpp 406 t = ucol_getSortKey(gCol, gFileLines[line].name, len, (unsigned char *)gFileLines[line].icuSortKey, 5000);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/dumpce/
dumpce.cpp 171 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
176 sortkeylength = ucol_getSortKey(iter->iteratordata_.coll, codepoint,
826 ucol_getSortKey(COLLATOR_, element.ch, element.count, sortkey, 32);
    [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp 406 t = ucol_getSortKey(gCol, gFileLines[line].name, len, (unsigned char *)gFileLines[line].icuSortKey, 5000);
    [all...]
  /external/sqlite/android/
sqlite3_android.cpp 363 uint32_t result = ucol_getSortKey(collator, token, -1, (uint8_t*)keybuf, sizeof(keybuf)-1);
366 ALOGE("ucol_getSortKey needs bigger buffer %d", result);
  /external/icu/icu4c/source/i18n/
ucol.cpp 189 ucol_getSortKey(const UCollator *coll,
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 275 // Test case taking a single test data array, calling ucol_getSortKey for each
313 len = ucol_getSortKey(coll, source->dataOf(i), source->lengthOf(i), key, KEY_BUF_SIZE);
317 len = ucol_getSortKey(coll, source->dataOf(i), -1, key, KEY_BUF_SIZE);
    [all...]

Completed in 886 milliseconds

1 2