Home | History | Annotate | Download | only in Common

Lines Matching refs:pos

96   int pos = 0;

97 if (!IsItSwitchChar(s[pos]))
99 while (pos < len)
101 if (IsItSwitchChar(s[pos]))
102 pos++;
109 if (switchLen <= maxLen || pos + switchLen > len)
112 UString temp = s + pos;
115 // if (_strnicmp(switchForms[switchIndex].IDString, LPCSTR(s) + pos, switchLen) == 0)
128 pos += maxLen;
129 int tailSize = len - pos;
139 matchedSwitch.WithMinus = (s[pos] == kSwitchMinus);
141 pos++;
155 int index = set.Find(s[pos]);
161 pos++;
174 matchedSwitch.PostStrings.Add(s.Mid(pos));
178 UString stringSwitch = s.Mid(pos, minLen);
179 pos += minLen;
180 for (int i = minLen; i < maxLen && pos < len; i++, pos++)
182 wchar_t c = s[pos];