Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/text/
DPlatformLocale.cpp244 m_positiveSuffix = positiveSuffix; in setLocaleData()
247 …ASSERT(!m_positivePrefix.isEmpty() || !m_positiveSuffix.isEmpty() || !m_negativePrefix.isEmpty() |… in setLocaleData()
292 builder.append(isNegative ? m_negativeSuffix : m_positiveSuffix); in convertToLocalizedNumber()
315 if (input.startsWith(m_positivePrefix) && input.endsWith(m_positiveSuffix)) { in detectSignAndGetDigitRange()
318 endIndex -= m_positiveSuffix.length(); in detectSignAndGetDigitRange()
329 if (input.startsWith(m_positivePrefix) && input.endsWith(m_positiveSuffix)) { in detectSignAndGetDigitRange()
331 endIndex -= m_positiveSuffix.length(); in detectSignAndGetDigitRange()
DPlatformLocale.h161 String m_positiveSuffix; variable