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

/vbox/src/VBox/Runtime/common/string/
H A Duniread.cpp713 * @param StartCP The code point.
716 static void ApplyProperty(RTUNICP StartCP, const char *pszProperty, char *pszNextField) argument
718 if (StartCP >= RT_ELEMENTS(g_aCPInfo))
720 ParseError("U+%06X is out of the g_aCPInfo range.\n", StartCP);
723 struct CPINFO *pCPInfo = &g_aCPInfo[StartCP];
838 RTUNICP StartCP = ToRange(pszRange, &LastCP); local
839 if (StartCP == ~(RTUNICP)0)
842 while (StartCP <= LastCP)
843 ApplyProperty(StartCP++, pszProperty, pszCurField);

Completed in 296 milliseconds