Home | History | Annotate | Download | only in Common

Lines Matching full:pos2

3139   int pos2 = s.Find(':');

3141 if (pos2 < 0)
3144 pos2 = s.Len();
3148 name = s.Left(pos2);
3149 pos2++;
3175 for (unsigned i = pos2; i < s.Len();)
3196 int pos2 = s.Find('.', pos);
3197 if (pos2 < 0)
3198 pos2 = s.Len();
3199 UString name = s.Mid(pos, pos2 - pos);
3206 pos = pos2 + 1;