Home
last modified time | relevance | path

Searched refs:basicLength (Results 1 – 2 of 2) sorted by relevance

/external/icu4c/common/
Dpunycode.cpp188 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount; in u_strToPunycode() local
277 basicLength=destLength; in u_strToPunycode()
278 if(basicLength>0) { in u_strToPunycode()
297 for(handledCPCount=basicLength; handledCPCount<srcCPCount; /* no op */) { in u_strToPunycode()
361 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength)); in u_strToPunycode()
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, in u_strFromPunycode() local
410 destLength=basicLength=destCPCount=j; in u_strFromPunycode()
440 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) { in u_strFromPunycode()
/external/webkit/Source/WebCore/dom/
DStyledElement.cpp353 int basicLength = (color.length() + 2) / 3; in addCSSColor() local
354 if (basicLength > 1) { in addCSSColor()
359 int maxDigit = basicLength-1; in addCSSColor()
363 while (pos < (int)color.length() && numDigits < basicLength) { in addCSSColor()
372 while (numDigits++ < basicLength) in addCSSColor()
376 maxDigit = basicLength - maxDigit; in addCSSColor()