Searched defs:strCapacity (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Duset.cpp271 UChar* str, int32_t strCapacity,
288 return s->extract(str, strCapacity, *ec);
269 uset_getItem(const USet* uset, int32_t itemIndex, UChar32* start, UChar32* end, UChar* str, int32_t strCapacity, UErrorCode* ec) argument
/external/icu/icu4c/source/common/
H A Duset.cpp271 UChar* str, int32_t strCapacity,
288 return s->extract(str, strCapacity, *ec);
269 uset_getItem(const USet* uset, int32_t itemIndex, UChar32* start, UChar32* end, UChar* str, int32_t strCapacity, UErrorCode* ec) argument
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcldrtest.c828 int32_t strCapacity = 0; local
830 strCapacity = uset_getItem(exemplarSet, i, &start, &end, str, strCapacity, &status);
833 if(strCapacity == 0){
854 strCapacity++; /* increment for NUL termination */
856 str = (UChar*) malloc(U_SIZEOF_UCHAR * strCapacity);
857 strCapacity = uset_getItem(exemplarSet, i, &start, &end, str, strCapacity, &status);
862 if(uset_containsString(scripts[j],str, strCapacity) == TRUE){
/external/icu/icu4c/source/test/cintltst/
H A Dcldrtest.c831 int32_t strCapacity = 0; local
833 strCapacity = uset_getItem(exemplarSet, i, &start, &end, str, strCapacity, &status);
836 if(strCapacity == 0){
857 strCapacity++; /* increment for NUL termination */
859 str = (UChar*) malloc(U_SIZEOF_UCHAR * strCapacity);
860 strCapacity = uset_getItem(exemplarSet, i, &start, &end, str, strCapacity, &status);
865 if(uset_containsString(scripts[j],str, strCapacity) == TRUE){

Completed in 311 milliseconds