Lines Matching refs:iLenPattern
102 int32_t iLenPattern) { in GetLiteralText() argument
109 while (*iPattern < iLenPattern) { in GetLiteralText()
112 if ((*iPattern + 1 >= iLenPattern) || in GetLiteralText()
119 (*iPattern + 1 < iLenPattern) && in GetLiteralText()
124 while (*iPattern < iLenPattern && i++ < 4) { in GetLiteralText()
1082 int32_t iLenPattern = wsTextFormat.GetLength(); in ParseText() local
1083 while (iPattern < iLenPattern && iText < iLenText) { in ParseText()
1087 GetLiteralText(pStrPattern, &iPattern, iLenPattern); in ParseText()
1136 return iPattern == iLenPattern && iText == iLenText; in ParseText()
1738 int32_t iLenPattern = wsTextFormat.GetLength(); in ParseZero() local
1739 while (iPattern < iLenPattern && iText < iLenText) { in ParseZero()
1742 GetLiteralText(pStrPattern, &iPattern, iLenPattern); in ParseZero()
1758 return iPattern == iLenPattern && iText == iLenText; in ParseZero()
1770 int32_t iLenPattern = wsTextFormat.GetLength(); in ParseNull() local
1771 while (iPattern < iLenPattern && iText < iLenText) { in ParseNull()
1774 GetLiteralText(pStrPattern, &iPattern, iLenPattern); in ParseNull()
1790 return iPattern == iLenPattern && iText == iLenText; in ParseNull()
1809 int32_t iLenPattern = wsTextFormat.GetLength(); in FormatText() local
1810 while (iPattern < iLenPattern) { in FormatText()
1813 *wsOutput += GetLiteralText(pStrPattern, &iPattern, iLenPattern); in FormatText()
2315 int32_t iLenPattern = wsTextFormat.GetLength(); in FormatZero() local
2316 while (iPattern < iLenPattern) { in FormatZero()
2318 *wsOutput += GetLiteralText(pStrPattern, &iPattern, iLenPattern); in FormatZero()
2335 int32_t iLenPattern = wsTextFormat.GetLength(); in FormatNull() local
2336 while (iPattern < iLenPattern) { in FormatNull()
2338 *wsOutput += GetLiteralText(pStrPattern, &iPattern, iLenPattern); in FormatNull()