Lines Matching refs:dotpos
122 int dotpos = fullName.LastIndexOf('.');
124 if (dotpos != -1)
126 AddPackage(fullName.Substring(0, dotpos), file);
127 name = fullName.Substring(dotpos + 1);
161 int dotPos = fullName.LastIndexOf('.');
165 if (dotPos == -1)
171 message = "\"" + fullName.Substring(dotPos + 1) + "\" is already defined in \"" +
172 fullName.Substring(0, dotPos) + "\".";
289 int dotpos = scopeToTry.ToString().LastIndexOf(".");
290 if (dotpos == -1)
297 scopeToTry.Length = dotpos + 1;
310 scopeToTry.Length = dotpos + 1;
318 scopeToTry.Length = dotpos;