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

1 2 3 4

  /external/icu4c/common/
uenumimp.h 65 * @param resultLength pointer to result length
72 int32_t* resultLength,
82 * @param resultLength pointer to result length
89 int32_t* resultLength,
139 int32_t* resultLength,
150 int32_t* resultLength,
uenum.c 88 int32_t* resultLength,
106 if (resultLength) {
107 *resultLength = len;
115 int32_t* resultLength,
120 const UChar *tempUCharVal = en->uNext(en, resultLength, status);
125 _getBuffer(en, (*resultLength+1) * sizeof(char));
130 u_UCharsToChars(tempUCharVal, tempCharVal, *resultLength + 1);
140 int32_t* resultLength,
147 return en->uNext(en, resultLength, status);
156 int32_t* resultLength,
    [all...]
ustrenum.cpp 42 StringEnumeration::next(int32_t *resultLength, UErrorCode &status) {
48 if(resultLength!=NULL) {
49 *resultLength=unistr.length();
60 StringEnumeration::unext(int32_t *resultLength, UErrorCode &status) {
65 if(resultLength!=NULL) {
66 *resultLength=unistr.length();
187 int32_t* resultLength,
190 return THIS(en)->unext(resultLength, *ec);
198 int32_t* resultLength,
201 return THIS(en)->next(resultLength, *ec)
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextCodecUserDefined.cpp 70 size_t resultLength = 0;
76 bytes[resultLength++] = signedByte;
81 result.grow(resultLength + replacementLength + length - i);
83 memcpy(bytes + resultLength, replacement, replacementLength);
84 resultLength += replacementLength;
88 return CString(bytes, resultLength);
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uenum.h 66 * @param resultLength pointer to receive the length of the result
81 int32_t* resultLength,
95 * @param resultLength pointer to receive the length of the result
114 int32_t* resultLength,
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
uenum.h 66 * @param resultLength pointer to receive the length of the result
81 int32_t* resultLength,
95 * @param resultLength pointer to receive the length of the result
114 int32_t* resultLength,
  /external/webkit/Source/WebCore/icu/unicode/
uenum.h 66 * @param resultLength pointer to receive the length of the result
81 int32_t* resultLength,
95 * @param resultLength pointer to receive the length of the result
114 int32_t* resultLength,
  /external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 69 static int convertCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error, UTF8CaseFunction caseFunction)
89 if (realLength > resultLength) {
97 conversionResult = convertUTF8ToUTF16(&utf8Source, utf8Source + utf8ResultLength, &utf16Target, utf16Target + resultLength, true);
104 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
106 return convertCase(result, resultLength, src, srcLength, error, g_utf8_casefold);
109 int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
111 return convertCase(result, resultLength, src, srcLength, error, g_utf8_strdown);
114 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
116 return convertCase(result, resultLength, src, srcLength, error, g_utf8_strup);
  /external/icu4c/common/unicode/
strenum.h 101 * are no more elements, returns NULL. If the resultLength pointer
104 * status is returned, the value at resultLength is undefined.</p>
123 * @param resultLength a pointer to receive the length, can be NULL.
128 virtual const char* next(int32_t *resultLength, UErrorCode& status);
132 * are no more elements, returns NULL. If the resultLength pointer
135 * status is returned, the value at resultLength is undefined.</p>
148 * @param resultLength a ponter to receive the length, can be NULL.
153 virtual const UChar* unext(int32_t *resultLength, UErrorCode& status);
253 * int32_t resultLength=0;
254 * const char *s=next(&resultLength, status)
    [all...]
uenum.h 95 * @param resultLength pointer to receive the length of the result
110 int32_t* resultLength,
124 * @param resultLength pointer to receive the length of the result
143 int32_t* resultLength,
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.cpp 77 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
82 UChar* resultEnd = result + resultLength;
84 if (sourceLength <= resultLength) {
100 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
105 UChar* resultEnd = result + resultLength;
107 if (sourceLength <= resultLength) {
123 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
126 if (resultLength < sourceLength) {
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.cpp 85 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
90 UChar* resultEnd = result + resultLength;
93 if (sourceLength <= resultLength)
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
114 UChar* resultEnd = result + resultLength;
117 if (sourceLength <= resultLength)
133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
136 if (resultLength < sourceLength) {
  /external/icu4c/i18n/
vzone.cpp 81 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) {
85 resultLength = s.length();
86 result = (UChar*)uprv_malloc(resultLength);
87 memcpy(result,s.getBuffer(),resultLength);
93 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode& status) {
97 resultLength = s.length();
98 result = (UChar*)uprv_malloc(resultLength);
99 memcpy(result,s.getBuffer(),resultLength);
105 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status) {
109 resultLength = s.length()
    [all...]
umsg.cpp 63 int32_t resultLength,
73 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
85 int32_t resultLength,
92 int32_t retVal = umsg_vformat(fmt,result,resultLength,ap,status);
102 int32_t resultLength,
113 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
125 int32_t resultLength,
133 int32_t retVal = umsg_vformat(fmt,result,resultLength,ap,status);
340 int32_t resultLength,
347 if(fmt==NULL||resultLength<0 || (resultLength>0 && result==0))
    [all...]
unum.cpp 159 int32_t resultLength,
163 return unum_formatInt64(fmt, number, result, resultLength, pos, status);
170 int32_t resultLength,
178 if(!(result==NULL && resultLength==0)) {
181 res.setTo(result, 0, resultLength);
196 return res.extract(result, resultLength, *status);
203 int32_t resultLength,
211 if(!(result==NULL && resultLength==0)) {
214 res.setTo(result, 0, resultLength);
229 return res.extract(result, resultLength, *status)
    [all...]
  /external/icu4c/test/intltest/
convtest.h 60 int32_t resultLength;
86 const UChar *result, int32_t resultLength,
92 const uint8_t *result, int32_t resultLength,
convtest.cpp     [all...]
  /libcore/luni/src/main/native/
libcore_icu_NativeIDN.cpp 42 size_t resultLength = toAscii
53 for (size_t i = 0; i < resultLength; ++i) {
59 return env->NewString(&dst[0], resultLength);
  /external/icu4c/i18n/unicode/
umsg.h 58 * int32_t resultLengthOut, resultlength;
72 * resultlength=0;
73 * resultLengthOut=u_formatMessage( "en_US", pattern, u_strlen(pattern), NULL, resultlength, &status, d1, str, 7);
76 * resultlength=resultLengthOut+1;
77 * result=(UChar*)realloc(result, sizeof(UChar) * resultlength);
78 * u_formatMessage( "en_US", pattern, u_strlen(pattern), result, resultlength, &status, d1, str, 7);
94 * int32_t resultlength, resultLengthOut, i;
101 * resultlength=0;
102 * resultLengthOut=u_formatMessage( "en_US", pattern, u_strlen(pattern), NULL, resultlength, &status, testArgs[i], str);
105 * resultlength=resultLengthOut+1
    [all...]
unum.h 59 * uint32_t i, resultlength, reslenneeded;
69 * resultlength=0;
70 * reslenneeded=unum_format(nf, a[i], NULL, resultlength, &pos, &status);
74 * resultlength=reslenneeded+1;
75 * result=(UChar*)malloc(sizeof(UChar) * resultlength);
76 * unum_format(nf, a[i], result, resultlength, &pos, &status);
349 * @param resultLength The maximum size of result.
355 * @return The total buffer size needed; if greater than resultLength, the output was truncated.
368 int32_t resultLength,
378 * @param resultLength The maximum size of result
    [all...]
  /external/icu4c/extra/uconv/
uwmsg.c 132 int32_t resultLength = LENGTHOF(result);
153 resultLength = sizeof(gNoFormatting) / U_SIZEOF_UCHAR;
154 if((msgLen + resultLength) <= LENGTHOF(result)) {
156 memcpy(result + msgLen, gNoFormatting, resultLength);
157 resultLength += msgLen;
158 uprint(result, resultLength, fp, &err);
165 resultLength = u_vformatMessage(uloc_getDefault(), msg, msgLen, result, resultLength, ap, &err);
182 uprint(result, resultLength, fp, &err);
  /external/webkit/Source/WebCore/dom/
StyleElement.cpp 102 unsigned resultLength = 0;
106 if (length > std::numeric_limits<unsigned>::max() - resultLength) {
110 resultLength += length;
114 String sheetText = String::createUninitialized(resultLength, text);
125 ASSERT(p == text + resultLength);
  /external/icu4c/test/cintltst/
uenumtst.c 64 chArrayUNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) {
74 *resultLength = (int32_t)strlen(cont->currChar);
75 u_charsToUChars(cont->currChar, cont->currUChar, *resultLength);
81 chArrayNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) {
87 *resultLength = (int32_t)strlen(cont->currChar);
165 uchArrayUNext(UEnumeration *en, int32_t *resultLength, UErrorCode *status) {
171 *resultLength = u_strlen(ucont->currUChar);
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.cpp 210 int resultLength = MultiByteToWideChar(codePage, flags, bytes, testLength, 0, 0);
212 if (resultLength > 0) {
214 result.resize(oldSize + resultLength);
216 MultiByteToWideChar(codePage, flags, bytes, testLength, result.data() + oldSize, resultLength);
283 int resultLength = WideCharToMultiByte(m_codePage, WC_COMPOSITECHECK, characters, length, 0, 0, 0, 0);
287 if (resultLength <= 0)
291 CString result = CString::newUninitialized(resultLength, characterBuffer);
293 WideCharToMultiByte(m_codePage, WC_COMPOSITECHECK, characters, length, characterBuffer, resultLength, 0, 0);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
UnicodeIcu.h 123 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
126 int realLength = u_strFoldCase(result, resultLength, src, srcLength, U_FOLD_CASE_DEFAULT, &status);
131 inline int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
134 int realLength = u_strToLower(result, resultLength, src, srcLength, "", &status);
149 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
152 int realLength = u_strToUpper(result, resultLength, src, srcLength, "", &status);

Completed in 1036 milliseconds

1 2 3 4