Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/text/
DPlatformLocale.cpp246 m_negativeSuffix = negativeSuffix; in setLocaleData()
247 …ty() || !m_positiveSuffix.isEmpty() || !m_negativePrefix.isEmpty() || !m_negativeSuffix.isEmpty()); in setLocaleData()
292 builder.append(isNegative ? m_negativeSuffix : m_positiveSuffix); in convertToLocalizedNumber()
314 if (m_negativePrefix.isEmpty() && m_negativeSuffix.isEmpty()) { in detectSignAndGetDigitRange()
323 if (input.startsWith(m_negativePrefix) && input.endsWith(m_negativeSuffix)) { in detectSignAndGetDigitRange()
326 endIndex -= m_negativeSuffix.length(); in detectSignAndGetDigitRange()
DPlatformLocale.h163 String m_negativeSuffix; variable