15 references to fNCStartNameSC
System.Xml (15)
System\Xml\Core\XmlTextReaderImpl.cs (4)
3911if ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC ) != 0 ) { 4304if ( ( xmlCharType.charProperties[tmpch1 = chars[pos]] & XmlCharType.fNCStartNameSC ) != 0 ) { 4410if ( ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC ) != 0 ) ) { 6772if ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC ) != 0 ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (4)
1718if ((xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0) { 2179if ((xmlCharType.charProperties[tmpch1 = chars[pos]] & XmlCharType.fNCStartNameSC) != 0) { 2285if (((xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0)) { 4607if ((xmlCharType.charProperties[chars[pos]] & XmlCharType.fNCStartNameSC) != 0) {
System\Xml\Core\XmlWellFormedWriter.cs (1)
1781if ((xmlCharType.charProperties[ncname[0]] & XmlCharType.fNCStartNameSC) != 0) { // if ( xmlCharType.IsStartNCNameChar( ncname[0] ) ) {
System\Xml\Schema\DtdParser.cs (1)
2834if ( ( xmlCharType.charProperties[chars[curPos]] & XmlCharType.fNCStartNameSC ) != 0 || chars[curPos] == ':') { // if ( xmlCharType.IsStartNCNameSingleChar(chars[curPos]) || chars[curPos] == ':' ) {
System\Xml\Schema\DtdParserAsync.cs (1)
2266if ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.fNCStartNameSC) != 0 || chars[curPos] == ':') { // if ( xmlCharType.IsStartNCNameSingleChar(chars[curPos]) || chars[curPos] == ':' ) {
System\Xml\ValidateNames.cs (2)
133if ((xmlCharType.charProperties[s[i]] & XmlCharType.fNCStartNameSC) != 0 || s[i] == ':') { // xmlCharType.IsStartNCNameSingleChar(s[i])) { 189if ((xmlCharType.charProperties[s[i]] & XmlCharType.fNCStartNameSC) != 0) { // xmlCharType.IsStartNCNameSingleChar(s[i])) {
System\Xml\XmlCharType.cs (1)
546return ( charProperties[ch] & fNCStartNameSC ) != 0;
System\Xml\XmlConvert.cs (1)
544return (xmlCharType.charProperties[ch] & XmlCharType.fNCStartNameSC) != 0;