HomeSort by relevance Sort by last modified time
    Searched refs:secondLength (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/text/
UnicodeUtilities.h 42 PLATFORM_EXPORT bool checkOnlyKanaLettersInStrings(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength);
43 PLATFORM_EXPORT bool checkKanaStringsEqual(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength);
UnicodeUtilities.cpp 347 bool checkOnlyKanaLettersInStrings(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength)
353 const UChar* bEnd = secondData + secondLength;
381 bool checkKanaStringsEqual(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength)
387 const UChar* bEnd = secondData + secondLength;
  /external/chromium_org/third_party/icu/source/common/
normalizer2.cpp 777 const UChar *second, int32_t secondLength,
783 if( (second==NULL ? secondLength!=0 : secondLength<-1) ||
793 // secondLength==0: Nothing to do, and n2wi->normalizeAndAppend(NULL, NULL, buffer, ...) would crash.
794 if(secondLength!=0) {
802 if(buffer.init(firstLength+secondLength+1, *pErrorCode)) { // destCapacity>=-1
803 n2wi->normalizeAndAppend(second, secondLength>=0 ? second+secondLength : NULL,
819 UnicodeString secondString(secondLength<0, second, secondLength);
    [all...]
  /external/icu/icu4c/source/common/
normalizer2.cpp 777 const UChar *second, int32_t secondLength,
783 if( (second==NULL ? secondLength!=0 : secondLength<-1) ||
793 // secondLength==0: Nothing to do, and n2wi->normalizeAndAppend(NULL, NULL, buffer, ...) would crash.
794 if(secondLength!=0) {
802 if(buffer.init(firstLength+secondLength+1, *pErrorCode)) { // destCapacity>=-1
803 n2wi->normalizeAndAppend(second, secondLength>=0 ? second+secondLength : NULL,
819 UnicodeString secondString(secondLength<0, second, secondLength);
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
unorm2.h 295 * @param secondLength length of the source string, or -1 if NUL-terminated
306 const UChar *second, int32_t secondLength,
318 * @param secondLength length of the source string, or -1 if NUL-terminated
329 const UChar *second, int32_t secondLength,
  /external/icu/icu4c/source/common/unicode/
unorm2.h 295 * @param secondLength length of the source string, or -1 if NUL-terminated
306 const UChar *second, int32_t secondLength,
318 * @param secondLength length of the source string, or -1 if NUL-terminated
329 const UChar *second, int32_t secondLength,
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
CSSToStyleMap.cpp 204 Length secondLength;
208 secondLength = pair->second()->convertToLength<AnyConversion>(cssToLengthConversionData());
211 secondLength = Length();
215 b.setHeight(secondLength);

Completed in 515 milliseconds