Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DRenderListMarker.cpp320 int groupValue = number % 10000; in toCJKIdeographic() local
326 if (groupValue && i) in toCJKIdeographic()
330 group[6] = static_cast<AbstractCJKChar>(digit0 + (groupValue % 10)); in toCJKIdeographic()
331 if (number != 0 || groupValue > 9) { in toCJKIdeographic()
332 int digitValue = ((groupValue / 10) % 10); in toCJKIdeographic()
337 if (number != 0 || groupValue > 99) { in toCJKIdeographic()
338 int digitValue = ((groupValue / 100) % 10); in toCJKIdeographic()
343 if (number != 0 || groupValue > 999) { in toCJKIdeographic()
344 int digitValue = groupValue / 1000; in toCJKIdeographic()
352 if (groupValue < 20) { in toCJKIdeographic()