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

/external/icu4c/common/
H A Dnormalizer2.cpp693 const UChar *second, int32_t secondLength,
699 if( (second==NULL ? secondLength!=0 : secondLength<-1) ||
709 // secondLength==0: Nothing to do, and n2wi->normalizeAndAppend(NULL, NULL, buffer, ...) would crash.
710 if(secondLength!=0) {
718 if(buffer.init(firstLength+secondLength+1, *pErrorCode)) { // destCapacity>=-1
719 n2wi->normalizeAndAppend(second, secondLength>=0 ? second+secondLength : NULL,
733 UnicodeString secondString(secondLength<0, second, secondLength);
691 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/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp6393 Length firstLength, secondLength; local
6409 secondLength = Length(Auto);
6411 secondLength = Length(second->computeLengthIntForLength(style(), m_rootElementStyle, zoomFactor), Fixed);
6413 secondLength = Length(second->getDoubleValue(), Percent);
6418 b.setHeight(secondLength);

Completed in 806 milliseconds