11 references to fNCStartNameSC
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (4)
4380if ((_xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0) 4821if ((_xmlCharType.charProperties[tmpch1 = chars[pos]] & XmlCharType.fNCStartNameSC) != 0) 4939if (((_xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0)) 7649if ((_xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
2150if ((_xmlCharType.charProperties[ncname[0]] & XmlCharType.fNCStartNameSC) != 0)
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
3024if ((_xmlCharType.charProperties[_chars[_curPos]] & XmlCharType.fNCStartNameSC) != 0 || _chars[_curPos] == ':')
FrameworkFork\Microsoft.Xml\Xml\ValidateNames.cs (2)
127if ((s_xmlCharType.charProperties[s[i]] & XmlCharType.fNCStartNameSC) != 0 || s[i] == ':') 187if ((s_xmlCharType.charProperties[s[i]] & XmlCharType.fNCStartNameSC) != 0)
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (2)
445SetProperties(s_NCStartName, fNCStartNameSC); 533return (charProperties[ch] & fNCStartNameSC) != 0;
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (1)
611return (s_xmlCharType.charProperties[ch] & XmlCharType.fNCStartNameSC) != 0;