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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.cpp204 Length secondLength; local
208 secondLength = pair->second()->convertToLength<AnyConversion>(cssToLengthConversionData());
211 secondLength = Length();
215 b.setHeight(secondLength);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeUtilities.cpp347 bool checkOnlyKanaLettersInStrings(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength) argument
353 const UChar* bEnd = secondData + secondLength;
381 bool checkKanaStringsEqual(const UChar* firstData, unsigned firstLength, const UChar* secondData, unsigned secondLength) argument
387 const UChar* bEnd = secondData + secondLength;
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2.cpp777 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);
775 normalizeSecondAndAppend(const UNormalizer2 *norm2, UChar *first, int32_t firstLength, int32_t firstCapacity, const UChar *second, int32_t secondLength, UBool doNormalize, UErrorCode *pErrorCode) argument
[all...]
/external/icu/icu4c/source/common/
H A Dnormalizer2.cpp777 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);
775 normalizeSecondAndAppend(const UNormalizer2 *norm2, UChar *first, int32_t firstLength, int32_t firstCapacity, const UChar *second, int32_t secondLength, UBool doNormalize, UErrorCode *pErrorCode) argument
[all...]

Completed in 330 milliseconds