| /external/icu/icu4c/source/common/ |
| ulist.h | 44 U_CAPI const char * U_EXPORT2 ulist_next_keyword_value(UEnumeration* en, int32_t *resultLength, UErrorCode* status);
|
| locid.cpp | 977 virtual const char* next(int32_t* resultLength, UErrorCode& status) { 984 if(resultLength != NULL) { 985 *resultLength = len; 988 if(resultLength != NULL) { 989 *resultLength = 0; 997 int32_t resultLength = 0; 998 const char *s = next(&resultLength, status); 999 return setChars(s, resultLength, status);
|
| ulist.cpp | 247 U_CAPI const char * U_EXPORT2 ulist_next_keyword_value(UEnumeration *en, int32_t *resultLength, UErrorCode *status) { 254 if (s != NULL && resultLength != NULL) { 255 *resultLength = static_cast<int32_t>(uprv_strlen(s));
|
| ucnv_io.cpp | 785 int32_t* resultLength, 797 if (resultLength) { 798 *resultLength = (int32_t)uprv_strlen(myStr); 804 if (resultLength) { 805 *resultLength = 0; [all...] |
| loclikely.cpp | 868 int32_t resultLength = 0; 906 resultLength = 920 if (resultLength == 0) { 932 resultLength = 940 return resultLength; [all...] |
| /external/icu/icu4c/source/test/cintltst/ |
| uenumtst.c | 66 chArrayUNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) { 76 *resultLength = (int32_t)strlen(cont->currChar); 77 u_charsToUChars(cont->currChar, cont->currUChar, *resultLength); 83 chArrayNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) { 89 *resultLength = (int32_t)strlen(cont->currChar); 167 uchArrayUNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) { 173 *resultLength = u_strlen(ucont->currUChar);
|
| spreptst.c | 760 int32_t srcLength, resultLength, expectedLength; 780 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH; 787 resultLength = usprep_prepare(sprep, src, srcLength, result, resultLength, USPREP_ALLOW_UNASSIGNED, NULL, &status); 800 if (resultLength != expectedLength || u_strcmp(result, expected) != 0) {
|
| cmsgtst.c | 112 int32_t resultLengthOut,resultlength,i, patternlength; local 120 resultlength=1; 127 resultLengthOut=u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength, 132 resultlength=resultLengthOut+1; 133 result=(UChar*)realloc(result,sizeof(UChar) * resultlength); 134 u_formatMessage( "en_US",testCasePatterns[i], patternlength, result, resultlength, 158 resultlength=0; 159 resultLengthOut=u_formatMessageWithError( "en_US",testCasePatterns[i], patternlength, result, resultlength, 164 resultlength=resultLengthOut+1; 165 result=(UChar*)malloc(sizeof(UChar) * resultlength); 280 int32_t resultLengthOut, resultlength; local 381 int32_t resultLengthOut, resultlength; local 483 int32_t resultLengthOut, resultlength; local 577 int32_t resultLengthOut, resultlength; local 672 int32_t resultlength,resultLengthOut; local 742 int32_t resultlength,resultLengthOut; local 887 int32_t resultLengthOut,resultlength,i, patternlength; local [all...] |
| /external/icu/icu4c/source/i18n/unicode/ |
| utrans.h | 268 * @param resultLength pointer to an output variable receiving the length 277 int32_t *resultLength); 524 * @param resultLength The maximum size of result. 527 * @return int32_t The length of the rule string (may be greater than resultLength, 534 UChar* result, int32_t resultLength,
|
| ulocdata.h | 187 * @param resultLength The maximum size of result. 189 * @return int32_t The total buffer size needed; if greater than resultLength, 194 ulocdata_getDelimiter(ULocaleData *uld, ULocaleDataDelimiterType type, UChar *result, int32_t resultLength, UErrorCode *status);
|
| coll.h | [all...] |
| ucol.h | 791 * @param resultLength The maximum size of result. 793 * @return The total buffer size needed; if greater than resultLength, 801 int32_t resultLength, [all...] |
| tblcoll.h | 625 * @param resultLength length of the result buffer. If if not enough the 631 int32_t resultLength) const; 644 * @param resultLength length of the result buffer. If if not enough the 650 uint8_t *result, int32_t resultLength) const; [all...] |
| /libcore/luni/src/test/java/libcore/java/util/zip/ |
| OldAndroidDeflateTest.java | 57 int resultLength = decompresser.inflate(result); 60 String outputString = new String(result, 0, resultLength, "UTF-8");
|
| /external/icu/icu4c/source/common/unicode/ |
| unorm.h | 207 * @param resultLength The maximum size of result. 209 * @return The total buffer size needed; if greater than resultLength, 216 UChar *result, int32_t resultLength,
|
| /external/emma/core/java12/com/vladium/util/ |
| Strings.java | 66 final int resultLength = _result.size (); 67 if (resultLength == length) 71 final String [] result = new String [resultLength];
|
| /external/icu/icu4c/source/i18n/ |
| coll.cpp | 650 int32_t resultLength, 653 return ucol_getBound(source, sourceLength, boundType, noOfLevels, result, resultLength, &status); 825 virtual const char* next(int32_t* resultLength, UErrorCode& /*status*/) { 829 if(resultLength != NULL) { 830 *resultLength = (int32_t)uprv_strlen(result); 833 if(resultLength != NULL) { 834 *resultLength = 0; 842 int32_t resultLength = 0; 843 const char *s = next(&resultLength, status); 844 return setChars(s, resultLength, status) [all...] |
| ucal.cpp | 209 int32_t resultLength, 218 return id.extract(result, resultLength, *status); 226 int32_t resultLength, 234 if(!(result==NULL && resultLength==0)) { 237 id.setTo(result, 0, resultLength); 258 return id.extract(result, resultLength, *status);
|
| csdetect.cpp | 376 enumNext(UEnumeration *en, int32_t *resultLength, UErrorCode * /*status*/) { 407 if(resultLength != NULL) { 408 *resultLength = currName == NULL ? 0 : (int32_t)uprv_strlen(currName);
|
| ucol.cpp | 195 int32_t resultLength) 204 getSortKey(source, sourceLength, result, resultLength); 245 int32_t resultLength, 277 if(result != NULL && resultLength >= sourceIndex+boundType) {
|
| /external/conscrypt/common/src/main/java/org/conscrypt/ |
| SSLParametersImpl.java | 606 int resultLength = 0; 608 resultLength += array.length; 610 String[] result = new String[resultLength];
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| BidiLine.java | 129 lineBidi.resultLength = limit - start; 145 lineBidi.resultLength -= lineBidi.controlCount; [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| BidiLine.java | 128 lineBidi.resultLength = limit - start; 144 lineBidi.resultLength -= lineBidi.controlCount; [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
| BiDiConformanceTest.java | 542 int resultLength=ubidi.getResultLength(); // visual length including BiDi controls 546 for(i=visualIndex=0; i<resultLength; ++i) { 572 for(i=0; i<resultLength; ++i) {
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
| BiDiConformanceTest.java | 539 int resultLength=ubidi.getResultLength(); // visual length including BiDi controls 543 for(i=visualIndex=0; i<resultLength; ++i) { 569 for(i=0; i<resultLength; ++i) {
|