HomeSort by relevance Sort by last modified time
    Searched refs:srcLength (Results 51 - 75 of 117) sorted by null

1 23 4 5

  /external/icu4c/common/
unistr_cnv.cpp 85 UnicodeString::UnicodeString(const char *src, int32_t srcLength,
95 } else if(srcLength<-1) {
99 if(srcLength==-1) {
100 srcLength=(int32_t)uprv_strlen(src);
102 if(srcLength>0) {
106 doCodepageCreate(src, srcLength, cnv, errorCode);
110 doCodepageCreate(src, srcLength, cnv, errorCode);
unorm.cpp 413 int32_t srcLength,
417 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
421 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
427 return unorm2_quickCheck((const UNormalizer2 *)&fn2, src, srcLength, pErrorCode);
429 return unorm2_quickCheck((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
434 unorm_isNormalized(const UChar *src, int32_t srcLength,
438 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCode);
442 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
448 return unorm2_isNormalized((const UNormalizer2 *)&fn2, src, srcLength, pErrorCode);
450 return unorm2_isNormalized((const UNormalizer2 *)n2, src, srcLength, pErrorCode)
    [all...]
usprep.cpp 514 const UChar* src, int32_t srcLength,
532 for(srcIndex=0;srcIndex<srcLength;){
535 U16_NEXT(src,srcIndex,srcLength,ch);
546 uprv_syntaxError(src,srcIndex-U16_LENGTH(ch), srcLength,parseError);
608 usprep_normalize( const UChar* src, int32_t srcLength,
612 src, srcLength,
663 const UChar* src, int32_t srcLength,
675 if(profile==NULL || src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
692 if(srcLength == -1){
693 srcLength = u_strlen(src)
    [all...]
  /external/icu4c/test/intltest/
nptrans.cpp 139 int32_t NamePrepTransform::map(const UChar* src, int32_t srcLength,
149 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
154 UnicodeString rsource(src,srcLength);
184 int32_t NamePrepTransform::process( const UChar* src, int32_t srcLength,
195 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
testidna.h 30 (U_EXPORT2 *TestFunc) ( const UChar *src, int32_t srcLength,
79 void debug(const UChar* src, int32_t srcLength, int32_t options);
tstnorm.h 54 TestPreviousNext(const UChar *src, int32_t srcLength,
  /external/chromium/third_party/icu/public/common/unicode/
unorm.h 257 * @param srcLength Length of source to test, or -1 if NUL-terminated.
269 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
284 * @param srcLength Length of source to test, or -1 if NUL-terminated.
295 unorm_isNormalized(const UChar *src, int32_t srcLength,
304 * @param srcLength Length of source to test, or -1 if NUL-terminated.
317 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
usprep.h 216 * @param srcLength Number of characters in the source string
240 const UChar* src, int32_t srcLength,
  /external/icu4c/common/unicode/
unorm.h 242 * @param srcLength Length of source to test, or -1 if NUL-terminated.
254 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
269 * @param srcLength Length of source to test, or -1 if NUL-terminated.
280 unorm_isNormalized(const UChar *src, int32_t srcLength,
289 * @param srcLength Length of source to test, or -1 if NUL-terminated.
302 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
usprep.h 236 * @param srcLength Number of characters in the source string
260 const UChar* src, int32_t srcLength,
  /external/webkit/JavaScriptCore/icu/unicode/
unorm.h 256 * @param srcLength Length of source to test, or -1 if NUL-terminated.
268 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
283 * @param srcLength Length of source to test, or -1 if NUL-terminated.
294 unorm_isNormalized(const UChar *src, int32_t srcLength,
303 * @param srcLength Length of source to test, or -1 if NUL-terminated.
316 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
  /external/webkit/WebCore/icu/unicode/
unorm.h 256 * @param srcLength Length of source to test, or -1 if NUL-terminated.
268 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
283 * @param srcLength Length of source to test, or -1 if NUL-terminated.
294 unorm_isNormalized(const UChar *src, int32_t srcLength,
303 * @param srcLength Length of source to test, or -1 if NUL-terminated.
316 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
  /external/webkit/WebKit/mac/icu/unicode/
unorm.h 256 * @param srcLength Length of source to test, or -1 if NUL-terminated.
268 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength,
283 * @param srcLength Length of source to test, or -1 if NUL-terminated.
294 unorm_isNormalized(const UChar *src, int32_t srcLength,
303 * @param srcLength Length of source to test, or -1 if NUL-terminated.
316 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength,
  /external/webkit/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);
  /external/webkit/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 194 inline int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
196 const UChar *e = src + srcLength;
252 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
254 const UChar *e = src + srcLength;
315 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
319 if (resultLength < srcLength) {
321 return srcLength;
323 for (int i = 0; i < srcLength; ++i)
325 return srcLength;
  /external/chromium/third_party/icu/source/common/
unormimp.h 224 const UChar *src, int32_t srcLength,
238 const UChar *src, int32_t srcLength,
250 const UChar *src, int32_t srcLength,
260 const UChar *src, int32_t srcLength,
272 int32_t srcLength,
unorm.cpp     [all...]
usprep.cpp 544 const UChar* src, int32_t srcLength,
562 for(srcIndex=0;srcIndex<srcLength;){
565 U16_NEXT(src,srcIndex,srcLength,ch);
576 uprv_syntaxError(src,srcIndex-U16_LENGTH(ch), srcLength,parseError);
638 usprep_normalize( const UChar* src, int32_t srcLength,
653 src, srcLength,
704 const UChar* src, int32_t srcLength,
716 if(profile==NULL || src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
733 if(srcLength == -1){
734 srcLength = u_strlen(src)
    [all...]
  /external/webkit/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.h 129 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
131 int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
143 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
  /external/chromium/third_party/icu/source/test/intltest/
testidna.h 30 (U_EXPORT2 *TestFunc) ( const UChar *src, int32_t srcLength,
79 void debug(const UChar* src, int32_t srcLength, int32_t options);
tstnorm.h 52 TestPreviousNext(const UChar *src, int32_t srcLength,
  /external/chromium/third_party/icu/source/test/cintltst/
spreptst.c 758 int32_t srcLength, resultLength, expectedLength;
778 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH;
782 srcLength = u_unescape(profile_test_case[i], src, srcLength);
785 resultLength = usprep_prepare(sprep, src, srcLength, result, resultLength, USPREP_ALLOW_UNASSIGNED, NULL, &status);
custrtrn.c     [all...]
  /external/icu4c/test/cintltst/
spreptst.c 760 int32_t srcLength, resultLength, expectedLength;
780 srcLength = resultLength = expectedLength = SPREP_PROFILE_TEST_MAX_LENGTH;
784 srcLength = u_unescape(profile_test_case[i], src, srcLength);
787 resultLength = usprep_prepare(sprep, src, srcLength, result, resultLength, USPREP_ALLOW_UNASSIGNED, NULL, &status);
  /dalvik/vm/
Misc.c 678 size_t srcLength = strlen(src);
679 size_t copyLength = srcLength;
681 if (srcLength > (size - 1)) {
690 return srcLength;

Completed in 3473 milliseconds

1 23 4 5